From 73dbbb061aa887f2370709e172cfd6e16eaef197 Mon Sep 17 00:00:00 2001 From: OpenXE <> Date: Mon, 13 Mar 2023 14:22:39 +0100 Subject: [PATCH 01/61] Geschaeftskonto module restored (basic variant) --- www/pages/content/konten_edit.tpl | 385 +++++++++++++++++++++--------- www/pages/konten.php | 349 +++++++++++++++++++++++++++ 2 files changed, 621 insertions(+), 113 deletions(-) create mode 100644 www/pages/konten.php diff --git a/www/pages/content/konten_edit.tpl b/www/pages/content/konten_edit.tpl index 7b8c8306..542127cd 100644 --- a/www/pages/content/konten_edit.tpl +++ b/www/pages/content/konten_edit.tpl @@ -18,37 +18,58 @@ {|Einstellungen|} - - + + - + - - + + - - + - - + - - + @@ -66,38 +87,71 @@ {|Bankverbindung (bei Typ Bank)|}
{|Bezeichnung|}: + {|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 +167,13 @@ {|DATEV|} - - + +
{|Konto|}:{|Konto|}: + + + +
@@ -123,6 +181,7 @@ +
@@ -338,20 +483,32 @@ {|Startwert für Konto|} - - + - - + + - - + +
{|Summieren|}: + {|Summieren|}: + + + +
{|Datum Saldo|}:{|Datum Saldo|}: + + + +
{|Betrag Saldo|}:{|Betrag Saldo|}: + + + +
@@ -359,8 +516,7 @@
- - + @@ -372,8 +528,11 @@ - - + +
+ + +
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']); + + } + +} From 71883d34aea90da394edfb4c5eb08c641df6f992 Mon Sep 17 00:00:00 2001 From: OpenXE <> Date: Tue, 22 Nov 2022 12:39:07 +0100 Subject: [PATCH 02/61] Zahlungseingang Minidetail hacked rechnung, gutschrift --- www/pages/gutschrift.php | 4 +- www/pages/rechnung.php | 182 ++++++++++++++++++++++++++++++++++++++- 2 files changed, 184 insertions(+), 2 deletions(-) diff --git a/www/pages/gutschrift.php b/www/pages/gutschrift.php index 0fc85785..a64b86b8 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(); @@ -738,7 +740,7 @@ class Gutschrift extends GenGutschrift ." $waehrung"; } - $saldo = $this->app->erp->EUR($this->app->erp->GutschriftSaldo($id)); + $saldo = $this->app->erp->EUR($this->GutschriftSaldo($id)); if($saldo < 0) { $saldo = "$saldo"; diff --git a/www/pages/rechnung.php b/www/pages/rechnung.php index 56a59deb..1a251a4d 100644 --- a/www/pages/rechnung.php +++ b/www/pages/rechnung.php @@ -889,7 +889,8 @@ class Rechnung extends GenRechnung } - $this->app->Tpl->Set('ZAHLUNGEN',"Erst ab Version Enterprise verfügbar
"); +// $this->app->Tpl->Set('ZAHLUNGEN',"Erst ab Version Enterprise verfügbar
"); + $this->app->Tpl->Set('ZAHLUNGEN',$this->RechnungZahlung(true)); if (!is_null($gutschrift)) { @@ -2712,4 +2713,183 @@ class Rechnung extends GenRechnung return $this->app->DB->GetInsertID(); } + + + function RechnungZahlung($return=false) + { + $id = $this->app->Secure->GetGET('id'); + + $rechnungArr = $this->app->DB->SelectArr( + "SELECT DATE_FORMAT(datum,'%d.%m.%Y') as datum, belegnr, soll, waehrung, rechnungid + FROM rechnung WHERE id='$id' LIMIT 1" + ); + $waehrung = empty($rechnungArr)?'EUR':$rechnungArr[0]['waehrung']; + if(!$waehrung) { + $waehrung = 'EUR'; + } + + $rechnungid = empty($rechnungArr)?0: $rechnungArr[0]['rechnungid']; + + $auftragid = $rechnungid <= 0?0:$this->app->DB->Select( + sprintf( + 'SELECT `auftragid` FROM `rechnung` WHERE `id` = %d LIMIT 1', + $rechnungid + ) + ); + $eingang ="Zahlungen"; + + + $eingang .="".$rechnungArr[0]['datum'] + ."RG ".$rechnungArr[0]['belegnr'] + ."".$this->app->erp->EUR($rechnungArr[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='rechnung' 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"; + } + // rechnungen zu dieser rechnung anzeigen + + $rechnungen = $this->app->DB->SelectArr("SELECT belegnr, DATE_FORMAT(datum,'%d.%m.%Y') as datum,soll FROM rechnung WHERE rechnungid='$id'"); + + for($i=0;$i<(!empty($rechnungen)?count($rechnungen):0);$i++) + $eingang .="".$rechnungen[$i]['datum']."GS ".$rechnungen[$i]['belegnr']."".$this->app->erp->EUR($rechnungen[$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='rechnung' 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->RechnungSaldo($id)); + + if($saldo < 0) { + $saldo = "$saldo"; + } + $waehrung = $this->app->DB->Select("SELECT waehrung FROM rechnung WHERE id = '$id' LIMIT 1"); + if(!$waehrung) { + $waehrung = 'EUR'; + } + $ausgang .="Saldo$saldo $waehrung"; + + if($return) { + return "".$eingang." ".$ausgang."
"; + } + } + +public function RechnungSaldo($id) + { + if($id <= 0) { + return 0; + } + + $rechnungid = $this->app->DB->Select( + sprintf( + 'SELECT `rechnungid` FROM `rechnung` WHERE `id`= %d LIMIT 1', + $id + ) + ); + $auftragid = $rechnungid <= 0?0:$this->app->DB->Select( + sprintf( + 'SELECT `auftragid` FROM `rechnung` WHERE `id`=%d LIMIT 1', + $rechnungid + ) + ); + + $eingangArr = $this->app->DB->SelectArr( + sprintf( + "SELECT ko.bezeichnung as konto, DATE_FORMAT(ke.datum,'%%d.%%m.%%Y') as datum, k.id as kontoauszuege, ke.betrag as betrag + FROM `kontoauszuege_zahlungseingang` AS `ke` + LEFT JOIN `kontoauszuege` AS `k` ON ke.kontoauszuege=k.id + LEFT JOIN `konten` AS `ko` ON k.konto=ko.id + WHERE (ke.objekt='rechnung' AND ke.parameter=%d) + OR (ke.objekt='auftrag' AND ke.parameter=%d AND ke.parameter>0) + OR (ke.objekt='rechnung' AND ke.parameter=%d AND ke.parameter>0)", + $id, $auftragid, $rechnungid + ) + ); + $einnahmen = 0; + if(!empty($eingangArr)) { + foreach($eingangArr AS $eingangRow) { + $einnahmen += $eingangRow['betrag']; + } + } + + //$rechnungen = $this->app->DB->SelectArr("SELECT belegnr, DATE_FORMAT(datum,'%d.%m.%Y') as datum,soll FROM rechnung WHERE rechnungid='$id' "); // alt + $rechnungen = $this->app->DB->SelectArr( + sprintf( + "SELECT ro.belegnr, DATE_FORMAT(ro.datum,'%%d.%%m.%%Y') as datum, ro.soll + FROM `rechnung` AS `ro` + WHERE ro.`id` = %d ", + $id + ) + ); + + if(!empty($rechnungen)) { + foreach($rechnungen as $rechnungRow) { + $einnahmen += $rechnungRow['soll']; + } + } + + $ausgangArr = $this->app->DB->SelectArr( + sprintf( + "SELECT ko.bezeichnung as konto, DATE_FORMAT(ke.datum,'%%d.%%m') as datum, ke.betrag as betrag + 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='rechnung' AND ke.parameter=%d) + OR (ke.objekt='rechnung' AND ke.parameter=%d AND ke.parameter>0) + OR (ke.objekt='auftrag' AND ke.parameter=%d AND ke.parameter>0)", + $id, $rechnungid, $auftragid + ) + ); + $ausgaben = 0; + if(!empty($ausgangArr)){ + foreach($ausgangArr as $ausgangRow) { + $ausgaben += $ausgangRow['betrg']; + } + } + + return $einnahmen - $ausgaben; + } + + } From 8dd78dfa556f30a4b992b2ec3abc9a5c65834825 Mon Sep 17 00:00:00 2001 From: OpenXE <> Date: Tue, 14 Mar 2023 12:10:54 +0100 Subject: [PATCH 03/61] Bugfix lager wert calculation of prices added geloescht != 1 and date range --- www/pages/lager.php | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/www/pages/lager.php b/www/pages/lager.php index d6c1635d..9a2273f8 100644 --- a/www/pages/lager.php +++ b/www/pages/lager.php @@ -451,7 +451,7 @@ class Lager extends GenLager { FROM einkaufspreise minek WHERE - einkaufspreise.artikel = minek.artikel AND DATE( + einkaufspreise.geloescht != 1 AND einkaufspreise.artikel = minek.artikel AND DATE( REPLACE ( COALESCE(gueltig_bis, '9999-12-31'), @@ -482,7 +482,17 @@ class Lager extends GenLager { ) ) >= DATE('".$datum."') ) - ) + ) AND DATE( + REPLACE + ( + COALESCE( + einkaufspreise.gueltig_bis, + '9999-12-31' + ), + '0000-00-00', + '9999-12-31' + ) + ) >= DATE('".$datum."') GROUP BY artikel, waehrung From ab91715c204f5f49dd00ba7bdcd08415a0edbe75 Mon Sep 17 00:00:00 2001 From: OpenXE <> Date: Wed, 15 Mar 2023 22:50:58 +0100 Subject: [PATCH 04/61] Zahlungen minidetail and collation of relevant documents as tree --- www/lib/class.erpapi.php | 136 ++++++++++++++++++ www/pages/auftrag.php | 43 ++++++ www/pages/content/auftrag_minidetail.tpl | 2 +- www/pages/content/gutschrift_minidetail.tpl | 8 +- www/pages/content/rechnung_minidetail.tpl | 2 +- www/pages/gutschrift.php | 143 +++++-------------- www/pages/rechnung.php | 144 +++++++------------- 7 files changed, 261 insertions(+), 217 deletions(-) diff --git a/www/lib/class.erpapi.php b/www/lib/class.erpapi.php index 5eff2662..afe6628d 100644 --- a/www/lib/class.erpapi.php +++ b/www/lib/class.erpapi.php @@ -36016,6 +36016,142 @@ 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) : 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) { + $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 with information + * Gutschrift -> Rechnungid, Rechnung -> Auftragid + */ + public function GetZahlungen(int $id, string $type) : array { + + $documents = $this->GetZahlungenAssociatedDocuments($id, $type); + + if (empty($documents)) { + return(array()); + } + +// print_r($documents); + + $zahlungen = array(); + + $tables = array( + array( + 'minus' => '', + 'table' => 'kontoauszuege_zahlungseingang', + ), + array ( + 'minus' => '-', + 'table' => 'kontoauszuege_zahlungsausgang' + ) + ); + + foreach ($documents as $document) { + + foreach ($tables as $table) { + + $sql = " + SELECT + '".$document['type']."' as `doc_type`, + '".$document['id']."' as `doc_id`, + '".$document['belegnr']."' as `doc_belegnr`, + ko.bezeichnung AS konto, + DATE_FORMAT(ke.datum, '%d.%m.%Y') AS datum, + k.id AS kontoauszuege, + ".$table['minus']."ke.betrag AS betrag, + k.id AS zeile, + k.waehrung + FROM + ".$table['table']." ke + LEFT JOIN kontoauszuege k ON + ke.kontoauszuege = k.id + LEFT JOIN konten ko ON + k.konto = ko.id + WHERE + ke.objekt = '".$document['type']."' AND ke.parameter = '".$document['id']."' + "; + + $result = $this->app->DB->SelectArr($sql); + + if (!empty($result)) { + $zahlungen = array_merge($zahlungen,$result); + } + } + } + return($zahlungen); + } + + /* + * Calculate the payment saldo of a document + */ + public function ANABREGSNeuberechnen($id,$art,$force=false) { if($id <= 0 || empty($art)) diff --git a/www/pages/auftrag.php b/www/pages/auftrag.php index 372f252f..94e4a16c 100644 --- a/www/pages/auftrag.php +++ b/www/pages/auftrag.php @@ -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,45 @@ 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'); + +// print_r($zahlungen); + + $result = ""; + + foreach ($zahlungen as $zahlung) { + $result .= " + + + ".$zahlung['datum']." + + + + ".ucfirst($zahlung['doc_type'])." + ".$zahlung['doc_belegnr']." + + + + ".$zahlung['konto']." + + + + ".$zahlung['betrag']." ".$zahlung['waehrung']." + + + "; + } + return("".$result."
"); + } function AuftragZahlungsmail() { 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/gutschrift_minidetail.tpl b/www/pages/content/gutschrift_minidetail.tpl index 553f2e94..9b11acf8 100644 --- a/www/pages/content/gutschrift_minidetail.tpl +++ b/www/pages/content/gutschrift_minidetail.tpl @@ -39,7 +39,7 @@
-

{|Zahlungseingang|}

+

{|Zahlungen|}

[ZAHLUNGEN]
@@ -58,12 +58,6 @@
-

Deckungsbeitrag

-
- -
Dieses Modul ist erst ab Version Professional verfügbar
- -
diff --git a/www/pages/content/rechnung_minidetail.tpl b/www/pages/content/rechnung_minidetail.tpl index 08392a68..1910123b 100644 --- a/www/pages/content/rechnung_minidetail.tpl +++ b/www/pages/content/rechnung_minidetail.tpl @@ -44,7 +44,7 @@
-

Zahlungseingang

+

Zahlungen

[ZAHLUNGEN]
diff --git a/www/pages/gutschrift.php b/www/pages/gutschrift.php index a64b86b8..0da05063 100644 --- a/www/pages/gutschrift.php +++ b/www/pages/gutschrift.php @@ -650,6 +650,7 @@ class Gutschrift extends GenGutschrift /** + * Build the html output for minidetail containing the payments * @param bool $return * * @return string @@ -658,102 +659,35 @@ 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'; - } - - $rechnungid = empty($gutschriftArr)?0: $gutschriftArr[0]['rechnungid']; - - $auftragid = $rechnungid <= 0?0:$this->app->DB->Select( - sprintf( - 'SELECT `auftragid` FROM `rechnung` WHERE `id` = %d LIMIT 1', - $rechnungid - ) - ); - $eingang ="Zahlungen"; - - - $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->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."
"; + $zahlungen = $this->app->erp->GetZahlungen($id,'gutschrift'); + +// print_r($zahlungen); + + $result = ""; + + foreach ($zahlungen as $zahlung) { + $result .= " + + + ".$zahlung['datum']." + + + + ".ucfirst($zahlung['doc_type'])." + ".$zahlung['doc_belegnr']." + + + + ".$zahlung['konto']." + + + + ".$zahlung['betrag']." ".$zahlung['waehrung']." + + + "; } + return("".$result."
"); } @@ -1251,25 +1185,12 @@ class Gutschrift extends GenGutschrift // $this->app->erp->CommonReadonly(); } - if($schreibschutz=="1") - $this->app->erp->CommonReadonly(); + if($schreibschutz=="1") { + $this->app->erp->CommonReadonly(); + } $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)) { - if((!empty($alle_gutschriften)?count($alle_gutschriften):0) > 1) - { - for($agi=0;$agi<(!empty($alle_gutschriften)?count($alle_gutschriften):0);$agi++) - $gutschriften .= "".$alle_gutschriften[$agi][belegnr]." "; - $this->app->Tpl->Add('MESSAGE',"
Für die angebene Rechnung gibt es schon folgende Gutschriften: $gutschriften
"); - } - } - - - // if($status=="versendet") - // $this->app->Tpl->Set(MESSAGE,"
Diese Gutschrift wurde bereits versendet und darf daher nicht mehr bearbeitet werden!
"); if($status=="") $this->app->DB->Update("UPDATE gutschrift SET status='angelegt' WHERE id='$id' LIMIT 1"); diff --git a/www/pages/rechnung.php b/www/pages/rechnung.php index 1a251a4d..8b65fbe8 100644 --- a/www/pages/rechnung.php +++ b/www/pages/rechnung.php @@ -1583,6 +1583,9 @@ class Rechnung extends GenRechnung $this->app->erp->RechnungNeuberechnen($id); } + // ALWAYS + $this->app->erp->RechnungNeuberechnen($id); + if($cmd === 'dadown') { $erg['status'] = 0; @@ -1767,8 +1770,10 @@ class Rechnung extends GenRechnung $this->app->Tpl->Set('VORKASSE',''); } +// $saldo=$this->app->DB->Select("SELECT ist-skonto_gegeben FROM rechnung WHERE id='$id'"); + + $saldo = $this->app->erp->EUR($this->RechnungSaldo($id)); - $saldo=$this->app->DB->Select("SELECT ist-skonto_gegeben FROM rechnung WHERE id='$id'"); $this->app->Tpl->Set('LIVEIST',"$saldo"); if($schreibschutz=="1" && $this->app->erp->RechteVorhanden('rechnung','schreibschutz')) @@ -1789,10 +1794,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"); @@ -1805,7 +1813,7 @@ class Rechnung extends GenRechnung { $gutschriften = ''; for($agi=0;$agi<$cgutschriften;$agi++) - $gutschriften .= "".$alle_gutschriften[$agi][belegnr]." "; + $gutschriften .= "".$alle_gutschriften[$agi]['belegnr']." "; $this->app->Tpl->Add('MESSAGE',"
Für die angebene Rechnung gibt es schon folgende Gutschriften: $gutschriften
"); } @@ -1963,6 +1971,7 @@ class Rechnung extends GenRechnung ' überein
' ); } + parent::RechnungEdit(); if($id > 0 && $this->app->DB->Select( sprintf( @@ -2715,104 +2724,45 @@ class Rechnung extends GenRechnung } + /** + * Build the html output for minidetail containing the payments + * @param bool $return + * + * @return string + */ function RechnungZahlung($return=false) { $id = $this->app->Secure->GetGET('id'); - $rechnungArr = $this->app->DB->SelectArr( - "SELECT DATE_FORMAT(datum,'%d.%m.%Y') as datum, belegnr, soll, waehrung, rechnungid - FROM rechnung WHERE id='$id' LIMIT 1" - ); - $waehrung = empty($rechnungArr)?'EUR':$rechnungArr[0]['waehrung']; - if(!$waehrung) { - $waehrung = 'EUR'; - } - - $rechnungid = empty($rechnungArr)?0: $rechnungArr[0]['rechnungid']; - - $auftragid = $rechnungid <= 0?0:$this->app->DB->Select( - sprintf( - 'SELECT `auftragid` FROM `rechnung` WHERE `id` = %d LIMIT 1', - $rechnungid - ) - ); - $eingang ="Zahlungen"; - - - $eingang .="".$rechnungArr[0]['datum'] - ."RG ".$rechnungArr[0]['belegnr'] - ."".$this->app->erp->EUR($rechnungArr[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='rechnung' 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"; - } - // rechnungen zu dieser rechnung anzeigen - - $rechnungen = $this->app->DB->SelectArr("SELECT belegnr, DATE_FORMAT(datum,'%d.%m.%Y') as datum,soll FROM rechnung WHERE rechnungid='$id'"); - - for($i=0;$i<(!empty($rechnungen)?count($rechnungen):0);$i++) - $eingang .="".$rechnungen[$i]['datum']."GS ".$rechnungen[$i]['belegnr']."".$this->app->erp->EUR($rechnungen[$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='rechnung' 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->RechnungSaldo($id)); - - if($saldo < 0) { - $saldo = "$saldo"; - } - $waehrung = $this->app->DB->Select("SELECT waehrung FROM rechnung WHERE id = '$id' LIMIT 1"); - if(!$waehrung) { - $waehrung = 'EUR'; - } - $ausgang .="Saldo$saldo $waehrung"; - - if($return) { - return "".$eingang." ".$ausgang."
"; + $zahlungen = $this->app->erp->GetZahlungen($id,'rechnung'); + +// print_r($zahlungen); + + $result = ""; + + foreach ($zahlungen as $zahlung) { + $result .= " + + + ".$zahlung['datum']." + + + + ".ucfirst($zahlung['doc_type'])." + ".$zahlung['doc_belegnr']." + + + + ".$zahlung['konto']." + + + + ".$zahlung['betrag']." ".$zahlung['waehrung']." + + + "; } + return("".$result."
"); } public function RechnungSaldo($id) @@ -2823,7 +2773,7 @@ public function RechnungSaldo($id) $rechnungid = $this->app->DB->Select( sprintf( - 'SELECT `rechnungid` FROM `rechnung` WHERE `id`= %d LIMIT 1', + 'SELECT `id` FROM `rechnung` WHERE `id`= %d LIMIT 1', $id ) ); From 1f52278758757f254a2959bfde32004c405fabed Mon Sep 17 00:00:00 2001 From: OpenXE <> Date: Tue, 21 Mar 2023 20:20:44 +0100 Subject: [PATCH 05/61] mustal added handling of UNIQUE keys --- vendor/mustal/mustal_mysql_upgrade_tool.php | 29 +++++++++++---------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/vendor/mustal/mustal_mysql_upgrade_tool.php b/vendor/mustal/mustal_mysql_upgrade_tool.php index 00e90458..c181c084 100644 --- a/vendor/mustal/mustal_mysql_upgrade_tool.php +++ b/vendor/mustal/mustal_mysql_upgrade_tool.php @@ -134,6 +134,7 @@ function mustal_load_tables_from_db(string $host, string $schema, string $user, $composed_key = array(); $composed_key['Key_name'] = $key['Key_name']; $composed_key['Index_type'] = $key['Index_type']; + $composed_key['Non_unique'] = ($key['Non_unique'] == 1)?'UNIQUE':''; $composed_key['columns'][] = $key['Column_name']; $composed_keys[] = $composed_key; } else { @@ -330,19 +331,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); @@ -568,7 +569,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 +653,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 +683,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; From e356051f5a16edfdc73e2b686473aa6d830bc428 Mon Sep 17 00:00:00 2001 From: OpenXE <> Date: Wed, 22 Mar 2023 14:33:34 +0100 Subject: [PATCH 06/61] Zahlungen improvements --- phpwf/plugins/class.yui.php | 25 +- www/lib/class.erpapi.php | 53 +- www/pages/auftrag.php | 13 +- www/pages/content/gutschrift_minidetail.tpl | 2 +- www/pages/content/rechnung_minidetail.tpl | 23 +- www/pages/gutschrift.php | 26 +- www/pages/rechnung.php | 121 +-- www/widgets/templates/_gen/rechnung.tpl | 1054 +++++++++++-------- 8 files changed, 781 insertions(+), 536 deletions(-) diff --git a/phpwf/plugins/class.yui.php b/phpwf/plugins/class.yui.php index 47a31003..a2288551 100644 --- a/phpwf/plugins/class.yui.php +++ b/phpwf/plugins/class.yui.php @@ -6551,13 +6551,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+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 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/www/lib/class.erpapi.php b/www/lib/class.erpapi.php index afe6628d..15dfc44c 100644 --- a/www/lib/class.erpapi.php +++ b/www/lib/class.erpapi.php @@ -7088,6 +7088,7 @@ 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('Abolauf','rechnungslauf','rechnungslauf'); $navarray['menu']['admin'][$menu]['sec'][] = array('Mahnwesen','mahnwesen','list'); @@ -36021,7 +36022,7 @@ function Firmendaten($field,$projekt="") * Gutschrift -> Rechnung -> Auftrag OR Verbindlichkeit * Results array of ids, types, belegnr */ - public function GetZahlungenAssociatedDocuments(int $id, string $type) : array { + public function GetZahlungenAssociatedDocuments(int $id, string $type, string $lastlevel = 'auftrag') : array { $assocs = array( array( @@ -36056,6 +36057,11 @@ function Firmendaten($field,$projekt="") // 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)) { @@ -36090,16 +36096,18 @@ function Firmendaten($field,$projekt="") * Results array of payments with information * Gutschrift -> Rechnungid, Rechnung -> Auftragid */ - public function GetZahlungen(int $id, string $type) : array { + public function GetZahlungen(int $id, string $type, bool $cascade = false, string $lastlevel = 'auftrag') : array { - $documents = $this->GetZahlungenAssociatedDocuments($id, $type); + if ($cascade) { + $documents = $this->GetZahlungenAssociatedDocuments($id, $type, $lastlevel); + } else { + $documents = array(array('id' => $id, 'type' => $type)); + } if (empty($documents)) { return(array()); } -// print_r($documents); - $zahlungen = array(); $tables = array( @@ -36148,9 +36156,44 @@ function Firmendaten($field,$projekt="") return($zahlungen); } + public function GetZahlung(int $id, string $type, bool $cascade = false, string $lastlevel = 'auftrag') { + $zahlungen = $this->GetZahlungen($id, $type, $cascade); + if (empty($zahlungen)) { + $zahlbetrag = 0; + } else { + $zahlbetrag = array_sum(array_column($zahlungen,'betrag')); + } + return($zahlbetrag); + } + /* * Calculate the payment saldo of a document + * Auftrag: gesamtsumme, rechnung: soll, gutschrift: soll verbindlichkeit: betrag */ + public function GetSaldoDokument($id, $type, string $lastlevel = 'auftrag') { + + $zahlbetrag = $this->GetZahlung($id, $type, false); + + $sollspalten = array( + 'auftrag' => 'gesamtsumme', + 'rechnung' => 'soll', + 'gutschrift' => 'soll', + 'verbindlichkeit' => 'betrag' + ); + + $sql = "SELECT ".$sollspalten[$type]." as sollbetrag FROM ".$type." WHERE id =".$id; + +// echo($sql); + + $result = $this->app->DB->SelectArr($sql); + + if (!empty($result)) { + $sollbetrag = $result[0]['sollbetrag']; + } else { + $sollbetrag = 0; + } + return($sollbetrag-$zahlbetrag); + } public function ANABREGSNeuberechnen($id,$art,$force=false) { diff --git a/www/pages/auftrag.php b/www/pages/auftrag.php index 94e4a16c..5a336f42 100644 --- a/www/pages/auftrag.php +++ b/www/pages/auftrag.php @@ -3423,7 +3423,7 @@ class Auftrag extends GenAuftrag { $id = $this->app->Secure->GetGET('id'); - $zahlungen = $this->app->erp->GetZahlungen($id,'auftrag'); + $zahlungen = $this->app->erp->GetZahlungen($id,'auftrag',true); // print_r($zahlungen); @@ -3451,6 +3451,17 @@ class Auftrag extends GenAuftrag "; } + + $saldo = $this->app->erp->GetSaldoDokument($id,'auftrag'); + + $result .= " + + + ".$saldo." + + + "; + return("".$result."
"); } diff --git a/www/pages/content/gutschrift_minidetail.tpl b/www/pages/content/gutschrift_minidetail.tpl index 9b11acf8..3f005fef 100644 --- a/www/pages/content/gutschrift_minidetail.tpl +++ b/www/pages/content/gutschrift_minidetail.tpl @@ -39,7 +39,7 @@
-

{|Zahlungen|}

+

Zahlungsübersicht

[ZAHLUNGEN]
diff --git a/www/pages/content/rechnung_minidetail.tpl b/www/pages/content/rechnung_minidetail.tpl index 1910123b..6a352846 100644 --- a/www/pages/content/rechnung_minidetail.tpl +++ b/www/pages/content/rechnung_minidetail.tpl @@ -44,7 +44,7 @@
-

Zahlungen

+

Zahlungsübersicht

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

Deckungsbeitrag

-
- - -
Dieses Modul ist erst ab Version Professional verfügbar
- -
-
- - - + diff --git a/www/pages/gutschrift.php b/www/pages/gutschrift.php index 0da05063..1ea5fdae 100644 --- a/www/pages/gutschrift.php +++ b/www/pages/gutschrift.php @@ -659,7 +659,7 @@ class Gutschrift extends GenGutschrift { $id = $this->app->Secure->GetGET('id'); - $zahlungen = $this->app->erp->GetZahlungen($id,'gutschrift'); + $zahlungen = $this->app->erp->GetZahlungen($id,'gutschrift',true); // print_r($zahlungen); @@ -687,6 +687,30 @@ class Gutschrift extends GenGutschrift "; } + + $sum = array_sum(array_column($zahlungen,'betrag'))." ".$zahlung['waehrung']; + + if ($sum != 0) { + $result .= " + + + + + + + + Summe: + + + + + ".$sum." + + + + "; + } + return("".$result."
"); } diff --git a/www/pages/rechnung.php b/www/pages/rechnung.php index 8b65fbe8..13adc7d8 100644 --- a/www/pages/rechnung.php +++ b/www/pages/rechnung.php @@ -1770,11 +1770,12 @@ class Rechnung extends GenRechnung $this->app->Tpl->Set('VORKASSE',''); } -// $saldo=$this->app->DB->Select("SELECT ist-skonto_gegeben FROM rechnung WHERE id='$id'"); + $ist = $this->app->erp->EUR($this->app->erp->GetZahlung($id,'rechnung')); + $this->app->Tpl->Set('ISTDB',$ist); - $saldo = $this->app->erp->EUR($this->RechnungSaldo($id)); + $istgs = $this->app->erp->EUR($this->app->erp->GetZahlung($id,'rechnung',true,'rechnung')); + $this->app->Tpl->Set('ISTGS',$istgs); - $this->app->Tpl->Set('LIVEIST',"$saldo"); if($schreibschutz=="1" && $this->app->erp->RechteVorhanden('rechnung','schreibschutz')) { @@ -2086,8 +2087,17 @@ class Rechnung extends GenRechnung public function RechnungList() { + $this->app->DB->Update("UPDATE rechnung SET zahlungsstatus='offen' WHERE zahlungsstatus=''"); + // First refresh all open items + $openids = $this->app->DB->SelectArr("SELECT id from rechnung WHERE zahlungsstatus = 'offen'"); + + foreach ($openids as $openid) { + $saldo = $this->app->erp->GetSaldoDokument($openid['id'],'rechnung'); + $this->app->DB->Update("UPDATE rechnung SET ist = soll-".$saldo." WHERE id=".$openid['id']); + } + if($this->app->Secure->GetPOST('ausfuehren') && $this->app->erp->RechteVorhanden('rechnung', 'edit')) { $drucker = $this->app->Secure->GetPOST('seldrucker'); @@ -2734,7 +2744,7 @@ class Rechnung extends GenRechnung { $id = $this->app->Secure->GetGET('id'); - $zahlungen = $this->app->erp->GetZahlungen($id,'rechnung'); + $zahlungen = $this->app->erp->GetZahlungen($id,'rechnung',true); // print_r($zahlungen); @@ -2760,86 +2770,35 @@ class Rechnung extends GenRechnung ".$zahlung['betrag']." ".$zahlung['waehrung']." - "; + + "; } + + $sum = array_sum(array_column($zahlungen,'betrag'))." ".$zahlung['waehrung']; + + if ($sum != 0) { + $result .= " + + + + + + + + Summe: + + + + + ".$sum." + + + + "; + } + return("".$result."
"); } -public function RechnungSaldo($id) - { - if($id <= 0) { - return 0; - } - - $rechnungid = $this->app->DB->Select( - sprintf( - 'SELECT `id` FROM `rechnung` WHERE `id`= %d LIMIT 1', - $id - ) - ); - $auftragid = $rechnungid <= 0?0:$this->app->DB->Select( - sprintf( - 'SELECT `auftragid` FROM `rechnung` WHERE `id`=%d LIMIT 1', - $rechnungid - ) - ); - - $eingangArr = $this->app->DB->SelectArr( - sprintf( - "SELECT ko.bezeichnung as konto, DATE_FORMAT(ke.datum,'%%d.%%m.%%Y') as datum, k.id as kontoauszuege, ke.betrag as betrag - FROM `kontoauszuege_zahlungseingang` AS `ke` - LEFT JOIN `kontoauszuege` AS `k` ON ke.kontoauszuege=k.id - LEFT JOIN `konten` AS `ko` ON k.konto=ko.id - WHERE (ke.objekt='rechnung' AND ke.parameter=%d) - OR (ke.objekt='auftrag' AND ke.parameter=%d AND ke.parameter>0) - OR (ke.objekt='rechnung' AND ke.parameter=%d AND ke.parameter>0)", - $id, $auftragid, $rechnungid - ) - ); - $einnahmen = 0; - if(!empty($eingangArr)) { - foreach($eingangArr AS $eingangRow) { - $einnahmen += $eingangRow['betrag']; - } - } - - //$rechnungen = $this->app->DB->SelectArr("SELECT belegnr, DATE_FORMAT(datum,'%d.%m.%Y') as datum,soll FROM rechnung WHERE rechnungid='$id' "); // alt - $rechnungen = $this->app->DB->SelectArr( - sprintf( - "SELECT ro.belegnr, DATE_FORMAT(ro.datum,'%%d.%%m.%%Y') as datum, ro.soll - FROM `rechnung` AS `ro` - WHERE ro.`id` = %d ", - $id - ) - ); - - if(!empty($rechnungen)) { - foreach($rechnungen as $rechnungRow) { - $einnahmen += $rechnungRow['soll']; - } - } - - $ausgangArr = $this->app->DB->SelectArr( - sprintf( - "SELECT ko.bezeichnung as konto, DATE_FORMAT(ke.datum,'%%d.%%m') as datum, ke.betrag as betrag - 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='rechnung' AND ke.parameter=%d) - OR (ke.objekt='rechnung' AND ke.parameter=%d AND ke.parameter>0) - OR (ke.objekt='auftrag' AND ke.parameter=%d AND ke.parameter>0)", - $id, $rechnungid, $auftragid - ) - ); - $ausgaben = 0; - if(!empty($ausgangArr)){ - foreach($ausgangArr as $ausgangRow) { - $ausgaben += $ausgangRow['betrg']; - } - } - - return $einnahmen - $ausgaben; - } - } diff --git a/www/widgets/templates/_gen/rechnung.tpl b/www/widgets/templates/_gen/rechnung.tpl index 8fac1f52..a2521c3b 100644 --- a/www/widgets/templates/_gen/rechnung.tpl +++ b/www/widgets/templates/_gen/rechnung.tpl @@ -1,433 +1,633 @@ - - + [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|} + + + + + + + + + + + + + + + + +
Alle Einstellungen manuell festsetzen: [MAHNWESENFESTSETZEN][MSGMAHNWESENFESTSETZEN] 

{|Zahlungsstatus|}:[ZAHLUNGSSTATUS][MSGZAHLUNGSSTATUS] Bezahlt am: [BEZAHLT_AM][MSGBEZAHLT_AM] +
+ + + + + + + + + + + + + + + + + + +
+ {|SOLL|}: + + [SOLL] +
+ {|IST|}: + + [ISTDB] +
+ {|Gutschriften|}: + + [ISTGS] +
+ {|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] +
+
+
+
+
+
+ {|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] +
From 6a566a99afc475b2188dc360069528287f3a1680 Mon Sep 17 00:00:00 2001 From: OpenXE <> Date: Wed, 22 Mar 2023 14:43:58 +0100 Subject: [PATCH 07/61] Kontoauszuege module & importer --- upgrade/data/db_schema.json | 6 +- www/pages/content/importvorlage_formate.tpl | 62 +++- .../content/importvorlage_uebersicht.tpl | 4 +- www/pages/content/konten_edit.tpl | 8 + www/pages/content/kontoauszuege_edit.tpl | 151 ++++++++ www/pages/content/kontoauszuege_list.tpl | 44 +++ www/pages/importvorlage.php | 107 +++++- www/pages/kontoauszuege.php | 346 ++++++++++++++++++ www/widgets/_gen/widget.gen.importvorlage.php | 1 + 9 files changed, 709 insertions(+), 20 deletions(-) create mode 100644 www/pages/content/kontoauszuege_edit.tpl create mode 100644 www/pages/content/kontoauszuege_list.tpl create mode 100644 www/pages/kontoauszuege.php diff --git a/upgrade/data/db_schema.json b/upgrade/data/db_schema.json index 6686ad5c..8728a1d6 100644 --- a/upgrade/data/db_schema.json +++ b/upgrade/data/db_schema.json @@ -50206,12 +50206,12 @@ "Comment": "" }, { - "Field": "vorauswahlvorschlag", - "Type": "int(11)", + "Field": "importdatum", + "Type": "datetime", "Collation": null, "Null": "NO", "Key": "", - "Default": "0", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" diff --git a/www/pages/content/importvorlage_formate.tpl b/www/pages/content/importvorlage_formate.tpl index f20cb45a..2ba566e6 100644 --- a/www/pages/content/importvorlage_formate.tpl +++ b/www/pages/content/importvorlage_formate.tpl @@ -6,7 +6,8 @@
  • {|Zeiterfassung|}
  • {|Wiedervorlagen|}
  • {|Notizen|}
  • -
  • {|Kontorahmen|}
  • +
  • {|Kontenrahmen|}
  • +
  • {|Kontoauszug|}
  • @@ -508,7 +509,7 @@
    -
    {|Kontorahmen|} +
    {|Kontenrahmen|} @@ -551,4 +552,61 @@ +
    +
    +
    +
    +
    {|Kontoauszug|} +
    Variable
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    VariableBeschreibungKommentar
    kontoKonto-ID
    buchungBuchungsdatumIm Format DD.MM.YYYY
    betragBetrag
    waehrungWährungMuss in den Währungen vorhanden sein
    buchungstextBuchungstextWird für die Zuordnung verwendet
    buchungstext2BuchungstextWird für die Zuordnung verwendet
    buchungstext3BuchungstextWird für die Zuordnung verwendet
    buchungstext4BuchungstextWird für die Zuordnung verwendet
    +
    +
    +
    +
    +
    diff --git a/www/pages/content/importvorlage_uebersicht.tpl b/www/pages/content/importvorlage_uebersicht.tpl index 5a115c83..8dfe0448 100644 --- a/www/pages/content/importvorlage_uebersicht.tpl +++ b/www/pages/content/importvorlage_uebersicht.tpl @@ -8,7 +8,7 @@ - {|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 542127cd..633dd500 100644 --- a/www/pages/content/konten_edit.tpl +++ b/www/pages/content/konten_edit.tpl @@ -19,6 +19,14 @@ + + + +
    + {|Kurzbezeichnung|}: + + {|Muss eindeutig sein.|} +
    {|Bezeichnung|}: diff --git a/www/pages/content/kontoauszuege_edit.tpl b/www/pages/content/kontoauszuege_edit.tpl new file mode 100644 index 00000000..9a3b966f --- /dev/null +++ b/www/pages/content/kontoauszuege_edit.tpl @@ -0,0 +1,151 @@ +
    +
      +
    • +
    + +
    + [MESSAGE] +
    + [FORMHANDLEREVENT] +
    +
    +
    +
    +
    + {|Kontoauszüg Eintrag|} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + {|Konto|}: + + +
    + {|Datum|}: + + +
    + {|Betrag|}: + + +
    + {|Währung|}: + + +
    + {|Fertig|}: + + +
    + {|Datev_abgeschlossen|}: + + +
    + {|Buchungstext|}: + + +
    + {|Bearbeiter|}: + + +
    + {|Internebemerkung|}: + + +
    + {|Importfehler|}: + + +
    + {|Klaerfall|}: + + +
    + {|Klaergrund|}: + + +
    +
    +
    +
    +
    +
    + +
    +
    + +
    + diff --git a/www/pages/content/kontoauszuege_list.tpl b/www/pages/content/kontoauszuege_list.tpl new file mode 100644 index 00000000..dee9f3b1 --- /dev/null +++ b/www/pages/content/kontoauszuege_list.tpl @@ -0,0 +1,44 @@ +
    + +
    +
    + [MESSAGE] +
    +
    +
    {|Filter|}
    +
      + [STATUSFILTER] +
    • + + +
    • +
    +
    +
    + [TAB1] +
    + + Stapelverarbeitung + + + +
     alle markieren 
    +
    +
    +
    +
    + + diff --git a/www/pages/importvorlage.php b/www/pages/importvorlage.php index eac2209f..0689e2ea 100644 --- a/www/pages/importvorlage.php +++ b/www/pages/importvorlage.php @@ -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,85 @@ class Importvorlage extends GenImportvorlage { } break; + case 'kontoauszug': + + $allowed_fields = array('konto','buchung','betrag','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']); + + // 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']."'"; + $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)). + "')"; + + $msg .= $sql; + + $result = $this->app->DB->Update($sql); + } + } else { + $msg .= "Konto nicht gefunden: ".$row['konto'].".
    "; + } + } + + break; } // HERE END OF PROCESSING THE ROWS switch($ziel); @@ -5106,20 +5185,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/kontoauszuege.php b/www/pages/kontoauszuege.php new file mode 100644 index 00000000..863c6dd0 --- /dev/null +++ b/www/pages/kontoauszuege.php @@ -0,0 +1,346 @@ +app = $app; + if ($intern) + return; + + $this->app->ActionHandlerInit($this); + $this->app->ActionHandler("list", "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 */ + } + + static function TableSearch(&$app, $name, $erlaubtevars) { + switch ($name) { + case "kontoauszuege_list": + $allowed['kontoauszuege_list'] = array('list'); + $heading = array('','', 'Importdatum', 'Konto', 'Datum', 'Betrag', 'Waehrung', 'Buchungstext','Interne Bemerkung', 'Menü'); + $width = array('1%','1%', '1%', '10%', '1%', '1%', '1%', '20%', '20%', '1%'); // Fill out manually later + + // columns that are aligned right (numbers etc) + $alignright = array(6); + + $findcols = array('k.id','k.id','k.konto', 'k.importdatum', 'k.buchung', 'k.soll', 'k.waehrung', 'k.buchungstext','k.internebemerkung'); + $searchsql = array('k.konto', 'k.buchung', 'k.soll', 'k.buchungstext','k.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 SQL_CALC_FOUND_ROWS k.id, + $dropnbox, + ".$app->erp->FormatDateTimeShort('k.importdatum').", + (SELECT kurzbezeichnung FROM konten WHERE konten.id = k.konto), + ".$app->erp->FormatDate('k.buchung').", + IF( + k.importfehler, + CONCAT( + '', + ".$app->erp->FormatMenge('k.soll',2).", + '' + ), + ".$app->erp->FormatMenge('k.soll',2)."), + k.waehrung, + k.buchungstext, + k.internebemerkung, + k.id + FROM kontoauszuege k"; + + $where = "1"; + + // 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) { + $where .= ""; + } else { + $where .= " AND k.importfehler IS NULL "; + } + // END Toggle filters + + $count = "SELECT count(DISTINCT id) FROM kontoauszuege k WHERE $where"; +// $groupby = ""; + + break; + } + + $erg = false; + + foreach ($erlaubtevars as $k => $v) { + if (isset($$v)) { + $erg[$v] = $$v; + } + } + return $erg; + } + + 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') { + $sql = "UPDATE kontoauszuege SET importfehler = 1 WHERE id IN (".implode(",",$selectedIds).")"; + $this->app->DB->Update($sql); + } + } + + $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_list', "show", "", "", basename(__FILE__), __CLASS__); + $this->app->Tpl->Parse('PAGE', "kontoauszuege_list.tpl"); + } + + public function kontoauszuege_delete() { + $id = (int) $this->app->Secure->GetGET('id'); + + $this->app->DB->Delete("UPDATE `kontoauszuege` SET importfehler = 1 WHERE `id` = '{$id}'"); + $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/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","",""); From c220639e826cdf05759aa8753e68fb717ee39351 Mon Sep 17 00:00:00 2001 From: OpenXE <> Date: Sat, 25 Mar 2023 17:50:04 +0100 Subject: [PATCH 08/61] Zahlungsstatus Rechnung Gutschrift reworked with fibu_buchungen --- phpwf/plugins/class.yui.php | 14 +- upgrade/data/db_schema.json | 20 +- www/lib/class.erpapi.php | 143 ++-- www/pages/content/gutschrift_minidetail.tpl | 2 +- www/pages/content/rechnung_minidetail.tpl | 2 +- www/pages/gutschrift.php | 117 ++-- www/pages/rechnung.php | 133 ++-- www/widgets/_gen/widget.gen.gutschrift.php | 601 ++++++++--------- www/widgets/_gen/widget.gen.rechnung.php | 682 ++++++++++---------- www/widgets/templates/_gen/gutschrift.tpl | 37 +- www/widgets/templates/_gen/rechnung.tpl | 77 +-- www/widgets/widget.rechnung.php | 1 - 12 files changed, 887 insertions(+), 942 deletions(-) diff --git a/phpwf/plugins/class.yui.php b/phpwf/plugins/class.yui.php index a2288551..afdc3318 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','re.belegnr', 'r.zahlungsstatus','differenz', 'r.status', 'pt.payement_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,7 +6127,7 @@ 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); @@ -6139,7 +6139,7 @@ r.land as land, p.abkuerzung as projekt, r.zahlungsweise as zahlungsweise, 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, + FORMAT(r.soll,2{$extended_mysql55}) as soll, r.zahlungsstatus as zahlung, r.soll-r.ist 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 @@ -6564,8 +6564,8 @@ r.land as land, p.abkuerzung as projekt, r.zahlungsweise as zahlungsweise, 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.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 diff --git a/upgrade/data/db_schema.json b/upgrade/data/db_schema.json index 8728a1d6..0af678c8 100644 --- a/upgrade/data/db_schema.json +++ b/upgrade/data/db_schema.json @@ -77689,13 +77689,13 @@ "Privileges": "select,insert,update,references", "Comment": "" }, - { + { "Field": "buchhaltung_berater", "Type": "varchar(64)", - "Collation": null, + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77703,10 +77703,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 +77714,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,7 +77733,6 @@ "Privileges": "select,insert,update,references", "Comment": "" } - ], "keys": [ { @@ -114359,6 +114358,11 @@ "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", + "type": "VIEW", + "Create": "CREATE VIEW `fibu_buchungen_alle` AS select `fb`.`buchungsart` AS `buchungsart`,`fb`.`typ` AS `typ`,`fb`.`id` AS `id`,if(`bl`.`datum` <> '',`bl`.`datum`,`fb`.`datum`) AS `datum`,`fb`.`gegen_typ` AS `doc_typ`,`fb`.`gegen_id` AS `doc_id`,`bl`.`belegnr` AS `doc_belegnr`,`fb`.`soll` AS `betrag`,`fb`.`waehrung` AS `waehrung` from ((select 'umsatz' collate utf8mb4_general_ci AS `buchungsart`,'rechnung' collate utf8mb4_general_ci AS `typ`,`rechnung`.`id` AS `id`,`rechnung`.`soll` AS `soll`,`rechnung`.`waehrung` AS `waehrung`,'rechnung' collate utf8mb4_general_ci AS `gegen_typ`,`rechnung`.`id` AS `gegen_id`,`rechnung`.`datum` AS `datum` from `rechnung` where `rechnung`.`belegnr` <> '' union select 'umsatz' AS `umsatz`,'gutschrift' collate utf8mb4_general_ci AS `'gutschrift' COLLATE utf8mb4_general_ci`,`gutschrift`.`id` AS `id`,-`gutschrift`.`soll` AS `- ``openxe``.``gutschrift``.``soll```,`gutschrift`.`waehrung` AS `waehrung`,'gutschrift' collate utf8mb4_general_ci AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`datum` AS `datum` from `gutschrift` where `gutschrift`.`belegnr` <> '' union select 'abbuchung' collate utf8mb4_general_ci AS `abbuchung`,'gutschrift' collate utf8mb4_general_ci AS `rechnung`,`gutschrift`.`id` AS `id`,`gutschrift`.`soll` AS `- ``openxe``.``gutschrift``.``soll```,`gutschrift`.`waehrung` AS `waehrung`,'rechnung' collate utf8mb4_general_ci AS `gutschrift`,`gutschrift`.`rechnungid` AS `rechnungid`,`gutschrift`.`datum` AS `datum` from `gutschrift` where `gutschrift`.`rechnungid` > 0 and `gutschrift`.`belegnr` <> '' union select 'abbuchung' collate utf8mb4_general_ci AS `abbuchung`,'rechnung' collate utf8mb4_general_ci AS `rechnung`,`gutschrift`.`rechnungid` AS `rechnungid`,-`gutschrift`.`soll` AS `- ``openxe``.``gutschrift``.``soll```,`gutschrift`.`waehrung` AS `waehrung`,'gutschrift' collate utf8mb4_general_ci AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`datum` AS `datum` from `gutschrift` where `gutschrift`.`rechnungid` > 0 and `gutschrift`.`belegnr` <> '' union select 'aufwand' collate utf8mb4_general_ci AS `aufwand`,'verbindlichkeit' collate utf8mb4_general_ci AS `verbindlichkeit`,`verbindlichkeit`.`id` AS `id`,-`verbindlichkeit`.`betrag` AS `- ``openxe``.``verbindlichkeit``.``betrag```,`verbindlichkeit`.`waehrung` AS `waehrung`,'verbindlichkeit' collate utf8mb4_general_ci AS `verbindlichkeit`,`verbindlichkeit`.`id` AS `id`,`verbindlichkeit`.`rechnungsdatum` AS `rechnungsdatum` from `verbindlichkeit` where `verbindlichkeit`.`belegnr` <> '' union select 'abbuchung' collate utf8mb4_general_ci AS `abbuchung`,`fibu_buchungen`.`von_typ` AS `von_typ`,`fibu_buchungen`.`von_id` AS `von_id`,-`fibu_buchungen`.`betrag` AS `- ``openxe``.``fibu_buchungen``.``betrag```,`fibu_buchungen`.`waehrung` AS `waehrung`,`fibu_buchungen`.`nach_typ` AS `nach_typ`,`fibu_buchungen`.`nach_id` AS `nach_id`,`fibu_buchungen`.`zeit` AS `zeit` from `fibu_buchungen` union select 'zubuchung' collate utf8mb4_general_ci AS `zubuchung`,`fibu_buchungen`.`nach_typ` AS `nach_typ`,`fibu_buchungen`.`nach_id` AS `nach_id`,`fibu_buchungen`.`betrag` AS `betrag`,`fibu_buchungen`.`waehrung` AS `waehrung`,`fibu_buchungen`.`von_typ` AS `von_typ`,`fibu_buchungen`.`von_id` AS `von_id`,`fibu_buchungen`.`zeit` AS `zeit` from `fibu_buchungen`) `fb` left join (select `rechnung`.`datum` AS `datum`,'rechnung' collate utf8mb4_general_ci AS `typ`,`rechnung`.`id` AS `id`,`rechnung`.`belegnr` AS `belegnr` from `rechnung` where `rechnung`.`belegnr` <> '' union select `gutschrift`.`datum` AS `datum`,'gutschrift' collate utf8mb4_general_ci AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`belegnr` AS `belegnr` from `gutschrift` where `gutschrift`.`belegnr` <> '' union select `verbindlichkeit`.`rechnungsdatum` AS `rechnungsdatum`,'verbindlichkeit' collate utf8mb4_general_ci AS `verbindlichkeit`,`verbindlichkeit`.`id` AS `id`,`verbindlichkeit`.`belegnr` AS `belegnr` from `verbindlichkeit` where `verbindlichkeit`.`belegnr` <> '' union select `kontoauszuege`.`buchung` AS `buchung`,'kontoauszuege' collate utf8mb4_general_ci AS `kontoauszuege`,`kontoauszuege`.`id` AS `id`,`kontoauszuege`.`buchungstext` AS `buchungstext` from `kontoauszuege` union select '','kontorahmen' collate utf8mb4_general_ci AS `'kontorahmen' COLLATE utf8mb4_general_ci`,`kontorahmen`.`id` AS `id`,`kontorahmen`.`beschriftung` AS `beschriftung` from `kontorahmen`) `bl` on(`fb`.`gegen_typ` = `bl`.`typ` and `fb`.`gegen_id` = `bl`.`id`))" } ] } diff --git a/www/lib/class.erpapi.php b/www/lib/class.erpapi.php index 15dfc44c..e3d96046 100644 --- a/www/lib/class.erpapi.php +++ b/www/lib/class.erpapi.php @@ -36093,9 +36093,10 @@ function Firmendaten($field,$projekt="") /* * Calculate the payments of a document (rechnung, gutschrift, auftrag, verbindlichkeit) - * Results array of payments with information + * Results array of payments (datum, doc_type, doc_id, doc_belegnr, betrag, waehrung) * Gutschrift -> Rechnungid, Rechnung -> Auftragid */ + public function GetZahlungen(int $id, string $type, bool $cascade = false, string $lastlevel = 'auftrag') : array { if ($cascade) { @@ -36108,91 +36109,91 @@ function Firmendaten($field,$projekt="") return(array()); } - $zahlungen = array(); - - $tables = array( - array( - 'minus' => '', - 'table' => 'kontoauszuege_zahlungseingang', - ), - array ( - 'minus' => '-', - 'table' => 'kontoauszuege_zahlungsausgang' - ) - ); + $ids = array(); foreach ($documents as $document) { - - foreach ($tables as $table) { - - $sql = " - SELECT - '".$document['type']."' as `doc_type`, - '".$document['id']."' as `doc_id`, - '".$document['belegnr']."' as `doc_belegnr`, - ko.bezeichnung AS konto, - DATE_FORMAT(ke.datum, '%d.%m.%Y') AS datum, - k.id AS kontoauszuege, - ".$table['minus']."ke.betrag AS betrag, - k.id AS zeile, - k.waehrung - FROM - ".$table['table']." ke - LEFT JOIN kontoauszuege k ON - ke.kontoauszuege = k.id - LEFT JOIN konten ko ON - k.konto = ko.id - WHERE - ke.objekt = '".$document['type']."' AND ke.parameter = '".$document['id']."' - "; - - $result = $this->app->DB->SelectArr($sql); - - if (!empty($result)) { - $zahlungen = array_merge($zahlungen,$result); - } - } + $ids[] = $document['type'].$document['id']; } - return($zahlungen); - } - public function GetZahlung(int $id, string $type, bool $cascade = false, string $lastlevel = 'auftrag') { - $zahlungen = $this->GetZahlungen($id, $type, $cascade); - if (empty($zahlungen)) { - $zahlbetrag = 0; - } else { - $zahlbetrag = array_sum(array_column($zahlungen,'betrag')); - } - return($zahlbetrag); + $sql = " + SELECT + typ, + id, + ".$this->app->erp->FormatDate('datum')." as datum, + doc_typ, + doc_id, + doc_belegnr, + ".$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 of a document + * 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 GetSaldoDokument($id, $type, string $lastlevel = 'auftrag') { + public function GetSaldenDokument($id, $type, string $lastlevel = 'auftrag') : array { - $zahlbetrag = $this->GetZahlung($id, $type, false); - - $sollspalten = array( - 'auftrag' => 'gesamtsumme', - 'rechnung' => 'soll', - 'gutschrift' => 'soll', - 'verbindlichkeit' => 'betrag' - ); - - $sql = "SELECT ".$sollspalten[$type]." as sollbetrag FROM ".$type." WHERE id =".$id; - -// echo($sql); + $sql = " + SELECT + ".$this->app->erp->FormatMenge('SUM(betrag)',2)." 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)) { - $sollbetrag = $result[0]['sollbetrag']; - } else { - $sollbetrag = 0; + return($result); + } + return(array()); + } + + + /* + * Calculate the payment amount of a document + * Auftrag: gesamtsumme, rechnung: soll, gutschrift: soll verbindlichkeit: betrag + * returns array(array(betrag, waehrung)) or empty array + */ + public function GetSaldoDokument($id, $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($sollbetrag-$zahlbetrag); + return(array()); } public function ANABREGSNeuberechnen($id,$art,$force=false) diff --git a/www/pages/content/gutschrift_minidetail.tpl b/www/pages/content/gutschrift_minidetail.tpl index 3f005fef..8c8d4a31 100644 --- a/www/pages/content/gutschrift_minidetail.tpl +++ b/www/pages/content/gutschrift_minidetail.tpl @@ -39,7 +39,7 @@
    -

    Zahlungsübersicht

    +

    Buchungen

    [ZAHLUNGEN]
    diff --git a/www/pages/content/rechnung_minidetail.tpl b/www/pages/content/rechnung_minidetail.tpl index 6a352846..38f8e543 100644 --- a/www/pages/content/rechnung_minidetail.tpl +++ b/www/pages/content/rechnung_minidetail.tpl @@ -44,7 +44,7 @@
    -

    Zahlungsübersicht

    +

    Buchungen

    [ZAHLUNGEN]
    diff --git a/www/pages/gutschrift.php b/www/pages/gutschrift.php index 1ea5fdae..712d153d 100644 --- a/www/pages/gutschrift.php +++ b/www/pages/gutschrift.php @@ -659,59 +659,37 @@ class Gutschrift extends GenGutschrift { $id = $this->app->Secure->GetGET('id'); - $zahlungen = $this->app->erp->GetZahlungen($id,'gutschrift',true); + $zahlungen = $this->app->erp->GetZahlungen($id,'gutschrift'); + if (!empty($zahlungen)) { + $et = new EasyTable($this->app); -// print_r($zahlungen); + $et->headings = array('Datum','Beleg','Betrag','Währung'); - $result = ""; + foreach ($zahlungen as $zahlung) { + $row = array( + $zahlung['datum'], + " + ".ucfirst($zahlung['doc_typ'])." + ".$zahlung['doc_belegnr']." + ", + $zahlung['betrag'], + $zahlung['waehrung'] + ); + $et->AddRow($row); + } - foreach ($zahlungen as $zahlung) { - $result .= " - - - ".$zahlung['datum']." - - - - ".ucfirst($zahlung['doc_type'])." - ".$zahlung['doc_belegnr']." - - - - ".$zahlung['konto']." - - - - ".$zahlung['betrag']." ".$zahlung['waehrung']." - - - "; - } - - $sum = array_sum(array_column($zahlungen,'betrag'))." ".$zahlung['waehrung']; - - if ($sum != 0) { - $result .= " - - - - - - - - Summe: - - - - - ".$sum." - - - - "; - } - - return("".$result."
    "); + $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',"")); + } } @@ -1136,7 +1114,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(); @@ -1145,14 +1122,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') @@ -1201,7 +1175,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")) { @@ -1213,6 +1192,17 @@ class Gutschrift extends GenGutschrift $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"); @@ -1392,6 +1382,25 @@ class Gutschrift extends GenGutschrift { $this->app->Tpl->Set('UEBERSCHRIFT', 'Gutschriften'); + $this->app->DB->Update("UPDATE gutschrift SET zahlungsstatus='offen' WHERE zahlungsstatus=''"); + + // First 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 WHERE id=".$openid['id']; + $result = $this->app->DB->Update($sql); + } + } + else { + $this->app->DB->Update("UPDATE gutschrift SET ist = null WHERE id=".$openid['id']); + } + } + 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'); diff --git a/www/pages/rechnung.php b/www/pages/rechnung.php index 13adc7d8..50244957 100644 --- a/www/pages/rechnung.php +++ b/www/pages/rechnung.php @@ -887,31 +887,9 @@ 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
    "); + $this->app->Tpl->Set('ZAHLUNGEN',$this->RechnungZahlung(true)); - 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('RECHNUNGADRESSE',$this->Rechnungsadresse($auftragArr[0]['id'])); $tmp = new EasyTable($this->app); @@ -1770,13 +1748,9 @@ class Rechnung extends GenRechnung $this->app->Tpl->Set('VORKASSE',''); } - $ist = $this->app->erp->EUR($this->app->erp->GetZahlung($id,'rechnung')); + $ist = $this->app->erp->EUR($this->app->erp->GetSaldoDokument($id,'rechnung')['betrag']); $this->app->Tpl->Set('ISTDB',$ist); - $istgs = $this->app->erp->EUR($this->app->erp->GetZahlung($id,'rechnung',true,'rechnung')); - $this->app->Tpl->Set('ISTGS',$istgs); - - if($schreibschutz=="1" && $this->app->erp->RechteVorhanden('rechnung','schreibschutz')) { $this->app->Tpl->Set('MESSAGE',"
    Diese Rechnung ist schreibgeschützt und darf daher nicht mehr bearbeitet werden! 
    "); @@ -1822,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'); @@ -1849,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 { +/* } 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"); @@ -2091,11 +2066,20 @@ class Rechnung extends GenRechnung $this->app->DB->Update("UPDATE rechnung SET zahlungsstatus='offen' WHERE zahlungsstatus=''"); // First refresh all open items - $openids = $this->app->DB->SelectArr("SELECT id from rechnung WHERE zahlungsstatus = 'offen'"); + $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'); - $this->app->DB->Update("UPDATE rechnung SET ist = soll-".$saldo." WHERE id=".$openid['id']); + + if (!empty($saldo)) { + if ($saldo['waehrung'] == $openid['waehrung']) { + $sql = "UPDATE rechnung SET ist = ".$saldo['betrag']."+soll WHERE id=".$openid['id']; + $this->app->DB->Update($sql); + } + } + else { + $this->app->DB->Update("UPDATE rechnung SET ist = null"); + } } if($this->app->Secure->GetPOST('ausfuehren') && $this->app->erp->RechteVorhanden('rechnung', 'edit')) @@ -2744,61 +2728,36 @@ class Rechnung extends GenRechnung { $id = $this->app->Secure->GetGET('id'); - $zahlungen = $this->app->erp->GetZahlungen($id,'rechnung',true); + $zahlungen = $this->app->erp->GetZahlungen($id,'rechnung'); + if (!empty($zahlungen)) { + $et = new EasyTable($this->app); -// print_r($zahlungen); + $et->headings = array('Datum','Beleg','Betrag','Währung'); - $result = ""; + foreach ($zahlungen as $zahlung) { + $row = array( + $zahlung['datum'], + " + ".ucfirst($zahlung['doc_typ'])." + ".$zahlung['doc_belegnr']." + ", + $zahlung['betrag'], + $zahlung['waehrung'] + ); + $et->AddRow($row); + } - foreach ($zahlungen as $zahlung) { - $result .= " - - - ".$zahlung['datum']." - - - - ".ucfirst($zahlung['doc_type'])." - ".$zahlung['doc_belegnr']." - - - - ".$zahlung['konto']." - - - - ".$zahlung['betrag']." ".$zahlung['waehrung']." - - - - "; + $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',"")); } - - $sum = array_sum(array_column($zahlungen,'betrag'))." ".$zahlung['waehrung']; - - if ($sum != 0) { - $result .= " - - - - - - - - Summe: - - - - - ".$sum." - - - - "; - } - - return("".$result."
    "); } - - } 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.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..2fc7aee2 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] +
    + {|OFFEN|}: + + [ISTDB] +
    +
    +
    diff --git a/www/widgets/templates/_gen/rechnung.tpl b/www/widgets/templates/_gen/rechnung.tpl index a2521c3b..bc29928d 100644 --- a/www/widgets/templates/_gen/rechnung.tpl +++ b/www/widgets/templates/_gen/rechnung.tpl @@ -1,39 +1,3 @@ - [SAVEPAGEREALLY]
    @@ -141,17 +105,10 @@ [MAHNWESENIF]
    {|Zahlungsstatus|} - - - - - - - - +
    Alle Einstellungen manuell festsetzen: [MAHNWESENFESTSETZEN][MSGMAHNWESENFESTSETZEN] 

    - @@ -168,38 +125,12 @@ - - - - - - - - - - +
    {|Zahlungsstatus|}:[ZAHLUNGSSTATUS][MSGZAHLUNGSSTATUS] Bezahlt am: [BEZAHLT_AM][MSGBEZAHLT_AM] + [ZAHLUNGSSTATUS][MSGZAHLUNGSSTATUS]
    - {|IST|}: + {|OFFEN|}: [ISTDB]
    - {|Gutschriften|}: - - [ISTGS] -
    - {|Skonto gegeben|}: - - [SKONTO_GEGEBEN][MSGSKONTO_GEGEBEN]  (als Geldbetrag) -
    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)) { From 62e16cfcc1b5333c960bb8773cccd61af1f75b19 Mon Sep 17 00:00:00 2001 From: OpenXE <> Date: Sat, 25 Mar 2023 21:23:20 +0100 Subject: [PATCH 09/61] fibu_buchungen database definitions --- upgrade/data/db_schema.json | 128 +++++++++++++++++++++++++++++++++++- 1 file changed, 127 insertions(+), 1 deletion(-) diff --git a/upgrade/data/db_schema.json b/upgrade/data/db_schema.json index 0af678c8..d38d55e5 100644 --- a/upgrade/data/db_schema.json +++ b/upgrade/data/db_schema.json @@ -38159,6 +38159,132 @@ } ] }, + { + "name": "fibu_buchungen", + "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": "" + }, + { + "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": "" + } + ], + "keys": [ + { + "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", + "columns": [ + "id" + ] + } + ] + }, { "name": "file_link", "type": "BASE TABLE", @@ -114362,7 +114488,7 @@ { "name": "fibu_buchungen_alle", "type": "VIEW", - "Create": "CREATE VIEW `fibu_buchungen_alle` AS select `fb`.`buchungsart` AS `buchungsart`,`fb`.`typ` AS `typ`,`fb`.`id` AS `id`,if(`bl`.`datum` <> '',`bl`.`datum`,`fb`.`datum`) AS `datum`,`fb`.`gegen_typ` AS `doc_typ`,`fb`.`gegen_id` AS `doc_id`,`bl`.`belegnr` AS `doc_belegnr`,`fb`.`soll` AS `betrag`,`fb`.`waehrung` AS `waehrung` from ((select 'umsatz' collate utf8mb4_general_ci AS `buchungsart`,'rechnung' collate utf8mb4_general_ci AS `typ`,`rechnung`.`id` AS `id`,`rechnung`.`soll` AS `soll`,`rechnung`.`waehrung` AS `waehrung`,'rechnung' collate utf8mb4_general_ci AS `gegen_typ`,`rechnung`.`id` AS `gegen_id`,`rechnung`.`datum` AS `datum` from `rechnung` where `rechnung`.`belegnr` <> '' union select 'umsatz' AS `umsatz`,'gutschrift' collate utf8mb4_general_ci AS `'gutschrift' COLLATE utf8mb4_general_ci`,`gutschrift`.`id` AS `id`,-`gutschrift`.`soll` AS `- ``openxe``.``gutschrift``.``soll```,`gutschrift`.`waehrung` AS `waehrung`,'gutschrift' collate utf8mb4_general_ci AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`datum` AS `datum` from `gutschrift` where `gutschrift`.`belegnr` <> '' union select 'abbuchung' collate utf8mb4_general_ci AS `abbuchung`,'gutschrift' collate utf8mb4_general_ci AS `rechnung`,`gutschrift`.`id` AS `id`,`gutschrift`.`soll` AS `- ``openxe``.``gutschrift``.``soll```,`gutschrift`.`waehrung` AS `waehrung`,'rechnung' collate utf8mb4_general_ci AS `gutschrift`,`gutschrift`.`rechnungid` AS `rechnungid`,`gutschrift`.`datum` AS `datum` from `gutschrift` where `gutschrift`.`rechnungid` > 0 and `gutschrift`.`belegnr` <> '' union select 'abbuchung' collate utf8mb4_general_ci AS `abbuchung`,'rechnung' collate utf8mb4_general_ci AS `rechnung`,`gutschrift`.`rechnungid` AS `rechnungid`,-`gutschrift`.`soll` AS `- ``openxe``.``gutschrift``.``soll```,`gutschrift`.`waehrung` AS `waehrung`,'gutschrift' collate utf8mb4_general_ci AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`datum` AS `datum` from `gutschrift` where `gutschrift`.`rechnungid` > 0 and `gutschrift`.`belegnr` <> '' union select 'aufwand' collate utf8mb4_general_ci AS `aufwand`,'verbindlichkeit' collate utf8mb4_general_ci AS `verbindlichkeit`,`verbindlichkeit`.`id` AS `id`,-`verbindlichkeit`.`betrag` AS `- ``openxe``.``verbindlichkeit``.``betrag```,`verbindlichkeit`.`waehrung` AS `waehrung`,'verbindlichkeit' collate utf8mb4_general_ci AS `verbindlichkeit`,`verbindlichkeit`.`id` AS `id`,`verbindlichkeit`.`rechnungsdatum` AS `rechnungsdatum` from `verbindlichkeit` where `verbindlichkeit`.`belegnr` <> '' union select 'abbuchung' collate utf8mb4_general_ci AS `abbuchung`,`fibu_buchungen`.`von_typ` AS `von_typ`,`fibu_buchungen`.`von_id` AS `von_id`,-`fibu_buchungen`.`betrag` AS `- ``openxe``.``fibu_buchungen``.``betrag```,`fibu_buchungen`.`waehrung` AS `waehrung`,`fibu_buchungen`.`nach_typ` AS `nach_typ`,`fibu_buchungen`.`nach_id` AS `nach_id`,`fibu_buchungen`.`zeit` AS `zeit` from `fibu_buchungen` union select 'zubuchung' collate utf8mb4_general_ci AS `zubuchung`,`fibu_buchungen`.`nach_typ` AS `nach_typ`,`fibu_buchungen`.`nach_id` AS `nach_id`,`fibu_buchungen`.`betrag` AS `betrag`,`fibu_buchungen`.`waehrung` AS `waehrung`,`fibu_buchungen`.`von_typ` AS `von_typ`,`fibu_buchungen`.`von_id` AS `von_id`,`fibu_buchungen`.`zeit` AS `zeit` from `fibu_buchungen`) `fb` left join (select `rechnung`.`datum` AS `datum`,'rechnung' collate utf8mb4_general_ci AS `typ`,`rechnung`.`id` AS `id`,`rechnung`.`belegnr` AS `belegnr` from `rechnung` where `rechnung`.`belegnr` <> '' union select `gutschrift`.`datum` AS `datum`,'gutschrift' collate utf8mb4_general_ci AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`belegnr` AS `belegnr` from `gutschrift` where `gutschrift`.`belegnr` <> '' union select `verbindlichkeit`.`rechnungsdatum` AS `rechnungsdatum`,'verbindlichkeit' collate utf8mb4_general_ci AS `verbindlichkeit`,`verbindlichkeit`.`id` AS `id`,`verbindlichkeit`.`belegnr` AS `belegnr` from `verbindlichkeit` where `verbindlichkeit`.`belegnr` <> '' union select `kontoauszuege`.`buchung` AS `buchung`,'kontoauszuege' collate utf8mb4_general_ci AS `kontoauszuege`,`kontoauszuege`.`id` AS `id`,`kontoauszuege`.`buchungstext` AS `buchungstext` from `kontoauszuege` union select '','kontorahmen' collate utf8mb4_general_ci AS `'kontorahmen' COLLATE utf8mb4_general_ci`,`kontorahmen`.`id` AS `id`,`kontorahmen`.`beschriftung` AS `beschriftung` from `kontorahmen`) `bl` on(`fb`.`gegen_typ` = `bl`.`typ` and `fb`.`gegen_id` = `bl`.`id`))" + "Create": "CREATE VIEW `fibu_buchungen_alle` AS select `fb`.`buchungsart` AS `buchungsart`,`fb`.`typ` AS `typ`,`fb`.`id` AS `id`,if(`bl`.`datum` <> '',`bl`.`datum`,`fb`.`datum`) AS `datum`,`fb`.`gegen_typ` AS `doc_typ`,`fb`.`gegen_id` AS `doc_id`,`bl`.`belegnr` AS `doc_belegnr`,`fb`.`soll` AS `betrag`,`fb`.`waehrung` AS `waehrung` 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` from `rechnung` where `rechnung`.`belegnr` <> '' union select 'umsatz' AS `umsatz`,'gutschrift' AS `'gutschrift'`,`gutschrift`.`id` AS `id`,-`gutschrift`.`soll` AS `- ``openxe``.``gutschrift``.``soll```,`gutschrift`.`waehrung` AS `waehrung`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`datum` AS `datum` from `gutschrift` where `gutschrift`.`belegnr` <> '' union select 'abbuchung' AS `abbuchung`,'gutschrift' AS `rechnung`,`gutschrift`.`id` AS `id`,`gutschrift`.`soll` AS `- ``openxe``.``gutschrift``.``soll```,`gutschrift`.`waehrung` AS `waehrung`,'rechnung' AS `gutschrift`,`gutschrift`.`rechnungid` AS `rechnungid`,`gutschrift`.`datum` AS `datum` from `gutschrift` where `gutschrift`.`rechnungid` > 0 and `gutschrift`.`belegnr` <> '' union select 'abbuchung' AS `abbuchung`,'rechnung' AS `rechnung`,`gutschrift`.`rechnungid` AS `rechnungid`,-`gutschrift`.`soll` AS `- ``openxe``.``gutschrift``.``soll```,`gutschrift`.`waehrung` AS `waehrung`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`datum` AS `datum` from `gutschrift` where `gutschrift`.`rechnungid` > 0 and `gutschrift`.`belegnr` <> '' union select 'aufwand' AS `aufwand`,'verbindlichkeit' AS `verbindlichkeit`,`verbindlichkeit`.`id` AS `id`,-`verbindlichkeit`.`betrag` AS `- ``openxe``.``verbindlichkeit``.``betrag```,`verbindlichkeit`.`waehrung` AS `waehrung`,'verbindlichkeit' AS `verbindlichkeit`,`verbindlichkeit`.`id` AS `id`,`verbindlichkeit`.`rechnungsdatum` AS `rechnungsdatum` from `verbindlichkeit` where `verbindlichkeit`.`belegnr` <> '' union select 'abbuchung' AS `abbuchung`,`fibu_buchungen`.`von_typ` AS `von_typ`,`fibu_buchungen`.`von_id` AS `von_id`,-`fibu_buchungen`.`betrag` AS `- ``openxe``.``fibu_buchungen``.``betrag```,`fibu_buchungen`.`waehrung` AS `waehrung`,`fibu_buchungen`.`nach_typ` AS `nach_typ`,`fibu_buchungen`.`nach_id` AS `nach_id`,`fibu_buchungen`.`zeit` AS `zeit` 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 `betrag`,`fibu_buchungen`.`waehrung` AS `waehrung`,`fibu_buchungen`.`von_typ` AS `von_typ`,`fibu_buchungen`.`von_id` AS `von_id`,`fibu_buchungen`.`zeit` AS `zeit` from `fibu_buchungen`) `fb` left join (select `rechnung`.`datum` AS `datum`,'rechnung' AS `typ`,`rechnung`.`id` AS `id`,`rechnung`.`belegnr` AS `belegnr` from `rechnung` where `rechnung`.`belegnr` <> '' union select `gutschrift`.`datum` AS `datum`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`belegnr` AS `belegnr` from `gutschrift` where `gutschrift`.`belegnr` <> '' union select `verbindlichkeit`.`rechnungsdatum` AS `rechnungsdatum`,'verbindlichkeit' AS `verbindlichkeit`,`verbindlichkeit`.`id` AS `id`,`verbindlichkeit`.`belegnr` AS `belegnr` from `verbindlichkeit` where `verbindlichkeit`.`belegnr` <> '' union select `kontoauszuege`.`buchung` AS `buchung`,'kontoauszuege' AS `kontoauszuege`,`kontoauszuege`.`id` AS `id`,`kontoauszuege`.`buchungstext` AS `buchungstext` from `kontoauszuege` union select '','kontorahmen' AS `'kontorahmen'`,`kontorahmen`.`id` AS `id`,`kontorahmen`.`beschriftung` AS `beschriftung` from `kontorahmen`) `bl` on(`fb`.`gegen_typ` = `bl`.`typ` and `fb`.`gegen_id` = `bl`.`id`))" } ] } From 791a12b731f046a6dc17e3739d5f8f7ed00f34e6 Mon Sep 17 00:00:00 2001 From: OpenXE <> Date: Sun, 26 Mar 2023 13:23:15 +0200 Subject: [PATCH 10/61] Bugfix user avatar --- www/lib/class.image.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/www/lib/class.image.php b/www/lib/class.image.php index 71598c45..7d72e7ba 100644 --- a/www/lib/class.image.php +++ b/www/lib/class.image.php @@ -49,6 +49,7 @@ class image { $manipulator = new ImageManipulator($str); $type = mime_content_type($path); + $manipulator->resample($newwidth, $newheight, true, $upscale); /* @@ -200,7 +201,7 @@ class ImageManipulator public function resample($width, $height, $constrainProportions = true, $upscale = false, $keepformat = false) { if (!is_resource($this->image)) { - throw new RuntimeException('No image set'); +// throw new RuntimeException('No image set'); } if($keepformat) { @@ -340,9 +341,9 @@ class ImageManipulator */ protected function _replace($res) { - if (!is_resource($res)) { + /* if (!is_resource($res)) { throw new UnexpectedValueException('Invalid resource'); - } + }*/ if (is_resource($this->image)) { imagedestroy($this->image); } From 49dfd255e4aa03a5298002161a464911906fd2ce Mon Sep 17 00:00:00 2001 From: OpenXE <> Date: Sun, 26 Mar 2023 13:26:49 +0200 Subject: [PATCH 11/61] Bugfix briefpapier freitexte width --- www/lib/dokumente/class.briefpapier.php | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/www/lib/dokumente/class.briefpapier.php b/www/lib/dokumente/class.briefpapier.php index 464fe186..3b10cc26 100644 --- a/www/lib/dokumente/class.briefpapier.php +++ b/www/lib/dokumente/class.briefpapier.php @@ -1797,12 +1797,19 @@ class Briefpapier extends SuperFPDF { public function setStyleData($styleData){ $this->styleData = $styleData; - } + } private function getStyleElement($key){ - if(isset($this->styleData[$key]) && !empty($this->styleData[$key])) return $this->styleData[$key]; - - return $this->app->erp->Firmendaten($key); + $result = null; + if(isset($this->styleData[$key]) && !empty($this->styleData[$key])) { + $result = $this->styleData[$key]; + } else { + $result = $this->app->erp->Firmendaten($key); + } + if (empty($result)) { + $result = 0; + } + return($result); } public function renderDocument() { From 9a6ed1ae751a13ecf64af4e6be73e19e88cb2ea9 Mon Sep 17 00:00:00 2001 From: OpenXE <> Date: Mon, 27 Mar 2023 16:31:30 +0200 Subject: [PATCH 12/61] fibu_buchungen_alle with type and id of editable item --- upgrade/data/db_schema.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/upgrade/data/db_schema.json b/upgrade/data/db_schema.json index d38d55e5..d3a09d16 100644 --- a/upgrade/data/db_schema.json +++ b/upgrade/data/db_schema.json @@ -38235,7 +38235,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "'eur'", + "Default": "'EUR'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114488,7 +114488,7 @@ { "name": "fibu_buchungen_alle", "type": "VIEW", - "Create": "CREATE VIEW `fibu_buchungen_alle` AS select `fb`.`buchungsart` AS `buchungsart`,`fb`.`typ` AS `typ`,`fb`.`id` AS `id`,if(`bl`.`datum` <> '',`bl`.`datum`,`fb`.`datum`) AS `datum`,`fb`.`gegen_typ` AS `doc_typ`,`fb`.`gegen_id` AS `doc_id`,`bl`.`belegnr` AS `doc_belegnr`,`fb`.`soll` AS `betrag`,`fb`.`waehrung` AS `waehrung` 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` from `rechnung` where `rechnung`.`belegnr` <> '' union select 'umsatz' AS `umsatz`,'gutschrift' AS `'gutschrift'`,`gutschrift`.`id` AS `id`,-`gutschrift`.`soll` AS `- ``openxe``.``gutschrift``.``soll```,`gutschrift`.`waehrung` AS `waehrung`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`datum` AS `datum` from `gutschrift` where `gutschrift`.`belegnr` <> '' union select 'abbuchung' AS `abbuchung`,'gutschrift' AS `rechnung`,`gutschrift`.`id` AS `id`,`gutschrift`.`soll` AS `- ``openxe``.``gutschrift``.``soll```,`gutschrift`.`waehrung` AS `waehrung`,'rechnung' AS `gutschrift`,`gutschrift`.`rechnungid` AS `rechnungid`,`gutschrift`.`datum` AS `datum` from `gutschrift` where `gutschrift`.`rechnungid` > 0 and `gutschrift`.`belegnr` <> '' union select 'abbuchung' AS `abbuchung`,'rechnung' AS `rechnung`,`gutschrift`.`rechnungid` AS `rechnungid`,-`gutschrift`.`soll` AS `- ``openxe``.``gutschrift``.``soll```,`gutschrift`.`waehrung` AS `waehrung`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`datum` AS `datum` from `gutschrift` where `gutschrift`.`rechnungid` > 0 and `gutschrift`.`belegnr` <> '' union select 'aufwand' AS `aufwand`,'verbindlichkeit' AS `verbindlichkeit`,`verbindlichkeit`.`id` AS `id`,-`verbindlichkeit`.`betrag` AS `- ``openxe``.``verbindlichkeit``.``betrag```,`verbindlichkeit`.`waehrung` AS `waehrung`,'verbindlichkeit' AS `verbindlichkeit`,`verbindlichkeit`.`id` AS `id`,`verbindlichkeit`.`rechnungsdatum` AS `rechnungsdatum` from `verbindlichkeit` where `verbindlichkeit`.`belegnr` <> '' union select 'abbuchung' AS `abbuchung`,`fibu_buchungen`.`von_typ` AS `von_typ`,`fibu_buchungen`.`von_id` AS `von_id`,-`fibu_buchungen`.`betrag` AS `- ``openxe``.``fibu_buchungen``.``betrag```,`fibu_buchungen`.`waehrung` AS `waehrung`,`fibu_buchungen`.`nach_typ` AS `nach_typ`,`fibu_buchungen`.`nach_id` AS `nach_id`,`fibu_buchungen`.`zeit` AS `zeit` 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 `betrag`,`fibu_buchungen`.`waehrung` AS `waehrung`,`fibu_buchungen`.`von_typ` AS `von_typ`,`fibu_buchungen`.`von_id` AS `von_id`,`fibu_buchungen`.`zeit` AS `zeit` from `fibu_buchungen`) `fb` left join (select `rechnung`.`datum` AS `datum`,'rechnung' AS `typ`,`rechnung`.`id` AS `id`,`rechnung`.`belegnr` AS `belegnr` from `rechnung` where `rechnung`.`belegnr` <> '' union select `gutschrift`.`datum` AS `datum`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`belegnr` AS `belegnr` from `gutschrift` where `gutschrift`.`belegnr` <> '' union select `verbindlichkeit`.`rechnungsdatum` AS `rechnungsdatum`,'verbindlichkeit' AS `verbindlichkeit`,`verbindlichkeit`.`id` AS `id`,`verbindlichkeit`.`belegnr` AS `belegnr` from `verbindlichkeit` where `verbindlichkeit`.`belegnr` <> '' union select `kontoauszuege`.`buchung` AS `buchung`,'kontoauszuege' AS `kontoauszuege`,`kontoauszuege`.`id` AS `id`,`kontoauszuege`.`buchungstext` AS `buchungstext` from `kontoauszuege` union select '','kontorahmen' AS `'kontorahmen'`,`kontorahmen`.`id` AS `id`,`kontorahmen`.`beschriftung` AS `beschriftung` from `kontorahmen`) `bl` on(`fb`.`gegen_typ` = `bl`.`typ` and `fb`.`gegen_id` = `bl`.`id`))" + "Create": "CREATE VIEW `fibu_buchungen_alle` AS select `fb`.`buchungsart` AS `buchungsart`,`fb`.`typ` AS `typ`,`fb`.`id` AS `id`,if(`bl`.`datum` <> '',`bl`.`datum`,`fb`.`datum`) AS `datum`,`fb`.`gegen_typ` AS `doc_typ`,`fb`.`gegen_id` AS `doc_id`,`bl`.`belegnr` AS `doc_belegnr`,`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 `- ``openxe``.``gutschrift``.``soll```,`gutschrift`.`waehrung` AS `waehrung`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`datum` AS `datum`,'gutschrift' AS `edit_module`,`gutschrift`.`id` AS `edit_id` from `gutschrift` where `gutschrift`.`belegnr` <> '' union select 'abbuchung' AS `abbuchung`,'gutschrift' AS `rechnung`,`gutschrift`.`id` AS `id`,`gutschrift`.`soll` AS `- ``openxe``.``gutschrift``.``soll```,`gutschrift`.`waehrung` AS `waehrung`,'rechnung' AS `gutschrift`,`gutschrift`.`rechnungid` AS `rechnungid`,`gutschrift`.`datum` AS `datum`,'gutschrift' AS `edit_module`,`gutschrift`.`id` AS `edit_id` from `gutschrift` where `gutschrift`.`rechnungid` > 0 and `gutschrift`.`belegnr` <> '' union select 'abbuchung' AS `abbuchung`,'rechnung' AS `rechnung`,`gutschrift`.`rechnungid` AS `rechnungid`,-`gutschrift`.`soll` AS `- ``openxe``.``gutschrift``.``soll```,`gutschrift`.`waehrung` AS `waehrung`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`datum` AS `datum`,'gutschrift' AS `edit_module`,`gutschrift`.`id` AS `edit_id` from `gutschrift` where `gutschrift`.`rechnungid` > 0 and `gutschrift`.`belegnr` <> '' union select 'aufwand' AS `aufwand`,'verbindlichkeit' AS `verbindlichkeit`,`verbindlichkeit`.`id` AS `id`,-`verbindlichkeit`.`betrag` AS `- ``openxe``.``verbindlichkeit``.``betrag```,`verbindlichkeit`.`waehrung` AS `waehrung`,'verbindlichkeit' AS `verbindlichkeit`,`verbindlichkeit`.`id` AS `id`,`verbindlichkeit`.`rechnungsdatum` AS `rechnungsdatum`,'verbindlichkeit' AS `edit_module`,`verbindlichkeit`.`id` AS `edit_id` from `verbindlichkeit` where `verbindlichkeit`.`belegnr` <> '' union select 'abbuchung' AS `abbuchung`,`fibu_buchungen`.`von_typ` AS `von_typ`,`fibu_buchungen`.`von_id` AS `von_id`,-`fibu_buchungen`.`betrag` AS `- ``openxe``.``fibu_buchungen``.``betrag```,`fibu_buchungen`.`waehrung` AS `waehrung`,`fibu_buchungen`.`nach_typ` AS `nach_typ`,`fibu_buchungen`.`nach_id` AS `nach_id`,`fibu_buchungen`.`zeit` AS `zeit`,'fibu_buchungen' AS `edit_module`,`fibu_buchungen`.`id` AS `edit_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 `betrag`,`fibu_buchungen`.`waehrung` AS `waehrung`,`fibu_buchungen`.`von_typ` AS `von_typ`,`fibu_buchungen`.`von_id` AS `von_id`,`fibu_buchungen`.`zeit` AS `zeit`,'fibu_buchungen' AS `edit_module`,`fibu_buchungen`.`id` AS `edit_id` from `fibu_buchungen`) `fb` left join (select `rechnung`.`datum` AS `datum`,'rechnung' AS `typ`,`rechnung`.`id` AS `id`,`rechnung`.`belegnr` AS `belegnr` from `rechnung` where `rechnung`.`belegnr` <> '' union select `gutschrift`.`datum` AS `datum`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`belegnr` AS `belegnr` from `gutschrift` where `gutschrift`.`belegnr` <> '' union select `verbindlichkeit`.`rechnungsdatum` AS `rechnungsdatum`,'verbindlichkeit' AS `verbindlichkeit`,`verbindlichkeit`.`id` AS `id`,`verbindlichkeit`.`belegnr` AS `belegnr` from `verbindlichkeit` where `verbindlichkeit`.`belegnr` <> '' union select `kontoauszuege`.`buchung` AS `buchung`,'kontoauszuege' AS `kontoauszuege`,`kontoauszuege`.`id` AS `id`,`kontoauszuege`.`buchungstext` AS `buchungstext` from `kontoauszuege` union select '','kontorahmen' AS `'kontorahmen'`,`kontorahmen`.`id` AS `id`,`kontorahmen`.`beschriftung` AS `beschriftung` from `kontorahmen`) `bl` on(`fb`.`gegen_typ` = `bl`.`typ` and `fb`.`gegen_id` = `bl`.`id`))" } ] } From 1637bf965a7f48a2210ee17cb9fe82622c63b022 Mon Sep 17 00:00:00 2001 From: OpenXE <> Date: Tue, 28 Mar 2023 12:18:41 +0200 Subject: [PATCH 13/61] bugfix mustal default values forced lower case --- vendor/mustal/mustal_mysql_upgrade_tool.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vendor/mustal/mustal_mysql_upgrade_tool.php b/vendor/mustal/mustal_mysql_upgrade_tool.php index c181c084..3f344f53 100644 --- a/vendor/mustal/mustal_mysql_upgrade_tool.php +++ b/vendor/mustal/mustal_mysql_upgrade_tool.php @@ -469,9 +469,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]; } } From b7153c423c05127c5d47b404ea0c306bd7d9e266 Mon Sep 17 00:00:00 2001 From: OpenXE <> Date: Tue, 28 Mar 2023 12:30:57 +0200 Subject: [PATCH 14/61] fibu_buchungen added, rework of zahlungen auftrag, rechnung, gutschrift --- upgrade/data/db_schema.json | 41 +-- www/lib/class.erpapi.php | 32 +- www/pages/auftrag.php | 63 ++-- www/pages/content/fibu_buchungen_edit.tpl | 204 ++++++++++++ www/pages/content/fibu_buchungen_list.tpl | 10 + www/pages/content/kontoauszuege_edit.tpl | 2 +- www/pages/fibu_buchungen.php | 372 ++++++++++++++++++++++ www/pages/importvorlage.php | 2 - 8 files changed, 664 insertions(+), 62 deletions(-) create mode 100644 www/pages/content/fibu_buchungen_edit.tpl create mode 100644 www/pages/content/fibu_buchungen_list.tpl create mode 100644 www/pages/fibu_buchungen.php diff --git a/upgrade/data/db_schema.json b/upgrade/data/db_schema.json index d3a09d16..08f20d8d 100644 --- a/upgrade/data/db_schema.json +++ b/upgrade/data/db_schema.json @@ -8072,7 +8072,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "'eur'", + "Default": "'EUR'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10249,7 +10249,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "'eur'", + "Default": "'EUR'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21837,7 +21837,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "'eur'", + "Default": "'EUR'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27031,7 +27031,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "'eur'", + "Default": "'EUR'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32938,7 +32938,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "'eur'", + "Default": "'EUR'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44111,7 +44111,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "'eur'", + "Default": "'EUR'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60739,7 +60739,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "'eur'", + "Default": "'EUR'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65936,7 +65936,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "'eur'", + "Default": "'EUR'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68245,7 +68245,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "'eur'", + "Default": "'EUR'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72138,7 +72138,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "'eur'", + "Default": "'EUR'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74147,7 +74147,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "'eur'", + "Default": "'EUR'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81287,7 +81287,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "'eur'", + "Default": "'EUR'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83531,7 +83531,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "'eur'", + "Default": "'EUR'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104480,7 +104480,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "'eur'", + "Default": "'EUR'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107296,7 +107296,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "'eur'", + "Default": "'EUR'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110141,7 +110141,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "'eur'", + "Default": "'EUR'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114485,10 +114485,15 @@ "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", "type": "VIEW", - "Create": "CREATE VIEW `fibu_buchungen_alle` AS select `fb`.`buchungsart` AS `buchungsart`,`fb`.`typ` AS `typ`,`fb`.`id` AS `id`,if(`bl`.`datum` <> '',`bl`.`datum`,`fb`.`datum`) AS `datum`,`fb`.`gegen_typ` AS `doc_typ`,`fb`.`gegen_id` AS `doc_id`,`bl`.`belegnr` AS `doc_belegnr`,`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 `- ``openxe``.``gutschrift``.``soll```,`gutschrift`.`waehrung` AS `waehrung`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`datum` AS `datum`,'gutschrift' AS `edit_module`,`gutschrift`.`id` AS `edit_id` from `gutschrift` where `gutschrift`.`belegnr` <> '' union select 'abbuchung' AS `abbuchung`,'gutschrift' AS `rechnung`,`gutschrift`.`id` AS `id`,`gutschrift`.`soll` AS `- ``openxe``.``gutschrift``.``soll```,`gutschrift`.`waehrung` AS `waehrung`,'rechnung' AS `gutschrift`,`gutschrift`.`rechnungid` AS `rechnungid`,`gutschrift`.`datum` AS `datum`,'gutschrift' AS `edit_module`,`gutschrift`.`id` AS `edit_id` from `gutschrift` where `gutschrift`.`rechnungid` > 0 and `gutschrift`.`belegnr` <> '' union select 'abbuchung' AS `abbuchung`,'rechnung' AS `rechnung`,`gutschrift`.`rechnungid` AS `rechnungid`,-`gutschrift`.`soll` AS `- ``openxe``.``gutschrift``.``soll```,`gutschrift`.`waehrung` AS `waehrung`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`datum` AS `datum`,'gutschrift' AS `edit_module`,`gutschrift`.`id` AS `edit_id` from `gutschrift` where `gutschrift`.`rechnungid` > 0 and `gutschrift`.`belegnr` <> '' union select 'aufwand' AS `aufwand`,'verbindlichkeit' AS `verbindlichkeit`,`verbindlichkeit`.`id` AS `id`,-`verbindlichkeit`.`betrag` AS `- ``openxe``.``verbindlichkeit``.``betrag```,`verbindlichkeit`.`waehrung` AS `waehrung`,'verbindlichkeit' AS `verbindlichkeit`,`verbindlichkeit`.`id` AS `id`,`verbindlichkeit`.`rechnungsdatum` AS `rechnungsdatum`,'verbindlichkeit' AS `edit_module`,`verbindlichkeit`.`id` AS `edit_id` from `verbindlichkeit` where `verbindlichkeit`.`belegnr` <> '' union select 'abbuchung' AS `abbuchung`,`fibu_buchungen`.`von_typ` AS `von_typ`,`fibu_buchungen`.`von_id` AS `von_id`,-`fibu_buchungen`.`betrag` AS `- ``openxe``.``fibu_buchungen``.``betrag```,`fibu_buchungen`.`waehrung` AS `waehrung`,`fibu_buchungen`.`nach_typ` AS `nach_typ`,`fibu_buchungen`.`nach_id` AS `nach_id`,`fibu_buchungen`.`zeit` AS `zeit`,'fibu_buchungen' AS `edit_module`,`fibu_buchungen`.`id` AS `edit_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 `betrag`,`fibu_buchungen`.`waehrung` AS `waehrung`,`fibu_buchungen`.`von_typ` AS `von_typ`,`fibu_buchungen`.`von_id` AS `von_id`,`fibu_buchungen`.`zeit` AS `zeit`,'fibu_buchungen' AS `edit_module`,`fibu_buchungen`.`id` AS `edit_id` from `fibu_buchungen`) `fb` left join (select `rechnung`.`datum` AS `datum`,'rechnung' AS `typ`,`rechnung`.`id` AS `id`,`rechnung`.`belegnr` AS `belegnr` from `rechnung` where `rechnung`.`belegnr` <> '' union select `gutschrift`.`datum` AS `datum`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`belegnr` AS `belegnr` from `gutschrift` where `gutschrift`.`belegnr` <> '' union select `verbindlichkeit`.`rechnungsdatum` AS `rechnungsdatum`,'verbindlichkeit' AS `verbindlichkeit`,`verbindlichkeit`.`id` AS `id`,`verbindlichkeit`.`belegnr` AS `belegnr` from `verbindlichkeit` where `verbindlichkeit`.`belegnr` <> '' union select `kontoauszuege`.`buchung` AS `buchung`,'kontoauszuege' AS `kontoauszuege`,`kontoauszuege`.`id` AS `id`,`kontoauszuege`.`buchungstext` AS `buchungstext` from `kontoauszuege` union select '','kontorahmen' AS `'kontorahmen'`,`kontorahmen`.`id` AS `id`,`kontorahmen`.`beschriftung` AS `beschriftung` from `kontorahmen`) `bl` on(`fb`.`gegen_typ` = `bl`.`typ` and `fb`.`gegen_id` = `bl`.`id`))" + "Create": "CREATE VIEW `fibu_buchungen_alle` AS select `fb`.`buchungsart` AS `buchungsart`,`fb`.`typ` AS `typ`,`fb`.`id` AS `id`,if(`fibu_objekte`.`datum` <> '',`fibu_objekte`.`datum`,`fb`.`datum`) AS `datum`,`fb`.`gegen_typ` collate utf8mb3_general_ci AS `doc_typ`,`fb`.`gegen_id` AS `doc_id`,`fibu_objekte`.`info` AS `doc_belegnr`,`fb`.`soll` AS `betrag`,`fb`.`waehrung` AS `waehrung`,`fb`.`edit_module` collate utf8mb4_general_ci 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 `- ``openxe``.``gutschrift``.``soll```,`gutschrift`.`waehrung` AS `waehrung`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`datum` AS `datum`,'gutschrift' AS `edit_module`,`gutschrift`.`id` AS `edit_id` from `gutschrift` where `gutschrift`.`belegnr` <> '' union select 'abbuchung' AS `abbuchung`,'gutschrift' AS `rechnung`,`gutschrift`.`id` AS `id`,`gutschrift`.`soll` AS `- ``openxe``.``gutschrift``.``soll```,`gutschrift`.`waehrung` AS `waehrung`,'rechnung' AS `gutschrift`,`gutschrift`.`rechnungid` AS `rechnungid`,`gutschrift`.`datum` AS `datum`,'gutschrift' AS `edit_module`,`gutschrift`.`id` AS `edit_id` from `gutschrift` where `gutschrift`.`rechnungid` > 0 and `gutschrift`.`belegnr` <> '' union select 'abbuchung' AS `abbuchung`,'rechnung' AS `rechnung`,`gutschrift`.`rechnungid` AS `rechnungid`,-`gutschrift`.`soll` AS `- ``openxe``.``gutschrift``.``soll```,`gutschrift`.`waehrung` AS `waehrung`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`datum` AS `datum`,'gutschrift' AS `edit_module`,`gutschrift`.`id` AS `edit_id` from `gutschrift` where `gutschrift`.`rechnungid` > 0 and `gutschrift`.`belegnr` <> '' union select 'aufwand' AS `aufwand`,'verbindlichkeit' AS `verbindlichkeit`,`verbindlichkeit`.`id` AS `id`,-`verbindlichkeit`.`betrag` AS `- ``openxe``.``verbindlichkeit``.``betrag```,`verbindlichkeit`.`waehrung` AS `waehrung`,'verbindlichkeit' AS `verbindlichkeit`,`verbindlichkeit`.`id` AS `id`,`verbindlichkeit`.`rechnungsdatum` AS `rechnungsdatum`,'verbindlichkeit' AS `edit_module`,`verbindlichkeit`.`id` AS `edit_id` from `verbindlichkeit` where `verbindlichkeit`.`belegnr` <> '' union select 'zahlung' AS `zahlung`,'kontoauszuege' AS `kontoauszuege`,`kontoauszuege`.`id` AS `id`,-`kontoauszuege`.`soll` AS `- ``openxe``.``kontoauszuege``.``soll```,`kontoauszuege`.`waehrung` AS `waehrung`,'kontoauszuege' AS `kontoauszuege`,`kontoauszuege`.`id` AS `id`,`kontoauszuege`.`buchung` AS `buchung`,'kontoauszuege' AS `edit_module`,`kontoauszuege`.`id` AS `edit_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 `- ``openxe``.``fibu_buchungen``.``betrag```,`fibu_buchungen`.`waehrung` AS `waehrung`,`fibu_buchungen`.`nach_typ` AS `nach_typ`,`fibu_buchungen`.`nach_id` AS `nach_id`,`fibu_buchungen`.`zeit` AS `zeit`,'fibu_buchungen' AS `edit_module`,`fibu_buchungen`.`id` AS `edit_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 `betrag`,`fibu_buchungen`.`waehrung` AS `waehrung`,`fibu_buchungen`.`von_typ` AS `von_typ`,`fibu_buchungen`.`von_id` AS `von_id`,`fibu_buchungen`.`zeit` AS `zeit`,'fibu_buchungen' AS `edit_module`,`fibu_buchungen`.`id` AS `edit_id` from `fibu_buchungen`) `fb` left join `fibu_objekte` on(`fb`.`gegen_typ` = `fibu_objekte`.`typ` and `fb`.`gegen_id` = `fibu_objekte`.`id`))" + }, + { + "name": "fibu_objekte", + "type": "VIEW", + "Create": "CREATE VIEW `fibu_objekte` AS select `rechnung`.`datum` AS `datum`,'rechnung' collate utf8mb4_general_ci AS `typ`,`rechnung`.`id` AS `id`,`rechnung`.`belegnr` AS `info` from `rechnung` where `rechnung`.`belegnr` <> '' union select `gutschrift`.`datum` AS `datum`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`belegnr` AS `belegnr` from `gutschrift` where `gutschrift`.`belegnr` <> '' union select `verbindlichkeit`.`rechnungsdatum` AS `rechnungsdatum`,'verbindlichkeit' AS `verbindlichkeit`,`verbindlichkeit`.`id` AS `id`,`verbindlichkeit`.`belegnr` AS `belegnr` from `verbindlichkeit` where `verbindlichkeit`.`belegnr` <> '' union select `kontoauszuege`.`buchung` AS `buchung`,'kontoauszuege' AS `kontoauszuege`,`kontoauszuege`.`id` AS `id`,concat(`konten`.`kurzbezeichnung`,' - ',`kontoauszuege`.`buchungstext`) AS `buchungstext` from (`kontoauszuege` left join `konten` on(`konten`.`id` = `kontoauszuege`.`konto`)) union select '' AS `Name_exp_1`,'kontorahmen' AS `'kontorahmen'`,`kontorahmen`.`id` AS `id`,`kontorahmen`.`beschriftung` AS `beschriftung` from `kontorahmen`" } ] } diff --git a/www/lib/class.erpapi.php b/www/lib/class.erpapi.php index e3d96046..1e9eb848 100644 --- a/www/lib/class.erpapi.php +++ b/www/lib/class.erpapi.php @@ -1510,6 +1510,11 @@ public function NavigationHooks(&$menu) // return "replace(trim($spalte)+0,'.',',')"; } + function FormatUCfirst($spalte) + { + return ('CONCAT(UCASE(LEFT('.$spalte.', 1)),SUBSTRING('.$spalte.', 2))'); + } + static function add_alias(string $text, $alias = false) { if (empty($alias)) { return($text); @@ -7089,6 +7094,7 @@ title: 'Abschicken', $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','rechnungslauf'); $navarray['menu']['admin'][$menu]['sec'][] = array('Mahnwesen','mahnwesen','list'); @@ -36097,10 +36103,10 @@ function Firmendaten($field,$projekt="") * Gutschrift -> Rechnungid, Rechnung -> Auftragid */ - public function GetZahlungen(int $id, string $type, bool $cascade = false, string $lastlevel = 'auftrag') : array { + public function GetZahlungen(int $id, string $type, string $cascadelevel = '') : array { - if ($cascade) { - $documents = $this->GetZahlungenAssociatedDocuments($id, $type, $lastlevel); + if ($cascadelevel != '') { + $documents = $this->GetZahlungenAssociatedDocuments($id, $type, $cascadelevel); } else { $documents = array(array('id' => $id, 'type' => $type)); } @@ -36146,7 +36152,23 @@ function Firmendaten($field,$projekt="") * Auftrag: gesamtsumme, rechnung: soll, gutschrift: soll verbindlichkeit: betrag * returns array(array(betrag, waehrung)) one line per waehrung */ - public function GetSaldenDokument($id, $type, string $lastlevel = 'auftrag') : array { + public function GetSaldenDokument($id, $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 @@ -36155,7 +36177,7 @@ function Firmendaten($field,$projekt="") FROM fibu_buchungen_alle WHERE - typ = '".$type."' AND id = ".$id." + CONCAT(typ,id) IN ('".implode("','",$ids)."') GROUP BY waehrung"; diff --git a/www/pages/auftrag.php b/www/pages/auftrag.php index 5a336f42..6528b92d 100644 --- a/www/pages/auftrag.php +++ b/www/pages/auftrag.php @@ -3423,46 +3423,37 @@ class Auftrag extends GenAuftrag { $id = $this->app->Secure->GetGET('id'); - $zahlungen = $this->app->erp->GetZahlungen($id,'auftrag',true); + $zahlungen = $this->app->erp->GetZahlungen($id,'auftrag',true); + if (!empty($zahlungen)) { + $et = new EasyTable($this->app); -// print_r($zahlungen); + $et->headings = array('Datum','Beleg','Betrag','Währung'); - $result = ""; + foreach ($zahlungen as $zahlung) { + $row = array( + $zahlung['datum'], + " + ".ucfirst($zahlung['doc_typ'])." + ".$zahlung['doc_belegnr']." + ", + $zahlung['betrag'], + $zahlung['waehrung'] + ); + $et->AddRow($row); + } - foreach ($zahlungen as $zahlung) { - $result .= " - - - ".$zahlung['datum']." - - - - ".ucfirst($zahlung['doc_type'])." - ".$zahlung['doc_belegnr']." - - - - ".$zahlung['konto']." - - - - ".$zahlung['betrag']." ".$zahlung['waehrung']." - - - "; + $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',"")); } - - $saldo = $this->app->erp->GetSaldoDokument($id,'auftrag'); - - $result .= " - - - ".$saldo." - - - "; - - return("".$result."
    "); } function AuftragZahlungsmail() diff --git a/www/pages/content/fibu_buchungen_edit.tpl b/www/pages/content/fibu_buchungen_edit.tpl new file mode 100644 index 00000000..9a550898 --- /dev/null +++ b/www/pages/content/fibu_buchungen_edit.tpl @@ -0,0 +1,204 @@ +
    +
      +
    • +
    + +
    + [MESSAGE] +
    + [FORMHANDLEREVENT] +
    +
    +
    +
    +
    + {|Buchung|} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + {|Von|}: + + [VON] + + +
    + {|Nach|}: + + [NACH] + + +
    + {|Betrag|}: + + +
    + {|Währung|}: + + +
    + {|Benutzer|}: + + [BENUTZER] +
    + {|Zeit|}: + + [ZEIT] +
    + {|Internebemerkung|}: + + +
    +
    + +
    +
    +
    +
    + [TAB1] + +
    +
    + +
    + diff --git a/www/pages/content/fibu_buchungen_list.tpl b/www/pages/content/fibu_buchungen_list.tpl new file mode 100644 index 00000000..394c103a --- /dev/null +++ b/www/pages/content/fibu_buchungen_list.tpl @@ -0,0 +1,10 @@ +
    + +
    + [MESSAGE] + [TAB1] + [TAB1NEXT] +
    +
    diff --git a/www/pages/content/kontoauszuege_edit.tpl b/www/pages/content/kontoauszuege_edit.tpl index 9a3b966f..e8cab37b 100644 --- a/www/pages/content/kontoauszuege_edit.tpl +++ b/www/pages/content/kontoauszuege_edit.tpl @@ -17,7 +17,7 @@
    - {|Kontoauszüg Eintrag|} + {|Kontoauszug Eintrag|} + + + + + + + + + + + - - - -
    diff --git a/www/pages/fibu_buchungen.php b/www/pages/fibu_buchungen.php new file mode 100644 index 00000000..19fff834 --- /dev/null +++ b/www/pages/fibu_buchungen.php @@ -0,0 +1,372 @@ +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->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_tabelle": + $allowed['fibu_buchungen_list'] = array('list'); + $heading = array('','','Von_typ', 'Von_id', 'Nach_typ', 'Nach_id', 'Betrag', 'Waehrung', 'Benutzer', 'Zeit', 'Internebemerkung', '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('f.id','f.id','f.von_typ', 'f.von_id', 'f.nach_typ', 'f.nach_id', 'f.betrag', 'f.waehrung', 'f.benutzer', 'f.zeit', 'f.internebemerkung'); + $searchsql = array('f.von_typ', 'f.von_id', 'f.nach_typ', 'f.nach_id', 'f.betrag', 'f.waehrung', 'f.benutzer', 'f.zeit', 'f.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 SQL_CALC_FOUND_ROWS f.id, $dropnbox, f.von_typ, f.von_id, f.nach_typ, f.nach_id, f.betrag, f.waehrung, f.benutzer, f.zeit, f.internebemerkung, f.id FROM fibu_buchungen f"; + + $where = "1"; + $count = "SELECT count(DISTINCT id) FROM fibu_buchungen WHERE $where"; +// $groupby = ""; + + break; + 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_typ', 'f.betrag', 'f.waehrung'); + $searchsql = array('f.buchungsart', 'f.typ', 'f.datum', 'f.doc_typ', 'f.doc_belegnr'); + + $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_belegnr), + ".$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_wahl": + $allowed['fibu_buchungen_wahl'] = array('list'); + $heading = array('', '', 'Datum', 'Typ', 'Beleg', 'Von','Nach', 'Menü'); + $width = array( '1%','1%','1%', '20%', '80%', '1%', '1%', '%1' ); + + $findcols = array('f.id','f.id','f.typ'); + $searchsql = array('f.buchungsart', 'f.typ', 'f.datum', 'f.doc_typ', 'f.doc_belegnr'); + + $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(DISTINCT id) FROM fibu_buchungen_alle WHERE $where"; +// $groupby = ""; + + break; + } + + $erg = false; + + foreach ($erlaubtevars as $k => $v) { + if (isset($$v)) { + $erg[$v] = $$v; + } + } + return $erg; + } + + 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"); + + $this->app->erp->MenuEintrag("index.php", "Zurück"); + + // 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_list', "show", "", "", basename(__FILE__), __CLASS__); + $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 + * If id is empty, create a new one + */ + + 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", "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['benutzer'] = $this->app->User->GetId(); + $input['zeit'] = date("Y-m-d H:i"); + $input['betrag'] = $this->app->erp->ReplaceBetrag(true,$input['betrag']); + $input['zeit'] = date("Y-m-d H:i"); + + $input['internebemerkung'] = $this->app->DB->real_escape_string($input['internebemerkung']); + + $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.
    "); + } + } + + + // 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, + 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->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['zeit'] = $this->app->Secure->GetPOST('zeit'); + $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']); + + } + +} diff --git a/www/pages/importvorlage.php b/www/pages/importvorlage.php index 0689e2ea..d09a4a88 100644 --- a/www/pages/importvorlage.php +++ b/www/pages/importvorlage.php @@ -5148,8 +5148,6 @@ class Importvorlage extends GenImportvorlage { implode("', '",array_values($row)). "')"; - $msg .= $sql; - $result = $this->app->DB->Update($sql); } } else { From 5bc7a64c8c9716f047d442ccdcdb2118d46d519d Mon Sep 17 00:00:00 2001 From: OpenXE <> Date: Thu, 30 Mar 2023 11:19:46 +0200 Subject: [PATCH 15/61] mustal improvement on collation handling --- vendor/mustal/mustal_mysql_upgrade_tool.php | 35 ++++++++++++++++----- 1 file changed, 28 insertions(+), 7 deletions(-) diff --git a/vendor/mustal/mustal_mysql_upgrade_tool.php b/vendor/mustal/mustal_mysql_upgrade_tool.php index 3f344f53..9894a908 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"; $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']."TABLE"; + } + $columns[] = $column; // Add column to list of columns } $table['columns'] = $columns; @@ -402,9 +408,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 @@ -423,7 +431,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': @@ -454,8 +462,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: @@ -744,6 +754,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($string_type,$type) === 0) { + return(true); + } + } + return(false); +} + From 95d26d5c6e451b2507711a87a60965e55eccc646 Mon Sep 17 00:00:00 2001 From: OpenXE <> Date: Thu, 30 Mar 2023 11:24:14 +0200 Subject: [PATCH 16/61] database upgrade to utf8mb4 --- upgrade/data/db_schema.json | 29696 +++++++++++++++++++--------------- upgrade/data/upgrade.php | 4 + 2 files changed, 16619 insertions(+), 13081 deletions(-) diff --git a/upgrade/data/db_schema.json b/upgrade/data/db_schema.json index 08f20d8d..15ce8345 100644 --- a/upgrade/data/db_schema.json +++ b/upgrade/data/db_schema.json @@ -5,6 +5,7 @@ "tables": [ { "name": "abrechnungsartikel", + "collation": "utf8mb4_unicode_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,29 +36,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "nummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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,29 +80,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "steuerklasse", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "rabatt", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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": "" @@ -219,10 +220,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -230,10 +231,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -252,10 +253,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -263,10 +264,10 @@ { "Field": "dokument", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -274,10 +275,10 @@ { "Field": "preisart", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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": "" @@ -329,10 +330,10 @@ { "Field": "waehrung", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -363,12 +364,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "adresse", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "adresse", "artikel" @@ -378,6 +383,7 @@ }, { "name": "abrechnungsartikel_gruppe", + "collation": "utf8mb4_unicode_ci", "type": "BASE TABLE", "columns": [ { @@ -386,18 +392,18 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "beschreibung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -405,10 +411,10 @@ { "Field": "beschreibung2", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -426,11 +432,11 @@ }, { "Field": "ansprechpartner", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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,6 +522,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -524,6 +532,7 @@ }, { "name": "abschlagsrechnung_rechnung", + "collation": "utf8mb4_unicode_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": "" @@ -561,11 +570,11 @@ }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -574,18 +583,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "rechnung", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "rechnung" ] }, { "Key_name": "auftrag", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "auftrag" ] @@ -594,6 +609,7 @@ }, { "name": "accordion", + "collation": "utf8mb4_unicode_ci", "type": "BASE TABLE", "columns": [ { @@ -602,29 +618,29 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "target", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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,6 +660,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -652,6 +670,7 @@ }, { "name": "adapterbox", + "collation": "utf8mb4_unicode_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": "" @@ -668,10 +687,10 @@ { "Field": "bezeichnung", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -679,10 +698,10 @@ { "Field": "verwendenals", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -690,10 +709,10 @@ { "Field": "baudrate", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -701,10 +720,10 @@ { "Field": "model", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -712,10 +731,10 @@ { "Field": "seriennummer", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -723,10 +742,10 @@ { "Field": "ipadresse", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -734,10 +753,10 @@ { "Field": "netmask", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -745,10 +764,10 @@ { "Field": "gateway", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -756,10 +775,10 @@ { "Field": "dns", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -789,10 +808,10 @@ { "Field": "ssid", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -800,10 +819,10 @@ { "Field": "passphrase", "Type": "varchar(256)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -814,18 +833,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "tmpip", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -834,6 +853,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -842,6 +863,7 @@ }, { "name": "adapterbox_log", + "collation": "utf8mb4_unicode_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": "" @@ -858,10 +880,10 @@ { "Field": "ip", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -869,10 +891,10 @@ { "Field": "meldung", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -880,10 +902,10 @@ { "Field": "seriennummer", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -891,10 +913,10 @@ { "Field": "device", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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,6 +936,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -922,6 +946,7 @@ }, { "name": "adapterbox_request_log", + "collation": "utf8mb4_unicode_ci", "type": "BASE TABLE", "columns": [ { @@ -930,51 +955,51 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "auth", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "validpass", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "device", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "digets", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -982,10 +1007,10 @@ { "Field": "ip", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1016,6 +1041,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -1024,6 +1051,7 @@ }, { "name": "adresse", + "collation": "utf8mb4_unicode_ci", "type": "BASE TABLE", "columns": [ { @@ -1032,18 +1060,18 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "typ", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1051,10 +1079,10 @@ { "Field": "marketingsperre", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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": "" @@ -1084,54 +1112,54 @@ { "Field": "sprache", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "abteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "unterabteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ansprechpartner", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1139,21 +1167,21 @@ { "Field": "land", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "strasse", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1161,10 +1189,10 @@ { "Field": "ort", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1172,10 +1200,10 @@ { "Field": "plz", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1183,10 +1211,10 @@ { "Field": "telefon", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1194,10 +1222,10 @@ { "Field": "telefax", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1205,21 +1233,21 @@ { "Field": "mobil", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "email", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1227,10 +1255,10 @@ { "Field": "ustid", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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": "" @@ -1260,21 +1288,21 @@ { "Field": "sonstiges", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "adresszusatz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1285,18 +1313,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "steuer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1314,33 +1342,33 @@ }, { "Field": "kundennummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferantennummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "mitarbeiternummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1348,10 +1376,10 @@ { "Field": "konto", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1359,32 +1387,32 @@ { "Field": "blz", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bank", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "inhaber", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1392,10 +1420,10 @@ { "Field": "swift", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1403,54 +1431,54 @@ { "Field": "iban", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "waehrung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "paypal", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "paypalinhaber", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "paypalwaehrung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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": "" @@ -1480,10 +1508,10 @@ { "Field": "zahlungsweise", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1491,10 +1519,10 @@ { "Field": "zahlungszieltage", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1502,10 +1530,10 @@ { "Field": "zahlungszieltageskonto", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1513,10 +1541,10 @@ { "Field": "zahlungszielskonto", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1524,10 +1552,10 @@ { "Field": "versandart", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1535,10 +1563,10 @@ { "Field": "kundennummerlieferant", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1546,10 +1574,10 @@ { "Field": "zahlungsweiselieferant", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1557,10 +1585,10 @@ { "Field": "zahlungszieltagelieferant", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1568,10 +1596,10 @@ { "Field": "zahlungszieltageskontolieferant", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1579,10 +1607,10 @@ { "Field": "zahlungszielskontolieferant", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1590,10 +1618,10 @@ { "Field": "versandartlieferant", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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": "" @@ -1623,32 +1651,32 @@ { "Field": "webid", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "vorname", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kennung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1656,10 +1684,10 @@ { "Field": "sachkonto", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1667,10 +1695,10 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1678,10 +1706,10 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1689,10 +1717,10 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1700,10 +1728,10 @@ { "Field": "filiale", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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,18 +1753,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "verbandsnummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1744,10 +1772,10 @@ { "Field": "abweichendeemailab", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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": "" @@ -1777,21 +1805,21 @@ { "Field": "infoauftragserfassung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "mandatsreferenz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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": "" @@ -1820,11 +1848,11 @@ }, { "Field": "glaeubigeridentnr", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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": "" @@ -1964,10 +1992,10 @@ { "Field": "rechnung_vorname", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1975,10 +2003,10 @@ { "Field": "rechnung_name", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1986,10 +2014,10 @@ { "Field": "rechnung_titel", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1997,10 +2025,10 @@ { "Field": "rechnung_typ", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2008,10 +2036,10 @@ { "Field": "rechnung_strasse", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2019,10 +2047,10 @@ { "Field": "rechnung_ort", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2030,10 +2058,10 @@ { "Field": "rechnung_plz", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2041,10 +2069,10 @@ { "Field": "rechnung_ansprechpartner", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2052,10 +2080,10 @@ { "Field": "rechnung_land", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2063,10 +2091,10 @@ { "Field": "rechnung_abteilung", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2074,10 +2102,10 @@ { "Field": "rechnung_unterabteilung", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2085,10 +2113,10 @@ { "Field": "rechnung_adresszusatz", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2096,10 +2124,10 @@ { "Field": "rechnung_telefon", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2107,10 +2135,10 @@ { "Field": "rechnung_telefax", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2118,10 +2146,10 @@ { "Field": "rechnung_anschreiben", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2129,10 +2157,10 @@ { "Field": "rechnung_email", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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": "" @@ -2173,32 +2201,32 @@ { "Field": "liefersperregrund", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "mlmpositionierung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "steuernummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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": "" @@ -2228,10 +2256,10 @@ { "Field": "mlmabrechnung", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2239,10 +2267,10 @@ { "Field": "mlmwaehrungauszahlung", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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": "" @@ -2283,10 +2311,10 @@ { "Field": "logfile", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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": "" @@ -2360,10 +2388,10 @@ { "Field": "rabattinformation", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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": "" @@ -2426,10 +2454,10 @@ { "Field": "internetseite", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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": "" @@ -2690,10 +2718,10 @@ { "Field": "titel", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2701,10 +2729,10 @@ { "Field": "anschreiben", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2712,10 +2740,10 @@ { "Field": "nachname", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2745,10 +2773,10 @@ { "Field": "lieferantennummerbeikunde", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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": "" @@ -2800,10 +2828,10 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2811,10 +2839,10 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2822,10 +2850,10 @@ { "Field": "freifeld6", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2833,10 +2861,10 @@ { "Field": "freifeld7", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2844,10 +2872,10 @@ { "Field": "freifeld8", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2855,10 +2883,10 @@ { "Field": "freifeld9", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2866,10 +2894,10 @@ { "Field": "freifeld10", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2888,10 +2916,10 @@ { "Field": "angebot_cc", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2899,10 +2927,10 @@ { "Field": "auftrag_cc", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2910,10 +2938,10 @@ { "Field": "rechnung_cc", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2921,10 +2949,10 @@ { "Field": "gutschrift_cc", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2932,10 +2960,10 @@ { "Field": "lieferschein_cc", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2943,10 +2971,10 @@ { "Field": "bestellung_cc", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2954,10 +2982,10 @@ { "Field": "angebot_fax_cc", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2965,10 +2993,10 @@ { "Field": "auftrag_fax_cc", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2976,10 +3004,10 @@ { "Field": "rechnung_fax_cc", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2987,10 +3015,10 @@ { "Field": "gutschrift_fax_cc", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2998,10 +3026,10 @@ { "Field": "lieferschein_fax_cc", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3009,10 +3037,10 @@ { "Field": "bestellung_fax_cc", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3031,10 +3059,10 @@ { "Field": "abpermail", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3053,10 +3081,10 @@ { "Field": "kassierernummer", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3097,10 +3125,10 @@ { "Field": "mandatsreferenzart", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3108,10 +3136,10 @@ { "Field": "mandatsreferenzwdhart", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3130,10 +3158,10 @@ { "Field": "kundennummer_buchhaltung", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3141,10 +3169,10 @@ { "Field": "lieferantennummer_buchhaltung", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3163,10 +3191,10 @@ { "Field": "zahlungsweiseabo", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3174,10 +3202,10 @@ { "Field": "bundesland", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3185,10 +3213,10 @@ { "Field": "mandatsreferenzhinweis", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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": "" @@ -3229,10 +3257,10 @@ { "Field": "umsatzsteuer_lieferant", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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": "" @@ -3262,10 +3290,10 @@ { "Field": "art", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3284,10 +3312,10 @@ { "Field": "freifeld11", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3295,10 +3323,10 @@ { "Field": "freifeld12", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3306,10 +3334,10 @@ { "Field": "freifeld13", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3317,10 +3345,10 @@ { "Field": "freifeld14", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3328,10 +3356,10 @@ { "Field": "freifeld15", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3339,10 +3367,10 @@ { "Field": "freifeld16", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3350,10 +3378,10 @@ { "Field": "freifeld17", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3361,10 +3389,10 @@ { "Field": "freifeld18", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3372,10 +3400,10 @@ { "Field": "freifeld19", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3383,10 +3411,10 @@ { "Field": "freifeld20", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3394,10 +3422,10 @@ { "Field": "angebot_email", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3405,10 +3433,10 @@ { "Field": "auftrag_email", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3416,10 +3444,10 @@ { "Field": "rechnungs_email", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3427,10 +3455,10 @@ { "Field": "gutschrift_email", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3438,10 +3466,10 @@ { "Field": "lieferschein_email", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3449,10 +3477,10 @@ { "Field": "bestellung_email", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3471,10 +3499,10 @@ { "Field": "hinweistextlieferant", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3493,10 +3521,10 @@ { "Field": "hinweis_einfuegen", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3515,10 +3543,10 @@ { "Field": "gln", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3526,10 +3554,10 @@ { "Field": "rechnung_gln", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3548,10 +3576,10 @@ { "Field": "lieferbedingung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3581,10 +3609,10 @@ { "Field": "zollinformationen", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3592,10 +3620,10 @@ { "Field": "bundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3603,10 +3631,10 @@ { "Field": "rechnung_bundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3615,48 +3643,64 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "name", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "name" ] }, { "Key_name": "projekt", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "projekt" ] }, { "Key_name": "kundennummer", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "kundennummer" ] }, { "Key_name": "lieferantennummer", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "lieferantennummer" ] }, { "Key_name": "usereditid", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "usereditid" ] }, { "Key_name": "plz", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "plz" ] }, { "Key_name": "email", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "email" ] @@ -3665,6 +3709,7 @@ }, { "name": "adresse_abosammelrechnungen", + "collation": "utf8mb4_unicode_ci", "type": "BASE TABLE", "columns": [ { @@ -3673,18 +3718,18 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3737,12 +3782,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "adresse", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "adresse" ] @@ -3751,6 +3800,7 @@ }, { "name": "adresse_accounts", + "collation": "utf8mb4_unicode_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": "" @@ -3789,10 +3839,10 @@ { "Field": "bezeichnung", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3800,10 +3850,10 @@ { "Field": "art", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3811,10 +3861,10 @@ { "Field": "url", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3822,10 +3872,10 @@ { "Field": "benutzername", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3833,10 +3883,10 @@ { "Field": "passwort", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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,12 +3928,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "adresse", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "adresse" ] @@ -3892,6 +3946,7 @@ }, { "name": "adresse_filter", + "collation": "utf8mb4_unicode_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": "" @@ -3908,10 +3963,10 @@ { "Field": "bezeichnung", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3953,6 +4008,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -3961,6 +4018,7 @@ }, { "name": "adresse_filter_gruppen", + "collation": "utf8mb4_unicode_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,12 +4091,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "filter", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "filter" ] @@ -4047,6 +4109,7 @@ }, { "name": "adresse_filter_positionen", + "collation": "utf8mb4_unicode_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": "" @@ -4085,10 +4148,10 @@ { "Field": "typ", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4096,10 +4159,10 @@ { "Field": "typ2", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4129,10 +4192,10 @@ { "Field": "parameter1", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4140,10 +4203,10 @@ { "Field": "parameter2", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4151,10 +4214,10 @@ { "Field": "parameter3", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4174,18 +4237,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "filter", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "filter" ] }, { "Key_name": "gruppe", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "gruppe" ] @@ -4194,6 +4263,7 @@ }, { "name": "adresse_import", + "collation": "utf8mb4_unicode_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": "" @@ -4210,76 +4280,76 @@ { "Field": "typ", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ansprechpartner", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "abteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "unterabteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "adresszusatz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "strasse", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4287,21 +4357,21 @@ { "Field": "plz", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ort", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4309,10 +4379,10 @@ { "Field": "land", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4320,10 +4390,10 @@ { "Field": "telefon", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4331,10 +4401,10 @@ { "Field": "telefax", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4342,10 +4412,10 @@ { "Field": "email", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4353,21 +4423,21 @@ { "Field": "mobil", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "internetseite", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4375,10 +4445,10 @@ { "Field": "ustid", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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,6 +4501,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -4439,6 +4511,7 @@ }, { "name": "adresse_kontakhistorie", + "collation": "utf8mb4_unicode_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,18 +4531,18 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "grund", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4477,21 +4550,21 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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,12 +4595,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "adresse", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "adresse" ] @@ -4536,6 +4613,7 @@ }, { "name": "adresse_kontakte", + "collation": "utf8mb4_unicode_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": "" @@ -4563,10 +4641,10 @@ { "Field": "bezeichnung", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4574,10 +4652,10 @@ { "Field": "kontakt", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4586,12 +4664,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "adresse", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "adresse" ] @@ -4600,6 +4682,7 @@ }, { "name": "adresse_rolle", + "collation": "utf8mb4_unicode_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,51 +4713,51 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "subjekt", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "praedikat", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "objekt", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "parameter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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,18 +4788,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "adresse", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "adresse" ] }, { "Key_name": "projekt", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "projekt" ] @@ -4725,6 +4814,7 @@ }, { "name": "adresse_typ", + "collation": "utf8mb4_unicode_ci", "type": "BASE TABLE", "columns": [ { @@ -4733,29 +4823,29 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "type", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4808,6 +4898,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -4816,6 +4908,7 @@ }, { "name": "adressetiketten", + "collation": "utf8mb4_unicode_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": "" @@ -4853,11 +4946,11 @@ }, { "Field": "verwenden_als", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4866,6 +4959,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -4874,6 +4969,7 @@ }, { "name": "aktionscode_liste", + "collation": "utf8mb4_unicode_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": "" @@ -4890,10 +4986,10 @@ { "Field": "code", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4901,10 +4997,10 @@ { "Field": "beschriftung", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4923,10 +5019,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4935,6 +5031,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -4943,6 +5041,7 @@ }, { "name": "amainvoice_config", + "collation": "utf8mb4_unicode_ci", "type": "BASE TABLE", "columns": [ { @@ -4951,29 +5050,29 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "UNI", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "value", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4982,12 +5081,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "name", + "Index_type": "HASH", + "Non_unique": "", "columns": [ "name" ] @@ -4996,6 +5099,7 @@ }, { "name": "amainvoice_files", + "collation": "utf8mb4_unicode_ci", "type": "BASE TABLE", "columns": [ { @@ -5004,18 +5108,18 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "filename", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5023,10 +5127,10 @@ { "Field": "type", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5034,10 +5138,10 @@ { "Field": "status", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5057,12 +5161,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "filename", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "filename" ] @@ -5071,6 +5179,7 @@ }, { "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": "" @@ -5108,11 +5217,11 @@ }, { "Field": "seller_sku", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5120,10 +5229,10 @@ { "Field": "asin", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5154,18 +5263,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "article_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "article_id" ] }, { "Key_name": "seller_sku", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "seller_sku" ] @@ -5174,6 +5289,7 @@ }, { "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,12 +5362,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "shopid", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "shopid", "auftrag", @@ -5262,6 +5382,7 @@ }, { "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": "" @@ -5289,10 +5410,10 @@ { "Field": "reportid", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5300,32 +5421,32 @@ { "Field": "requestreportid", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "reporttype", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "marketplaces", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5333,21 +5454,21 @@ { "Field": "requesttype", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "report_processing_status", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "'_done_'", + "Default": "''_done_''", "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,18 +5545,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "report_options", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5444,12 +5565,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "shop_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "shop_id", "reportid" @@ -5457,18 +5582,24 @@ }, { "Key_name": "reporttype", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "reporttype" ] }, { "Key_name": "requestreportid", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "requestreportid" ] }, { "Key_name": "created_at", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "created_at" ] @@ -5477,6 +5608,7 @@ }, { "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": "" @@ -5504,10 +5636,10 @@ { "Field": "report_type", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5515,10 +5647,10 @@ { "Field": "schedule", "Type": "varchar(12)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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,12 +5692,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "shop_id", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "shop_id", "report_type", @@ -5578,6 +5714,7 @@ }, { "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": "" @@ -5605,10 +5742,10 @@ { "Field": "orderid", "Type": "varchar(19)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5616,10 +5753,10 @@ { "Field": "orderitemid", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5627,10 +5764,10 @@ { "Field": "merchantorderid", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5638,10 +5775,10 @@ { "Field": "merchantorderitemid", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5649,21 +5786,21 @@ { "Field": "shipmentitemid", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "sku", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5671,10 +5808,10 @@ { "Field": "carrier", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5682,10 +5819,10 @@ { "Field": "currency", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5693,10 +5830,10 @@ { "Field": "tracking_number", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5704,10 +5841,10 @@ { "Field": "sales_channel", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5715,10 +5852,10 @@ { "Field": "fulfillment_channel", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5726,10 +5863,10 @@ { "Field": "fulfillment_center_id", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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,194 +5899,194 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ship_address_1", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ship_address_2", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ship_address_3", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ship_city", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ship_state", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ship_postal_code", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ship_country", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ship_phone_number", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bill_address_1", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bill_address_2", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bill_address_3", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bill_city", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bill_state", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bill_postal_code", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bill_country", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "recipient_name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "buyer_name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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,18 +6183,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "shop_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "shop_id" ] }, { "Key_name": "orderid", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "orderid" ] @@ -6066,6 +6209,7 @@ }, { "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": "" @@ -6093,10 +6237,10 @@ { "Field": "orderid", "Type": "varchar(19)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6104,10 +6248,10 @@ { "Field": "sku", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6115,10 +6259,10 @@ { "Field": "transaction_type", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6126,10 +6270,10 @@ { "Field": "fullrow", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6137,10 +6281,10 @@ { "Field": "hash_sha1", "Type": "varchar(40)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6258,10 +6402,10 @@ { "Field": "invoicenumber", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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,30 +6447,40 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "orderid", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "orderid" ] }, { "Key_name": "hash_sha1", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "hash_sha1" ] }, { "Key_name": "transaction_type", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "transaction_type" ] }, { "Key_name": "position_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "position_id" ] @@ -6335,6 +6489,7 @@ }, { "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": "" @@ -6361,22 +6516,22 @@ }, { "Field": "orderid", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "varchar(128)", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "vat_invoice_number", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6394,77 +6549,77 @@ }, { "Field": "from_city", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "from_state", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "from_country", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "from_postal_code", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "from_location_code", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "seller_tax_registration", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "buyer_tax_registration", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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,12 +6650,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "shopid", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "shopid", "orderid" @@ -6510,6 +6669,7 @@ }, { "name": "amazoninvoice_position", + "collation": "utf8mb4_unicode_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": "" @@ -6526,10 +6686,10 @@ { "Field": "doctype", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6558,704 +6718,704 @@ }, { "Field": "inv_rech_nr", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "inv_date", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "amazonorderid", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "shipmentdate", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "buyeremail", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "buyerphonenumber", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "buyername", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "sku", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "productname", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "quantitypurchased", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "quantityshipped", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "currency", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "mwst", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "taxrate", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "brutto_total", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "netto_total", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "tax_total", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "itemprice", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "itemprice_netto", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "itemprice_tax", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "shippingprice", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "shippingprice_netto", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "shippingprice_tax", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "giftwrapprice", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "giftwrapprice_netto", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "giftwrapprice_tax", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "itempromotiondiscount", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "itempromotiondiscount_netto", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "itempromotiondiscount_tax", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "shippromotiondiscount", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "shippromotiondiscount_netto", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "shippromotiondiscount_tax", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "giftwrappromotiondiscount", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "giftwrappromotiondiscount_netto", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "giftwrappromotiondiscount_tax", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "shipservicelevel", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "recipientname", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "shipaddress1", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "shipaddress2", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "shipaddress3", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "shipcity", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "shipstate", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "shippostalcode", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "shipcountry", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "shipphonenumber", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "billaddress1", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "billaddress2", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "billaddress3", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "billcity", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "billstate", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "billpostalcode", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "billcountry", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "carrier", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "trackingnumber", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "fulfillmentcenterid", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "fulfillmentchannel", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "saleschannel", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "asin", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "conditiontype", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "quantityavailable", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "isbusinessorder", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "uid", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "vatcheck", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "documentlink", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7273,121 +7433,121 @@ }, { "Field": "rem_gs_nr", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "orderid", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "rem_date", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "returndate", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "buyercompanyname", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "quantity", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "remreturnshipcost", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "remsondererstattung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "itempromotionid", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "reason", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "rem_gs_nr_real", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7418,6 +7578,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -7426,6 +7588,7 @@ }, { "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,51 +7608,51 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "projekt", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "belegnr", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "auftrag", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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": "" @@ -7508,21 +7671,21 @@ { "Field": "freitext", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "status", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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,194 +7707,194 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "abteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "unterabteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "strasse", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "adresszusatz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ansprechpartner", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "plz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ort", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "land", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ustid", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "email", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "telefon", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "telefax", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "betreff", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kundennummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versandart", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versand", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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,29 +7927,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versendet_per", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versendet_durch", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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": "" @@ -7837,11 +8000,11 @@ }, { "Field": "internebezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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": "" @@ -7871,32 +8034,32 @@ { "Field": "aktion", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "vertrieb", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "anschreiben", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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": "" @@ -8068,11 +8231,11 @@ }, { "Field": "waehrung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "'EUR'", + "Default": "''EUR''", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8080,10 +8243,10 @@ { "Field": "typ", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8102,10 +8265,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8113,10 +8276,10 @@ { "Field": "sprache", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8124,10 +8287,10 @@ { "Field": "bodyzusatz", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8135,10 +8298,10 @@ { "Field": "lieferbedingung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8146,10 +8309,10 @@ { "Field": "titel", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8157,10 +8320,10 @@ { "Field": "bundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8169,6 +8332,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -8177,6 +8342,7 @@ }, { "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,29 +8384,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "nummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8248,10 +8414,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8259,10 +8425,10 @@ { "Field": "internerkommentar", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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": "" @@ -8292,10 +8458,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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,18 +8494,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "steuertext", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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": "" @@ -8358,10 +8524,10 @@ { "Field": "erloese", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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": "" @@ -8446,10 +8612,10 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8457,10 +8623,10 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8468,10 +8634,10 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8479,10 +8645,10 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8490,10 +8656,10 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8501,10 +8667,10 @@ { "Field": "freifeld6", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8512,10 +8678,10 @@ { "Field": "freifeld7", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8523,10 +8689,10 @@ { "Field": "freifeld8", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8534,10 +8700,10 @@ { "Field": "freifeld9", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8545,10 +8711,10 @@ { "Field": "freifeld10", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8556,10 +8722,10 @@ { "Field": "freifeld11", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8567,10 +8733,10 @@ { "Field": "freifeld12", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8578,10 +8744,10 @@ { "Field": "freifeld13", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8589,10 +8755,10 @@ { "Field": "freifeld14", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8600,10 +8766,10 @@ { "Field": "freifeld15", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8611,10 +8777,10 @@ { "Field": "freifeld16", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8622,10 +8788,10 @@ { "Field": "freifeld17", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8633,10 +8799,10 @@ { "Field": "freifeld18", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8644,10 +8810,10 @@ { "Field": "freifeld19", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8655,10 +8821,10 @@ { "Field": "freifeld20", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8666,10 +8832,10 @@ { "Field": "freifeld21", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8677,10 +8843,10 @@ { "Field": "freifeld22", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8688,10 +8854,10 @@ { "Field": "freifeld23", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8699,10 +8865,10 @@ { "Field": "freifeld24", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8710,10 +8876,10 @@ { "Field": "freifeld25", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8721,10 +8887,10 @@ { "Field": "freifeld26", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8732,10 +8898,10 @@ { "Field": "freifeld27", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8743,10 +8909,10 @@ { "Field": "freifeld28", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8754,10 +8920,10 @@ { "Field": "freifeld29", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8765,10 +8931,10 @@ { "Field": "freifeld30", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8776,10 +8942,10 @@ { "Field": "freifeld31", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8787,10 +8953,10 @@ { "Field": "freifeld32", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8798,10 +8964,10 @@ { "Field": "freifeld33", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8809,10 +8975,10 @@ { "Field": "freifeld34", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8820,10 +8986,10 @@ { "Field": "freifeld35", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8831,10 +8997,10 @@ { "Field": "freifeld36", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8842,10 +9008,10 @@ { "Field": "freifeld37", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8853,10 +9019,10 @@ { "Field": "freifeld38", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8864,10 +9030,10 @@ { "Field": "freifeld39", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8875,10 +9041,10 @@ { "Field": "freifeld40", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8889,29 +9055,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "vpe", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "einheit", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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,12 +9108,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "anfrage", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "anfrage" ] @@ -8956,6 +9126,7 @@ }, { "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,29 +9157,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "grund", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9017,12 +9188,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "anfrage", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "anfrage" ] @@ -9031,6 +9206,7 @@ }, { "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": "" @@ -9069,54 +9245,54 @@ { "Field": "projekt", "Type": "varchar(222)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "belegnr", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "anfrage", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "auftrag", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9124,10 +9300,10 @@ { "Field": "freitext", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9135,10 +9311,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9146,10 +9322,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9160,293 +9336,293 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "retyp", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "rechnungname", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "retelefon", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "reansprechpartner", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "retelefax", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "reabteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "reemail", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "reunterabteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "readresszusatz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "restrasse", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "replz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "reort", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "reland", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "abteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "unterabteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "strasse", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "adresszusatz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "plz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ort", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "land", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ustid", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "email", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "telefon", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "telefax", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "betreff", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9454,43 +9630,43 @@ { "Field": "kundennummer", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versandart", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "vertrieb", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "zahlungsweise", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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": "" @@ -9541,22 +9717,22 @@ }, { "Field": "bank_inhaber", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bank_institut", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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,51 +9754,51 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kreditkarte_typ", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kreditkarte_inhaber", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kreditkarte_nummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kreditkarte_pruefnummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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,139 +9842,139 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "liefername", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferabteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferunterabteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferland", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferstrasse", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferort", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferplz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferadresszusatz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferansprechpartner", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "liefertelefon", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "liefertelefax", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "liefermail", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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,29 +10051,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versendet_per", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versendet_durch", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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": "" @@ -9916,10 +10092,10 @@ { "Field": "vermerk", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9937,11 +10113,11 @@ }, { "Field": "ansprechpartner", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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": "" @@ -10015,10 +10191,10 @@ { "Field": "aktion", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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": "" @@ -10080,11 +10256,11 @@ }, { "Field": "anschreiben", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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": "" @@ -10245,8 +10421,8 @@ }, { "Field": "waehrung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "varchar(32)", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'EUR'", @@ -10289,11 +10465,11 @@ }, { "Field": "typ", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "'firma'", + "Default": "''firma''", "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": "" @@ -10377,11 +10553,11 @@ }, { "Field": "internebezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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": "" @@ -10433,10 +10609,10 @@ { "Field": "sprache", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10444,10 +10620,10 @@ { "Field": "liefergln", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10455,10 +10631,10 @@ { "Field": "lieferemail", "Type": "varchar(200)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10466,10 +10642,10 @@ { "Field": "gln", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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": "" @@ -10532,10 +10708,10 @@ { "Field": "kostenstelle", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10543,10 +10719,10 @@ { "Field": "bodyzusatz", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10554,10 +10730,10 @@ { "Field": "lieferbedingung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10565,10 +10741,10 @@ { "Field": "titel", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10576,10 +10752,10 @@ { "Field": "liefertitel", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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": "" @@ -10630,55 +10806,55 @@ }, { "Field": "internet", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "transaktionsnummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "packstation_inhaber", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "packstation_station", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "packstation_ident", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10686,21 +10862,21 @@ { "Field": "packstation_plz", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "packstation_ort", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10708,10 +10884,10 @@ { "Field": "shopextid", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10719,10 +10895,10 @@ { "Field": "bundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10730,10 +10906,10 @@ { "Field": "lieferbundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10742,48 +10918,64 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "projekt", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "projekt" ] }, { "Key_name": "adresse", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "adresse" ] }, { "Key_name": "vertriebid", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "vertriebid" ] }, { "Key_name": "status", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "status" ] }, { "Key_name": "datum", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "datum" ] }, { "Key_name": "belegnr", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "belegnr" ] }, { "Key_name": "versandart", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "versandart" ] @@ -10792,6 +10984,7 @@ }, { "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,18 +11026,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10852,10 +11045,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10863,21 +11056,21 @@ { "Field": "internerkommentar", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "nummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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": "" @@ -10906,11 +11099,11 @@ }, { "Field": "waehrung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10921,18 +11114,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "vpe", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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": "" @@ -10951,21 +11144,21 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "umsatzsteuer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10973,10 +11166,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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,18 +11312,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "einheit", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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": "" @@ -11160,7 +11353,7 @@ { "Field": "zolltarifnummer", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'0'", @@ -11171,7 +11364,7 @@ { "Field": "herkunftsland", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'0'", @@ -11182,10 +11375,10 @@ { "Field": "artikelnummerkunde", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11193,10 +11386,10 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11204,10 +11397,10 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11215,10 +11408,10 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11226,10 +11419,10 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11237,10 +11430,10 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11248,10 +11441,10 @@ { "Field": "freifeld6", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11259,10 +11452,10 @@ { "Field": "freifeld7", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11270,10 +11463,10 @@ { "Field": "freifeld8", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11281,10 +11474,10 @@ { "Field": "freifeld9", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11292,10 +11485,10 @@ { "Field": "freifeld10", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11325,10 +11518,10 @@ { "Field": "kostenstelle", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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": "" @@ -11347,10 +11540,10 @@ { "Field": "steuertext", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11358,10 +11551,10 @@ { "Field": "erloese", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11380,10 +11573,10 @@ { "Field": "einkaufspreiswaehrung", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11424,10 +11617,10 @@ { "Field": "ekwaehrung", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11446,10 +11639,10 @@ { "Field": "freifeld11", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11457,10 +11650,10 @@ { "Field": "freifeld12", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11468,10 +11661,10 @@ { "Field": "freifeld13", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11479,10 +11672,10 @@ { "Field": "freifeld14", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11490,10 +11683,10 @@ { "Field": "freifeld15", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11501,10 +11694,10 @@ { "Field": "freifeld16", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11512,10 +11705,10 @@ { "Field": "freifeld17", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11523,10 +11716,10 @@ { "Field": "freifeld18", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11534,10 +11727,10 @@ { "Field": "freifeld19", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11545,10 +11738,10 @@ { "Field": "freifeld20", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11556,10 +11749,10 @@ { "Field": "freifeld21", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11567,10 +11760,10 @@ { "Field": "freifeld22", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11578,10 +11771,10 @@ { "Field": "freifeld23", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11589,10 +11782,10 @@ { "Field": "freifeld24", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11600,10 +11793,10 @@ { "Field": "freifeld25", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11611,10 +11804,10 @@ { "Field": "freifeld26", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11622,10 +11815,10 @@ { "Field": "freifeld27", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11633,10 +11826,10 @@ { "Field": "freifeld28", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11644,10 +11837,10 @@ { "Field": "freifeld29", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11655,10 +11848,10 @@ { "Field": "freifeld30", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11666,10 +11859,10 @@ { "Field": "freifeld31", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11677,10 +11870,10 @@ { "Field": "freifeld32", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11688,10 +11881,10 @@ { "Field": "freifeld33", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11699,10 +11892,10 @@ { "Field": "freifeld34", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11710,10 +11903,10 @@ { "Field": "freifeld35", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11721,10 +11914,10 @@ { "Field": "freifeld36", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11732,10 +11925,10 @@ { "Field": "freifeld37", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11743,10 +11936,10 @@ { "Field": "freifeld38", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11754,10 +11947,10 @@ { "Field": "freifeld39", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11765,32 +11958,32 @@ { "Field": "freifeld40", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "formelmenge", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "formelpreis", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11809,10 +12002,10 @@ { "Field": "textalternativpreis", "Type": "varchar(50)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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,18 +12168,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "angebot", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "angebot" ] }, { "Key_name": "artikel", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "artikel" ] @@ -11995,6 +12194,7 @@ }, { "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,29 +12225,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "grund", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12056,12 +12256,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "angebot", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "angebot" ] @@ -12070,6 +12274,7 @@ }, { "name": "ansprechpartner", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -12078,150 +12283,150 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "typ", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "sprache", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bereich", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "abteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "unterabteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "land", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "strasse", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ort", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "plz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "telefon", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "telefax", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "email", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12229,32 +12434,32 @@ { "Field": "sonstiges", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "adresszusatz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "steuer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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": "" @@ -12284,10 +12489,10 @@ { "Field": "mobil", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12295,10 +12500,10 @@ { "Field": "titel", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12306,21 +12511,21 @@ { "Field": "anschreiben", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ansprechpartner_land", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12328,10 +12533,10 @@ { "Field": "vorname", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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": "" @@ -12383,10 +12588,10 @@ { "Field": "interne_bemerkung", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12406,12 +12611,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "adresse", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "adresse" ] @@ -12420,6 +12629,7 @@ }, { "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,6 +12680,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -12478,6 +12690,7 @@ }, { "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": "" @@ -12494,10 +12707,10 @@ { "Field": "bezeichnung", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12505,10 +12718,10 @@ { "Field": "initkey", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12516,10 +12729,10 @@ { "Field": "importwarteschlange_name", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12527,10 +12740,10 @@ { "Field": "event_url", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12538,10 +12751,10 @@ { "Field": "remotedomain", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12604,10 +12817,10 @@ { "Field": "permissions", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12638,6 +12851,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -12646,6 +12861,7 @@ }, { "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": "" @@ -12662,10 +12878,10 @@ { "Field": "nonce", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12673,10 +12889,10 @@ { "Field": "opaque", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12707,6 +12923,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -12715,6 +12933,7 @@ }, { "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": "" @@ -12753,10 +12972,10 @@ { "Field": "tabelle", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12775,10 +12994,10 @@ { "Field": "id_ext", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12798,24 +13017,32 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "uebertragung_account", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "uebertragung_account" ] }, { "Key_name": "id_ext", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "id_ext" ] }, { "Key_name": "api", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "api" ] @@ -12824,6 +13051,7 @@ }, { "name": "api_permission", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -12832,29 +13060,29 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "key", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "UNI", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "group", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12863,12 +13091,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "key", + "Index_type": "HASH", + "Non_unique": "", "columns": [ "key" ] @@ -12877,6 +13109,7 @@ }, { "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": "" @@ -12915,10 +13148,10 @@ { "Field": "action", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12926,10 +13159,10 @@ { "Field": "bedingung", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12937,10 +13170,10 @@ { "Field": "parameter", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12981,10 +13214,10 @@ { "Field": "bearbeiter", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13004,6 +13237,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -13012,6 +13247,7 @@ }, { "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": "" @@ -13050,7 +13286,7 @@ { "Field": "status", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'angelegt'", @@ -13082,22 +13318,22 @@ }, { "Field": "typ", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "parameter1", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13115,22 +13351,22 @@ }, { "Field": "parameter2", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "anzeige", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13170,11 +13406,11 @@ }, { "Field": "datei", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13205,18 +13441,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "uebertragung_account", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "uebertragung_account" ] }, { "Key_name": "parameter1int", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "parameter1int" ] @@ -13225,6 +13467,7 @@ }, { "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": "" @@ -13252,10 +13495,10 @@ { "Field": "raw_request", "Type": "mediumtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13263,10 +13506,10 @@ { "Field": "raw_response", "Type": "mediumtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13274,10 +13517,10 @@ { "Field": "type", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13285,10 +13528,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13296,10 +13539,10 @@ { "Field": "doctype", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13341,18 +13584,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "api_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "api_id" ] }, { "Key_name": "created_at", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "created_at" ] @@ -13361,6 +13610,7 @@ }, { "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": "" @@ -13377,10 +13627,10 @@ { "Field": "bezeichnung", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13388,10 +13638,10 @@ { "Field": "typ", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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": "" @@ -13421,10 +13671,10 @@ { "Field": "land", "Type": "varchar(2)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13433,12 +13683,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "datum", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "datum" ] @@ -13447,6 +13701,7 @@ }, { "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,18 +13721,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "aufgabe", - "Type": "varchar(255)", - "Collation": "utf8mb3_unicode_ci", + "Type": "text", + "Collation": "utf8mb4_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": "utf8mb4_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,32 +13784,32 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_unicode_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "abgabe", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "abgenommen", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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": "" @@ -13573,10 +13828,10 @@ { "Field": "abgenommen_bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13587,18 +13842,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "art", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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": "" @@ -13837,7 +14092,7 @@ { "Field": "kalkulationbasis", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'stundenbasis'", @@ -13859,10 +14114,10 @@ { "Field": "farbe", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13870,10 +14125,10 @@ { "Field": "vkkalkulationbasis", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13893,12 +14148,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "projekt", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "projekt" ] @@ -13907,6 +14166,7 @@ }, { "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": "" @@ -13967,10 +14227,10 @@ { "Field": "type", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13979,6 +14239,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -13987,6 +14249,7 @@ }, { "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": "" @@ -14036,10 +14299,10 @@ { "Field": "language_from", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14047,54 +14310,54 @@ { "Field": "language_to", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "property_from", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "property_to", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "property_value_from", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "property_value_to", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14103,24 +14366,32 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "article_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "article_id" ] }, { "Key_name": "category_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "category_id" ] }, { "Key_name": "shop_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "shop_id" ] @@ -14129,6 +14400,7 @@ }, { "name": "artikel", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -14137,29 +14409,29 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "typ", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "nummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14167,10 +14439,10 @@ { "Field": "checksum", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14181,18 +14453,18 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "inaktiv", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14203,40 +14475,40 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "warengruppe", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name_de", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name_en", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14244,10 +14516,10 @@ { "Field": "kurztext_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14255,10 +14527,10 @@ { "Field": "kurztext_en", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14266,10 +14538,10 @@ { "Field": "beschreibung_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14277,10 +14549,10 @@ { "Field": "beschreibung_en", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14288,10 +14560,10 @@ { "Field": "uebersicht_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14299,10 +14571,10 @@ { "Field": "uebersicht_en", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14310,10 +14582,10 @@ { "Field": "links_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14321,10 +14593,10 @@ { "Field": "links_en", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14332,10 +14604,10 @@ { "Field": "startseite_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14343,109 +14615,109 @@ { "Field": "startseite_en", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "standardbild", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "herstellerlink", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "hersteller", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "teilbar", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "nteile", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "seriennummern", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lager_platz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferzeit", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferzeitmanuell", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14453,54 +14725,54 @@ { "Field": "sonstiges", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "gewicht", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "endmontage", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "funktionstest", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "artikelcheckliste", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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": "" @@ -14530,32 +14802,32 @@ { "Field": "barcode", "Type": "varchar(7)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "hinzugefuegt", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "pcbdecal", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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,18 +14882,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "sperrgrund", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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,29 +14915,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "umsatzsteuer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "klasse", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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": "" @@ -14739,10 +15011,10 @@ { "Field": "katalogtext_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14750,32 +15022,32 @@ { "Field": "katalogtext_en", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "katalogbezeichnung_de", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "katalogbezeichnung_en", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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": "" @@ -14860,10 +15132,10 @@ { "Field": "internerkommentar", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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": "" @@ -14893,10 +15165,10 @@ { "Field": "intern_gesperrtgrund", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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": "" @@ -14937,10 +15209,10 @@ { "Field": "internkommentar", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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": "" @@ -14970,10 +15242,10 @@ { "Field": "anabregs_text", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14995,18 +15267,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "herstellernummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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": "" @@ -15057,11 +15329,11 @@ }, { "Field": "letzteseriennummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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": "" @@ -15167,11 +15439,11 @@ }, { "Field": "freigaberegel", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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": "" @@ -15190,10 +15462,10 @@ { "Field": "ean", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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": "" @@ -15278,10 +15550,10 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15289,10 +15561,10 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15300,10 +15572,10 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15311,10 +15583,10 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15322,10 +15594,10 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15333,21 +15605,21 @@ { "Field": "freifeld6", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "einheit", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15355,21 +15627,21 @@ { "Field": "webid", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferzeitmanuell_en", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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": "" @@ -15399,10 +15671,10 @@ { "Field": "produktioninfo", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15410,10 +15682,10 @@ { "Field": "sonderaktion", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15421,10 +15693,10 @@ { "Field": "sonderaktion_en", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15443,10 +15715,10 @@ { "Field": "leerfeld", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15454,10 +15726,10 @@ { "Field": "zolltarifnummer", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15465,10 +15737,10 @@ { "Field": "herkunftsland", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15519,11 +15791,11 @@ }, { "Field": "pseudolager", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15553,10 +15825,10 @@ { "Field": "steuer_erloese_inland_normal", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15564,10 +15836,10 @@ { "Field": "steuer_aufwendung_inland_normal", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15575,10 +15847,10 @@ { "Field": "steuer_erloese_inland_ermaessigt", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15586,10 +15858,10 @@ { "Field": "steuer_aufwendung_inland_ermaessigt", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15597,10 +15869,10 @@ { "Field": "steuer_erloese_inland_steuerfrei", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15608,10 +15880,10 @@ { "Field": "steuer_aufwendung_inland_steuerfrei", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15619,10 +15891,10 @@ { "Field": "steuer_erloese_inland_innergemeinschaftlich", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15630,10 +15902,10 @@ { "Field": "steuer_aufwendung_inland_innergemeinschaftlich", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15641,10 +15913,10 @@ { "Field": "steuer_erloese_inland_eunormal", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15652,10 +15924,10 @@ { "Field": "steuer_erloese_inland_nichtsteuerbar", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15663,10 +15935,10 @@ { "Field": "steuer_erloese_inland_euermaessigt", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15674,10 +15946,10 @@ { "Field": "steuer_aufwendung_inland_nichtsteuerbar", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15685,10 +15957,10 @@ { "Field": "steuer_aufwendung_inland_eunormal", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15696,10 +15968,10 @@ { "Field": "steuer_aufwendung_inland_euermaessigt", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15707,10 +15979,10 @@ { "Field": "steuer_erloese_inland_export", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15718,10 +15990,10 @@ { "Field": "steuer_aufwendung_inland_import", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15751,10 +16023,10 @@ { "Field": "metadescription_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15762,10 +16034,10 @@ { "Field": "metadescription_en", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15773,10 +16045,10 @@ { "Field": "metakeywords_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15784,10 +16056,10 @@ { "Field": "metakeywords_en", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15795,10 +16067,10 @@ { "Field": "anabregs_text_en", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15817,10 +16089,10 @@ { "Field": "bildvorschau", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15905,10 +16177,10 @@ { "Field": "nettogewicht", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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": "" @@ -15982,10 +16254,10 @@ { "Field": "hinweis_einfuegen", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16026,10 +16298,10 @@ { "Field": "abckategorie", "Type": "varchar(1)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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": "" @@ -16070,10 +16342,10 @@ { "Field": "steuertext_innergemeinschaftlich", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16081,32 +16353,32 @@ { "Field": "steuertext_export", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "formelmenge", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "formelpreis", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16114,10 +16386,10 @@ { "Field": "freifeld7", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16125,10 +16397,10 @@ { "Field": "freifeld8", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16136,10 +16408,10 @@ { "Field": "freifeld9", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16147,10 +16419,10 @@ { "Field": "freifeld10", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16158,10 +16430,10 @@ { "Field": "freifeld11", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16169,10 +16441,10 @@ { "Field": "freifeld12", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16180,10 +16452,10 @@ { "Field": "freifeld13", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16191,10 +16463,10 @@ { "Field": "freifeld14", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16202,10 +16474,10 @@ { "Field": "freifeld15", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16213,10 +16485,10 @@ { "Field": "freifeld16", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16224,10 +16496,10 @@ { "Field": "freifeld17", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16235,10 +16507,10 @@ { "Field": "freifeld18", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16246,10 +16518,10 @@ { "Field": "freifeld19", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16257,10 +16529,10 @@ { "Field": "freifeld20", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16268,10 +16540,10 @@ { "Field": "freifeld21", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16279,10 +16551,10 @@ { "Field": "freifeld22", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16290,10 +16562,10 @@ { "Field": "freifeld23", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16301,10 +16573,10 @@ { "Field": "freifeld24", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16312,10 +16584,10 @@ { "Field": "freifeld25", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16323,10 +16595,10 @@ { "Field": "freifeld26", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16334,10 +16606,10 @@ { "Field": "freifeld27", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16345,10 +16617,10 @@ { "Field": "freifeld28", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16356,10 +16628,10 @@ { "Field": "freifeld29", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16367,10 +16639,10 @@ { "Field": "freifeld30", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16378,10 +16650,10 @@ { "Field": "freifeld31", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16389,10 +16661,10 @@ { "Field": "freifeld32", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16400,10 +16672,10 @@ { "Field": "freifeld33", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16411,10 +16683,10 @@ { "Field": "freifeld34", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16422,10 +16694,10 @@ { "Field": "freifeld35", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16433,10 +16705,10 @@ { "Field": "freifeld36", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16444,10 +16716,10 @@ { "Field": "freifeld37", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16455,10 +16727,10 @@ { "Field": "freifeld38", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16466,10 +16738,10 @@ { "Field": "freifeld39", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16477,21 +16749,21 @@ { "Field": "freifeld40", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ursprungsregion", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16510,10 +16782,10 @@ { "Field": "metatitle_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16521,10 +16793,10 @@ { "Field": "metatitle_en", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16543,10 +16815,10 @@ { "Field": "altersfreigabe", "Type": "varchar(3)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16576,10 +16848,10 @@ { "Field": "kostenstelle", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16653,10 +16925,10 @@ { "Field": "berechneterekwaehrung", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16687,54 +16959,72 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "projekt", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "projekt" ] }, { "Key_name": "nummer", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "nummer" ] }, { "Key_name": "adresse", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "adresse" ] }, { "Key_name": "laststorage_changed", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "laststorage_changed" ] }, { "Key_name": "laststorage_sync", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "laststorage_sync" ] }, { "Key_name": "variante_von", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "variante_von" ] }, { "Key_name": "herstellernummer", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "herstellernummer" ] }, { "Key_name": "geloescht", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "geloescht" ] @@ -16743,6 +17033,7 @@ }, { "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": "" @@ -16780,11 +17071,11 @@ }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16792,10 +17083,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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": "" @@ -16824,11 +17115,11 @@ }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16859,12 +17150,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "artikel", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "artikel" ] @@ -16873,6 +17168,7 @@ }, { "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,6 +17230,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -16942,6 +17240,7 @@ }, { "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": "" @@ -16980,10 +17279,10 @@ { "Field": "project_name", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16991,10 +17290,10 @@ { "Field": "number", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17002,10 +17301,10 @@ { "Field": "ean", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17013,54 +17312,54 @@ { "Field": "factory_number", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "manufactor", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "customfield1", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "customfield2", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17068,10 +17367,10 @@ { "Field": "ek_customnumber", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17079,10 +17378,10 @@ { "Field": "vk_customnumber", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17090,10 +17389,10 @@ { "Field": "eigenschaften", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17134,10 +17433,10 @@ { "Field": "variant_from_name", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17289,12 +17588,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "artikel", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "artikel" ] @@ -17303,6 +17606,7 @@ }, { "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": "" @@ -17329,11 +17633,11 @@ }, { "Field": "sprache", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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": "" @@ -17352,10 +17656,10 @@ { "Field": "wert", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17364,12 +17668,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "artikel", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "artikel" ] @@ -17378,6 +17686,7 @@ }, { "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": "" @@ -17448,11 +17757,11 @@ }, { "Field": "pseudolager", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17481,11 +17790,11 @@ }, { "Field": "lieferzeitmanuell", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17559,10 +17868,10 @@ { "Field": "last_article_hash", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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,12 +17924,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "artikel", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "artikel", "shop" @@ -17630,6 +17943,7 @@ }, { "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": "" @@ -17690,10 +18004,10 @@ { "Field": "bearbeiter", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17702,18 +18016,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "lager_platz", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "lager_platz" ] }, { "Key_name": "artikel", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "artikel" ] @@ -17722,6 +18042,7 @@ }, { "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": "" @@ -17760,10 +18081,10 @@ { "Field": "checksum", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17772,6 +18093,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -17780,6 +18103,7 @@ }, { "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": "" @@ -17807,21 +18131,21 @@ { "Field": "sprache", "Type": "varchar(11)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17829,10 +18153,10 @@ { "Field": "kurztext", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17840,10 +18164,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17851,21 +18175,21 @@ { "Field": "beschreibung_online", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "meta_title", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17873,10 +18197,10 @@ { "Field": "meta_description", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17884,10 +18208,10 @@ { "Field": "meta_keywords", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17906,10 +18230,10 @@ { "Field": "katalog_bezeichnung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17917,10 +18241,10 @@ { "Field": "katalog_text", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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,18 +18275,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "shop", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "shop" ] }, { "Key_name": "artikel", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "artikel" ] @@ -17971,6 +18301,7 @@ }, { "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,6 +18330,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -18007,6 +18340,7 @@ }, { "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,40 +18371,40 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name_de", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name_en", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18089,7 +18423,7 @@ { "Field": "preisart", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'absolut'", @@ -18099,11 +18433,11 @@ }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18134,6 +18468,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -18142,6 +18478,7 @@ }, { "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,12 +18529,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "artikel", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "artikel", "kategorie" @@ -18207,6 +18548,7 @@ }, { "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": "" @@ -18234,10 +18576,10 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18245,7 +18587,7 @@ { "Field": "typ", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", "Default": "'einzeilig'", @@ -18279,6 +18621,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -18287,6 +18631,7 @@ }, { "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": "" @@ -18325,10 +18670,10 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18336,10 +18681,10 @@ { "Field": "einheit", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18347,10 +18692,10 @@ { "Field": "wert", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18370,18 +18715,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "artikeleigenschaften", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "artikeleigenschaften" ] }, { "Key_name": "artikel", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "artikel" ] @@ -18390,6 +18741,7 @@ }, { "name": "artikeleinheit", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -18398,18 +18750,18 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "einheit_de", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18417,10 +18769,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18429,6 +18781,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -18437,6 +18791,7 @@ }, { "name": "artikelgruppen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -18445,29 +18800,29 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung_en", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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": "" @@ -18497,10 +18852,10 @@ { "Field": "beschreibung_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18508,10 +18863,10 @@ { "Field": "beschreibung_en", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18520,12 +18875,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "id" ] @@ -18534,6 +18893,7 @@ }, { "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,29 +18935,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kostenart", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18626,11 +18986,11 @@ }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18648,11 +19008,11 @@ }, { "Field": "kommentar", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18660,10 +19020,10 @@ { "Field": "waehrung", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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,12 +19054,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "artikel", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "artikel" ] @@ -18708,6 +19072,7 @@ }, { "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,12 +19112,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "artikel", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "artikel" ] @@ -18761,6 +19130,7 @@ }, { "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,18 +19161,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18821,10 +19191,10 @@ { "Field": "waehrung", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18843,10 +19213,10 @@ { "Field": "json", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18855,6 +19225,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -18863,6 +19235,7 @@ }, { "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": "" @@ -18879,10 +19252,10 @@ { "Field": "bezeichnung", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18890,10 +19263,10 @@ { "Field": "next_nummer", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18945,10 +19318,10 @@ { "Field": "steuer_erloese_inland_normal", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18956,10 +19329,10 @@ { "Field": "steuer_aufwendung_inland_normal", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18967,10 +19340,10 @@ { "Field": "steuer_erloese_inland_ermaessigt", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18978,10 +19351,10 @@ { "Field": "steuer_aufwendung_inland_ermaessigt", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18989,10 +19362,10 @@ { "Field": "steuer_erloese_inland_steuerfrei", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19000,10 +19373,10 @@ { "Field": "steuer_aufwendung_inland_steuerfrei", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19011,10 +19384,10 @@ { "Field": "steuer_erloese_inland_innergemeinschaftlich", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19022,10 +19395,10 @@ { "Field": "steuer_aufwendung_inland_innergemeinschaftlich", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19033,10 +19406,10 @@ { "Field": "steuer_erloese_inland_eunormal", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19044,10 +19417,10 @@ { "Field": "steuer_erloese_inland_nichtsteuerbar", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19055,10 +19428,10 @@ { "Field": "steuer_erloese_inland_euermaessigt", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19066,10 +19439,10 @@ { "Field": "steuer_aufwendung_inland_nichtsteuerbar", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19077,10 +19450,10 @@ { "Field": "steuer_aufwendung_inland_eunormal", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19088,10 +19461,10 @@ { "Field": "steuer_aufwendung_inland_euermaessigt", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19099,10 +19472,10 @@ { "Field": "steuer_erloese_inland_export", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19110,10 +19483,10 @@ { "Field": "steuer_aufwendung_inland_import", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19121,10 +19494,10 @@ { "Field": "steuertext_innergemeinschaftlich", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19132,10 +19505,10 @@ { "Field": "steuertext_export", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19144,12 +19517,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "parent", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "parent" ] @@ -19158,6 +19535,7 @@ }, { "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,6 +19586,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -19216,6 +19596,7 @@ }, { "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": "" @@ -19242,22 +19623,22 @@ }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "nummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19275,11 +19656,11 @@ }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19321,24 +19702,32 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "artikel", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "artikel" ] }, { "Key_name": "shopid", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "shopid" ] }, { "Key_name": "nummer", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "nummer" ] @@ -19347,6 +19736,7 @@ }, { "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,40 +19756,40 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name_de", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name_en", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19418,7 +19808,7 @@ { "Field": "preisart", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'absolut'", @@ -19428,11 +19818,11 @@ }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19463,6 +19853,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -19471,6 +19863,7 @@ }, { "name": "artikeloptionengruppe", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -19479,40 +19872,40 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name_de", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name_en", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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,18 +19938,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19587,6 +19980,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -19595,6 +19990,7 @@ }, { "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,18 +20010,18 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "aufgabe", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19633,21 +20029,21 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "prio", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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": "" @@ -19776,21 +20172,21 @@ { "Field": "sonstiges", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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,18 +20274,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "note_color", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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": "" @@ -19919,10 +20315,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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,12 +20470,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "adresse", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "adresse" ] @@ -20088,6 +20488,7 @@ }, { "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,6 +20550,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -20157,6 +20560,7 @@ }, { "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,18 +20580,18 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "art", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20195,54 +20599,54 @@ { "Field": "projekt", "Type": "varchar(222)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "belegnr", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "internet", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "angebot", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20250,10 +20654,10 @@ { "Field": "freitext", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20261,10 +20665,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20272,10 +20676,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20286,117 +20690,117 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "abteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "unterabteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "strasse", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "adresszusatz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ansprechpartner", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "plz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ort", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "land", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ustid", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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,51 +20822,51 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "email", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "telefon", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "telefax", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "betreff", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20470,43 +20874,43 @@ { "Field": "kundennummer", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versandart", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "vertrieb", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "zahlungsweise", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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,117 +20943,117 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bank_inhaber", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bank_institut", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bank_blz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bank_konto", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kreditkarte_typ", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kreditkarte_inhaber", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kreditkarte_nummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kreditkarte_pruefnummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kreditkarte_monat", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kreditkarte_jahr", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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,29 +21086,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versendet_per", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versendet_durch", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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,161 +21152,161 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "liefername", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferabteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferunterabteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferland", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferstrasse", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferort", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferplz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferadresszusatz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferansprechpartner", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "packstation_inhaber", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "packstation_station", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "packstation_ident", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "packstation_plz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "packstation_ort", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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,40 +21493,40 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "stornogrund", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "stornosonstiges", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "stornorueckzahlung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21140,44 +21544,44 @@ }, { "Field": "stornobankinhaber", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "stornobankkonto", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "stornobankblz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "stornobankbank", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21188,18 +21592,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "stornogutschriftbeleg", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21210,18 +21614,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "stornomanuellebearbeitung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21229,21 +21633,21 @@ { "Field": "stornokommentar", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "stornobezahlt", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21254,18 +21658,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "stornobezahltvon", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21276,18 +21680,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "stornorueckzahlungper", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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,18 +21724,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kennen", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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": "" @@ -21382,11 +21786,11 @@ }, { "Field": "transaktionsnummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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": "" @@ -21559,10 +21963,10 @@ { "Field": "aktion", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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": "" @@ -21614,10 +22018,10 @@ { "Field": "shopextid", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21625,32 +22029,32 @@ { "Field": "shopextstatus", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ihrebestellnummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "anschreiben", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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": "" @@ -21833,11 +22237,11 @@ }, { "Field": "waehrung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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": "" @@ -21899,11 +22303,11 @@ }, { "Field": "typ", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "'firma'", + "Default": "''firma''", "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": "" @@ -21922,10 +22326,10 @@ { "Field": "auftragseingangper", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21955,10 +22359,10 @@ { "Field": "systemfreitext", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21998,11 +22402,11 @@ }, { "Field": "internebezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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": "" @@ -22098,10 +22502,10 @@ { "Field": "sprache", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22109,10 +22513,10 @@ { "Field": "bundesland", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22120,10 +22524,10 @@ { "Field": "gln", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22131,10 +22535,10 @@ { "Field": "liefergln", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22142,10 +22546,10 @@ { "Field": "lieferemail", "Type": "varchar(200)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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": "" @@ -22175,10 +22579,10 @@ { "Field": "deliverythresholdvatid", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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": "" @@ -22218,22 +22622,22 @@ }, { "Field": "lieferantennummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferantkdrnummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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": "" @@ -22285,10 +22689,10 @@ { "Field": "kostenstelle", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22296,10 +22700,10 @@ { "Field": "bodyzusatz", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22307,10 +22711,10 @@ { "Field": "lieferbedingung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22318,10 +22722,10 @@ { "Field": "titel", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22329,10 +22733,10 @@ { "Field": "liefertitel", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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": "" @@ -22395,10 +22799,10 @@ { "Field": "bundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22406,10 +22810,10 @@ { "Field": "lieferbundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22417,10 +22821,10 @@ { "Field": "kundennummer_buchhaltung", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22428,10 +22832,10 @@ { "Field": "storage_country", "Type": "varchar(3)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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,78 +22866,104 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "projekt", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "projekt" ] }, { "Key_name": "adresse", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "adresse" ] }, { "Key_name": "vertriebid", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "vertriebid" ] }, { "Key_name": "status", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "status" ] }, { "Key_name": "datum", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "datum" ] }, { "Key_name": "belegnr", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "belegnr" ] }, { "Key_name": "gesamtsumme", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "gesamtsumme" ] }, { "Key_name": "transaktionsnummer", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "transaktionsnummer" ] }, { "Key_name": "internet", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "internet" ] }, { "Key_name": "lieferantkdrnummer", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "lieferantkdrnummer" ] }, { "Key_name": "teillieferungvon", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "teillieferungvon" ] }, { "Key_name": "versandart", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "versandart" ] @@ -22542,6 +22972,7 @@ }, { "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,18 +23014,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22602,10 +23033,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22613,21 +23044,21 @@ { "Field": "internerkommentar", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "nummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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": "" @@ -22656,11 +23087,11 @@ }, { "Field": "waehrung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "varchar(64)", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22671,18 +23102,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "vpe", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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": "" @@ -22701,21 +23132,21 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "umsatzsteuer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22723,10 +23154,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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,18 +23333,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "einheit", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22921,10 +23352,10 @@ { "Field": "webid", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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": "" @@ -22954,7 +23385,7 @@ { "Field": "zolltarifnummer", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'0'", @@ -22965,7 +23396,7 @@ { "Field": "herkunftsland", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'0'", @@ -22976,10 +23407,10 @@ { "Field": "artikelnummerkunde", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22987,10 +23418,10 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22998,10 +23429,10 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23009,10 +23440,10 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23020,10 +23451,10 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23031,10 +23462,10 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23042,10 +23473,10 @@ { "Field": "freifeld6", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23053,10 +23484,10 @@ { "Field": "freifeld7", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23064,10 +23495,10 @@ { "Field": "freifeld8", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23075,10 +23506,10 @@ { "Field": "freifeld9", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23086,10 +23517,10 @@ { "Field": "freifeld10", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23119,10 +23550,10 @@ { "Field": "kostenstelle", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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": "" @@ -23141,10 +23572,10 @@ { "Field": "steuertext", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23152,10 +23583,10 @@ { "Field": "erloese", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23174,10 +23605,10 @@ { "Field": "einkaufspreiswaehrung", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23218,10 +23649,10 @@ { "Field": "ekwaehrung", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23240,10 +23671,10 @@ { "Field": "freifeld11", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23251,10 +23682,10 @@ { "Field": "freifeld12", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23262,10 +23693,10 @@ { "Field": "freifeld13", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23273,10 +23704,10 @@ { "Field": "freifeld14", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23284,10 +23715,10 @@ { "Field": "freifeld15", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23295,10 +23726,10 @@ { "Field": "freifeld16", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23306,10 +23737,10 @@ { "Field": "freifeld17", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23317,10 +23748,10 @@ { "Field": "freifeld18", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23328,10 +23759,10 @@ { "Field": "freifeld19", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23339,10 +23770,10 @@ { "Field": "freifeld20", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23350,10 +23781,10 @@ { "Field": "freifeld21", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23361,10 +23792,10 @@ { "Field": "freifeld22", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23372,10 +23803,10 @@ { "Field": "freifeld23", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23383,10 +23814,10 @@ { "Field": "freifeld24", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23394,10 +23825,10 @@ { "Field": "freifeld25", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23405,10 +23836,10 @@ { "Field": "freifeld26", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23416,10 +23847,10 @@ { "Field": "freifeld27", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23427,10 +23858,10 @@ { "Field": "freifeld28", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23438,10 +23869,10 @@ { "Field": "freifeld29", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23449,10 +23880,10 @@ { "Field": "freifeld30", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23460,10 +23891,10 @@ { "Field": "freifeld31", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23471,10 +23902,10 @@ { "Field": "freifeld32", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23482,10 +23913,10 @@ { "Field": "freifeld33", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23493,10 +23924,10 @@ { "Field": "freifeld34", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23504,10 +23935,10 @@ { "Field": "freifeld35", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23515,10 +23946,10 @@ { "Field": "freifeld36", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23526,10 +23957,10 @@ { "Field": "freifeld37", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23537,10 +23968,10 @@ { "Field": "freifeld38", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23548,10 +23979,10 @@ { "Field": "freifeld39", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23559,32 +23990,32 @@ { "Field": "freifeld40", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "formelmenge", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "formelpreis", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23625,10 +24056,10 @@ { "Field": "zollwaehrung", "Type": "varchar(3)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_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,12 +24233,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "auftrag", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "auftrag", "artikel" @@ -23815,18 +24250,24 @@ }, { "Key_name": "artikel", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "artikel" ] }, { "Key_name": "auftrag_2", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "auftrag" ] }, { "Key_name": "explodiert_parent", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "explodiert_parent" ] @@ -23835,6 +24276,7 @@ }, { "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,29 +24307,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "grund", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23896,12 +24338,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "auftrag", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "auftrag" ] @@ -23910,6 +24356,7 @@ }, { "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": "" @@ -23937,10 +24384,10 @@ { "Field": "mailaddress", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23949,6 +24396,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -23957,6 +24406,7 @@ }, { "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,29 +24426,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "dateiname", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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,6 +24468,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -24026,6 +24478,7 @@ }, { "name": "beleg_chargesnmhd", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -24034,18 +24487,18 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "doctype", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24075,10 +24528,10 @@ { "Field": "type", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24086,10 +24539,10 @@ { "Field": "type2", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24097,43 +24550,43 @@ { "Field": "type3", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "wert", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "wert2", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "wert3", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24162,11 +24615,11 @@ }, { "Field": "internebemerkung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24175,36 +24628,48 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "doctypeid", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "doctypeid" ] }, { "Key_name": "pos", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "pos" ] }, { "Key_name": "type", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "type" ] }, { "Key_name": "type2", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "type2" ] }, { "Key_name": "wert", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "wert" ] @@ -24213,6 +24678,7 @@ }, { "name": "beleg_zwischenpositionen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -24221,18 +24687,18 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "doctype", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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": "" @@ -24273,10 +24739,10 @@ { "Field": "postype", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24284,10 +24750,10 @@ { "Field": "wert", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24296,20 +24762,349 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "doctypeid", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "doctypeid" ] } ] }, + { + "name": "belege", + "collation": null, + "type": "BASE TABLE", + "columns": [ + { + "Field": "id", + "Type": "int(11)", + "Collation": null, + "Null": "NO", + "Key": "", + "Default": "0", + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "adresse", + "Type": "int(11)", + "Collation": null, + "Null": "NO", + "Key": "", + "Default": "0", + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "datum", + "Type": "date", + "Collation": null, + "Null": "NO", + "Key": "", + "Default": "0000-00-00", + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "belegnr", + "Type": "mediumtext", + "Collation": "utf8mb4_general_ci", + "Null": "NO", + "Key": "", + "Default": "''", + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "status", + "Type": "varchar(64)", + "Collation": "utf8mb4_general_ci", + "Null": "NO", + "Key": "", + "Default": "''", + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "land", + "Type": "mediumtext", + "Collation": "utf8mb4_general_ci", + "Null": "NO", + "Key": "", + "Default": "''", + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "typ", + "Type": "varchar(10)", + "Collation": "utf8mb4_general_ci", + "Null": "NO", + "Key": "", + "Default": "''", + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "umsatz_netto", + "Type": "decimal(19,2)", + "Collation": null, + "Null": "NO", + "Key": "", + "Default": "0.00", + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "erloes_netto", + "Type": "decimal(19,2)", + "Collation": null, + "Null": "NO", + "Key": "", + "Default": "0.00", + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "deckungsbeitrag", + "Type": "decimal(11,2)", + "Collation": null, + "Null": "NO", + "Key": "", + "Default": "0.00", + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "provision_summe", + "Type": "decimal(11,2)", + "Collation": null, + "Null": "YES", + "Key": "", + "Default": null, + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "vertriebid", + "Type": "int(11)", + "Collation": null, + "Null": "YES", + "Key": "", + "Default": null, + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "gruppe", + "Type": "int(11)", + "Collation": null, + "Null": "NO", + "Key": "", + "Default": "0", + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + } + ], + "keys": [] + }, + { + "name": "belegegesamt", + "collation": null, + "type": "BASE TABLE", + "columns": [ + { + "Field": "id", + "Type": "int(11)", + "Collation": null, + "Null": "NO", + "Key": "", + "Default": "0", + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "adresse", + "Type": "int(11)", + "Collation": null, + "Null": "NO", + "Key": "", + "Default": "0", + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "datum", + "Type": "date", + "Collation": null, + "Null": "NO", + "Key": "", + "Default": "0000-00-00", + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "belegnr", + "Type": "mediumtext", + "Collation": "utf8mb4_general_ci", + "Null": "NO", + "Key": "", + "Default": "''", + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "status", + "Type": "varchar(64)", + "Collation": "utf8mb4_general_ci", + "Null": "NO", + "Key": "", + "Default": "''", + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "land", + "Type": "mediumtext", + "Collation": "utf8mb4_general_ci", + "Null": "NO", + "Key": "", + "Default": "''", + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "typ", + "Type": "varchar(12)", + "Collation": "utf8mb4_general_ci", + "Null": "NO", + "Key": "", + "Default": "''", + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "umsatz_netto", + "Type": "varchar(21)", + "Collation": "utf8mb4_general_ci", + "Null": "NO", + "Key": "", + "Default": "''", + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "umsatz_brutto", + "Type": "varchar(21)", + "Collation": "utf8mb4_general_ci", + "Null": "NO", + "Key": "", + "Default": "''", + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "erloes_netto", + "Type": "varchar(21)", + "Collation": "utf8mb4_general_ci", + "Null": "NO", + "Key": "", + "Default": "''", + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "deckungsbeitrag", + "Type": "varchar(13)", + "Collation": "utf8mb4_general_ci", + "Null": "NO", + "Key": "", + "Default": "''", + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "provision_summe", + "Type": "varchar(13)", + "Collation": "utf8mb4_general_ci", + "Null": "YES", + "Key": "", + "Default": null, + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "vertriebid", + "Type": "varchar(11)", + "Collation": "utf8mb4_general_ci", + "Null": "YES", + "Key": "", + "Default": null, + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "gruppe", + "Type": "varchar(11)", + "Collation": "utf8mb4_general_ci", + "Null": "NO", + "Key": "", + "Default": "''", + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "projekt", + "Type": "varchar(222)", + "Collation": "utf8mb4_general_ci", + "Null": "NO", + "Key": "", + "Default": "''", + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + } + ], + "keys": [] + }, { "name": "belegeimport", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -24318,7 +25113,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -24359,10 +25154,10 @@ { "Field": "art", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24370,10 +25165,10 @@ { "Field": "status", "Type": "varchar(24)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24381,10 +25176,10 @@ { "Field": "beleg_status", "Type": "varchar(24)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24392,10 +25187,10 @@ { "Field": "beleg_datum", "Type": "varchar(24)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24403,10 +25198,10 @@ { "Field": "beleg_lieferdatum", "Type": "varchar(24)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24414,10 +25209,10 @@ { "Field": "beleg_tatsaechlicheslieferdatum", "Type": "varchar(24)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24425,10 +25220,10 @@ { "Field": "beleg_versandart", "Type": "varchar(24)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24436,10 +25231,10 @@ { "Field": "beleg_zahlungsweise", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24447,10 +25242,10 @@ { "Field": "beleg_belegnr", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24458,10 +25253,10 @@ { "Field": "beleg_hauptbelegnr", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24469,10 +25264,10 @@ { "Field": "beleg_kundennummer", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24480,10 +25275,10 @@ { "Field": "beleg_lieferantennummer", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24491,76 +25286,76 @@ { "Field": "beleg_name", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "beleg_abteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "beleg_unterabteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "beleg_adresszusatz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "beleg_ansprechpartner", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "beleg_telefon", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "beleg_email", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24568,21 +25363,21 @@ { "Field": "beleg_land", "Type": "varchar(2)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "beleg_strasse", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24590,21 +25385,21 @@ { "Field": "beleg_plz", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "beleg_ort", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24622,11 +25417,11 @@ }, { "Field": "beleg_aktion", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24634,10 +25429,10 @@ { "Field": "beleg_internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24645,10 +25440,10 @@ { "Field": "beleg_internebezeichnung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24656,32 +25451,32 @@ { "Field": "beleg_freitext", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "beleg_ihrebestellnummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "beleg_lieferbedingung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24689,10 +25484,10 @@ { "Field": "beleg_art", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24710,33 +25505,33 @@ }, { "Field": "artikel_nummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "artikel_ean", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "artikel_bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24744,10 +25539,10 @@ { "Field": "artikel_beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24799,10 +25594,10 @@ { "Field": "artikel_waehrung", "Type": "varchar(3)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24813,7 +25608,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24831,275 +25626,275 @@ }, { "Field": "artikel_umsatzsteuer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "artikel_einheit", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "artikel_zolltarifnummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "artikel_herkunftsland", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "artikel_artikelnummerkunde", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "artikel_freifeld1", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "artikel_freifeld2", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "artikel_freifeld3", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "artikel_freifeld4", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "artikel_freifeld5", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "artikel_freifeld6", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "artikel_freifeld7", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "artikel_freifeld8", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "artikel_freifeld9", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "artikel_freifeld10", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "artikel_freifeld11", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "artikel_freifeld12", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "artikel_freifeld13", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "artikel_freifeld14", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "artikel_freifeld15", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "artikel_freifeld16", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "artikel_freifeld17", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "artikel_freifeld18", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "artikel_freifeld19", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "artikel_freifeld20", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25128,33 +25923,33 @@ }, { "Field": "adresse_typ", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "adresse_ustid", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "adresse_anschreiben", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25172,220 +25967,220 @@ }, { "Field": "adresse_freifeld1", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "adresse_freifeld2", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "adresse_freifeld3", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "adresse_freifeld4", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "adresse_freifeld5", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "adresse_freifeld6", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "adresse_freifeld7", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "adresse_freifeld8", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "adresse_freifeld9", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "adresse_freifeld10", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "adresse_freifeld11", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "adresse_freifeld12", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "adresse_freifeld13", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "adresse_freifeld14", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "adresse_freifeld15", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "adresse_freifeld16", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "adresse_freifeld17", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "adresse_freifeld18", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "adresse_freifeld19", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "adresse_freifeld20", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25393,10 +26188,10 @@ { "Field": "beleg_sprache", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25404,10 +26199,10 @@ { "Field": "beleg_auftragsnummer", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25415,10 +26210,10 @@ { "Field": "beleg_rechnungsnumer", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25426,32 +26221,32 @@ { "Field": "beleg_liefername", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "beleg_lieferabteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "beleg_lieferunterabteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25459,32 +26254,32 @@ { "Field": "beleg_lieferland", "Type": "varchar(2)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "beleg_lieferstrasse", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "beleg_lieferort", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25492,32 +26287,32 @@ { "Field": "beleg_lieferplz", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "beleg_lieferadresszusatz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "beleg_lieferansprechpartner", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25525,21 +26320,21 @@ { "Field": "beleg_abschlagauftrag", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "beleg_abschlagauftragbezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25580,21 +26375,21 @@ { "Field": "beleg_bodyzusatz", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "beleg_bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25602,10 +26397,10 @@ { "Field": "beleg_waehrung", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25613,21 +26408,21 @@ { "Field": "beleg_bundesstaat", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "beleg_internet", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25636,6 +26431,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -25644,6 +26441,7 @@ }, { "name": "belegeimport_running", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -25652,7 +26450,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -25671,10 +26469,10 @@ { "Field": "art", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25682,10 +26480,10 @@ { "Field": "status", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25693,10 +26491,10 @@ { "Field": "filename", "Type": "varchar(256)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25704,10 +26502,10 @@ { "Field": "command", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25716,14 +26514,179 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] } ] - }, + }, + { + "name": "belegeregs", + "collation": null, + "type": "BASE TABLE", + "columns": [ + { + "Field": "id", + "Type": "int(11)", + "Collation": null, + "Null": "NO", + "Key": "", + "Default": "0", + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "adresse", + "Type": "int(11)", + "Collation": null, + "Null": "NO", + "Key": "", + "Default": "0", + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "datum", + "Type": "date", + "Collation": null, + "Null": "NO", + "Key": "", + "Default": "0000-00-00", + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "belegnr", + "Type": "mediumtext", + "Collation": "utf8mb4_general_ci", + "Null": "NO", + "Key": "", + "Default": "''", + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "status", + "Type": "varchar(64)", + "Collation": "utf8mb4_general_ci", + "Null": "NO", + "Key": "", + "Default": "''", + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "land", + "Type": "mediumtext", + "Collation": "utf8mb4_general_ci", + "Null": "NO", + "Key": "", + "Default": "''", + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "typ", + "Type": "varchar(10)", + "Collation": "utf8mb4_general_ci", + "Null": "NO", + "Key": "", + "Default": "''", + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "umsatz_netto", + "Type": "decimal(19,2)", + "Collation": null, + "Null": "NO", + "Key": "", + "Default": "0.00", + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "erloes_netto", + "Type": "decimal(19,2)", + "Collation": null, + "Null": "NO", + "Key": "", + "Default": "0.00", + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "deckungsbeitrag", + "Type": "decimal(11,2)", + "Collation": null, + "Null": "NO", + "Key": "", + "Default": "0.00", + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "provision_summe", + "Type": "decimal(11,2)", + "Collation": null, + "Null": "YES", + "Key": "", + "Default": null, + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "vertriebid", + "Type": "int(11)", + "Collation": null, + "Null": "YES", + "Key": "", + "Default": null, + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "gruppe", + "Type": "int(11)", + "Collation": null, + "Null": "NO", + "Key": "", + "Default": "0", + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "projekt", + "Type": "varchar(222)", + "Collation": "utf8mb4_general_ci", + "Null": "NO", + "Key": "", + "Default": "''", + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + } + ], + "keys": [] + }, { "name": "belegevorlagen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -25732,29 +26695,29 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "belegtyp", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25773,21 +26736,21 @@ { "Field": "json", "Type": "mediumtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25807,6 +26770,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -25815,6 +26780,7 @@ }, { "name": "berichte", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -25823,7 +26789,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -25831,10 +26797,10 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25842,10 +26808,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25853,10 +26819,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25864,10 +26830,10 @@ { "Field": "struktur", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25875,10 +26841,10 @@ { "Field": "spaltennamen", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25886,10 +26852,10 @@ { "Field": "spaltenbreite", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25897,10 +26863,10 @@ { "Field": "spaltenausrichtung", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25908,10 +26874,10 @@ { "Field": "variablen", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25919,10 +26885,10 @@ { "Field": "sumcols", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25930,10 +26896,10 @@ { "Field": "doctype", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25952,10 +26918,10 @@ { "Field": "doctype_actionmenuname", "Type": "varchar(256)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25963,7 +26929,7 @@ { "Field": "doctype_actionmenufiletype", "Type": "varchar(256)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'csv'", @@ -26007,10 +26973,10 @@ { "Field": "ftphost", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26021,7 +26987,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26029,10 +26995,10 @@ { "Field": "ftpuser", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26040,10 +27006,10 @@ { "Field": "ftppassword", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26054,7 +27020,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26065,7 +27031,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26073,10 +27039,10 @@ { "Field": "ftpnamealternativ", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26095,10 +27061,10 @@ { "Field": "emailempfaenger", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26106,10 +27072,10 @@ { "Field": "emailbetreff", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26120,7 +27086,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26131,7 +27097,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26139,10 +27105,10 @@ { "Field": "emailnamealternativ", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26150,7 +27116,7 @@ { "Field": "typ", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'ftp'", @@ -26162,12 +27128,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "doctype", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "doctype" ] @@ -26176,6 +27146,7 @@ }, { "name": "bestbeforebatchtoposition", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -26184,7 +27155,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -26192,10 +27163,10 @@ { "Field": "doctype", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26225,10 +27196,10 @@ { "Field": "bestbeforedatebatch", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26237,12 +27208,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "doctype", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "doctype", "doctype_id", @@ -26253,6 +27228,7 @@ }, { "name": "bestellung", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -26261,7 +27237,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -26272,7 +27248,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26280,54 +27256,54 @@ { "Field": "projekt", "Type": "varchar(222)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bestellungsart", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "belegnr", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "angebot", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26335,10 +27311,10 @@ { "Field": "freitext", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26346,10 +27322,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26357,10 +27333,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26371,106 +27347,106 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "vorname", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "abteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "unterabteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "strasse", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "adresszusatz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "plz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ort", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "land", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26481,117 +27457,117 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "liefername", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferabteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferunterabteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferland", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferstrasse", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferort", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferplz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferadresszusatz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferansprechpartner", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ustid", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26602,84 +27578,84 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "email", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "telefon", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "telefax", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "betreff", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kundennummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferantennummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versandart", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26690,18 +27666,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "einkaeufer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26712,29 +27688,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "zahlungsweise", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "zahlungsstatus", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26745,7 +27721,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26756,7 +27732,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26767,7 +27743,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26785,22 +27761,22 @@ }, { "Field": "bank_inhaber", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bank_institut", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26811,7 +27787,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26822,18 +27798,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "paypalaccount", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26844,7 +27820,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26855,7 +27831,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26866,7 +27842,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26877,29 +27853,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versendet_per", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versendet_durch", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26921,29 +27897,29 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ansprechpartner", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "anschreiben", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26954,7 +27930,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27027,11 +28003,11 @@ }, { "Field": "waehrung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "'EUR'", + "Default": "''EUR''", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27082,22 +28058,22 @@ }, { "Field": "typ", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "'firma'", + "Default": "''firma''", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "verbindlichkeiteninfo", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27108,7 +28084,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27141,7 +28117,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27149,10 +28125,10 @@ { "Field": "bestellungbestaetigtper", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27160,10 +28136,10 @@ { "Field": "bestellungbestaetigtabnummer", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27174,7 +28150,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27192,11 +28168,11 @@ }, { "Field": "internebezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27207,7 +28183,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27226,10 +28202,10 @@ { "Field": "sprache", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27237,10 +28213,10 @@ { "Field": "kundennummerlieferant", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27251,7 +28227,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27292,10 +28268,10 @@ { "Field": "kostenstelle", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27303,10 +28279,10 @@ { "Field": "bodyzusatz", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27314,10 +28290,10 @@ { "Field": "lieferbedingung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27325,10 +28301,10 @@ { "Field": "titel", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27336,10 +28312,10 @@ { "Field": "liefertitel", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27350,7 +28326,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27369,10 +28345,10 @@ { "Field": "bundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27380,10 +28356,10 @@ { "Field": "lieferbundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27392,42 +28368,56 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "projekt", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "projekt" ] }, { "Key_name": "adresse", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "adresse" ] }, { "Key_name": "status", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "status" ] }, { "Key_name": "datum", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "datum" ] }, { "Key_name": "belegnr", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "belegnr" ] }, { "Key_name": "versandart", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "versandart" ] @@ -27436,6 +28426,7 @@ }, { "name": "bestellung_position", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -27444,7 +28435,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -27455,7 +28446,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27466,7 +28457,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27477,29 +28468,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnunglieferant", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bestellnummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27507,10 +28498,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27521,7 +28512,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27539,11 +28530,11 @@ }, { "Field": "waehrung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27554,18 +28545,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "vpe", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27576,7 +28567,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27584,21 +28575,21 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "umsatzsteuer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27606,10 +28597,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27620,7 +28611,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27631,18 +28622,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "manuellgeliefertbearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27653,7 +28644,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27675,18 +28666,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "einheit", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27694,7 +28685,7 @@ { "Field": "zolltarifnummer", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'0'", @@ -27705,7 +28696,7 @@ { "Field": "herkunftsland", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'0'", @@ -27716,10 +28707,10 @@ { "Field": "artikelnummerkunde", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27749,10 +28740,10 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27760,10 +28751,10 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27771,10 +28762,10 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27782,10 +28773,10 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27793,10 +28784,10 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27804,10 +28795,10 @@ { "Field": "freifeld6", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27815,10 +28806,10 @@ { "Field": "freifeld7", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27826,10 +28817,10 @@ { "Field": "freifeld8", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27837,10 +28828,10 @@ { "Field": "freifeld9", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27848,10 +28839,10 @@ { "Field": "freifeld10", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27862,7 +28853,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27873,7 +28864,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27884,7 +28875,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27903,10 +28894,10 @@ { "Field": "kostenstelle", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27917,7 +28908,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27925,10 +28916,10 @@ { "Field": "steuertext", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27936,10 +28927,10 @@ { "Field": "erloese", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27958,10 +28949,10 @@ { "Field": "freifeld11", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27969,10 +28960,10 @@ { "Field": "freifeld12", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27980,10 +28971,10 @@ { "Field": "freifeld13", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27991,10 +28982,10 @@ { "Field": "freifeld14", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28002,10 +28993,10 @@ { "Field": "freifeld15", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28013,10 +29004,10 @@ { "Field": "freifeld16", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28024,10 +29015,10 @@ { "Field": "freifeld17", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28035,10 +29026,10 @@ { "Field": "freifeld18", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28046,10 +29037,10 @@ { "Field": "freifeld19", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28057,10 +29048,10 @@ { "Field": "freifeld20", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28068,10 +29059,10 @@ { "Field": "freifeld21", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28079,10 +29070,10 @@ { "Field": "freifeld22", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28090,10 +29081,10 @@ { "Field": "freifeld23", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28101,10 +29092,10 @@ { "Field": "freifeld24", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28112,10 +29103,10 @@ { "Field": "freifeld25", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28123,10 +29114,10 @@ { "Field": "freifeld26", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28134,10 +29125,10 @@ { "Field": "freifeld27", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28145,10 +29136,10 @@ { "Field": "freifeld28", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28156,10 +29147,10 @@ { "Field": "freifeld29", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28167,10 +29158,10 @@ { "Field": "freifeld30", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28178,10 +29169,10 @@ { "Field": "freifeld31", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28189,10 +29180,10 @@ { "Field": "freifeld32", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28200,10 +29191,10 @@ { "Field": "freifeld33", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28211,10 +29202,10 @@ { "Field": "freifeld34", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28222,10 +29213,10 @@ { "Field": "freifeld35", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28233,10 +29224,10 @@ { "Field": "freifeld36", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28244,10 +29235,10 @@ { "Field": "freifeld37", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28255,10 +29246,10 @@ { "Field": "freifeld38", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28266,10 +29257,10 @@ { "Field": "freifeld39", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28277,10 +29268,10 @@ { "Field": "freifeld40", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28291,7 +29282,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28302,7 +29293,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28313,7 +29304,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28324,7 +29315,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28335,7 +29326,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28344,12 +29335,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "bestellung", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "bestellung", "artikel" @@ -28357,12 +29352,16 @@ }, { "Key_name": "artikel", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "artikel" ] }, { "Key_name": "bestellung_2", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "bestellung" ] @@ -28371,6 +29370,7 @@ }, { "name": "bestellung_protokoll", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -28379,7 +29379,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -28390,7 +29390,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28401,29 +29401,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "grund", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28432,20 +29432,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "bestellung", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "bestellung" ] } ] }, - { + { "name": "bestellvorschlag", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -28486,6 +29491,7 @@ { "Key_name": "PRIMARY", "Index_type": "BTREE", + "Non_unique": "", "columns": [ "artikel", "user" @@ -28495,6 +29501,7 @@ }, { "name": "bestellvorschlag_app", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -28503,7 +29510,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -28654,10 +29661,10 @@ { "Field": "kommentar", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28676,10 +29683,10 @@ { "Field": "typ", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28765,18 +29772,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "artikel", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "artikel" ] }, { "Key_name": "user", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "user" ] @@ -28785,6 +29798,7 @@ }, { "name": "bestellvorschlag_app_staffeln", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -28793,7 +29807,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -28846,12 +29860,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "artikel", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "artikel" ] @@ -28860,6 +29878,7 @@ }, { "name": "boxnachrichten", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -28868,7 +29887,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -28897,11 +29916,11 @@ }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28909,10 +29928,10 @@ { "Field": "nachricht", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28952,11 +29971,11 @@ }, { "Field": "objekt", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28987,6 +30006,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -28995,6 +30016,7 @@ }, { "name": "bundesstaaten", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -29003,40 +30025,40 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "land", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "iso", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bundesstaat", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29056,6 +30078,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -29064,6 +30088,7 @@ }, { "name": "caldav_changes", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -29072,7 +30097,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -29080,10 +30105,10 @@ { "Field": "uri", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29091,10 +30116,10 @@ { "Field": "change_type", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29103,6 +30128,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -29111,6 +30138,7 @@ }, { "name": "calendar", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -29119,7 +30147,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -29139,6 +30167,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -29147,6 +30177,7 @@ }, { "name": "change_log", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -29155,7 +30186,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -29163,10 +30194,10 @@ { "Field": "bearbeiter", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29174,10 +30205,10 @@ { "Field": "module", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29185,10 +30216,10 @@ { "Field": "action", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29196,10 +30227,10 @@ { "Field": "tabelle", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29230,12 +30261,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "tableid", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "tableid" ] @@ -29244,6 +30279,7 @@ }, { "name": "change_log_field", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -29252,7 +30288,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -29271,10 +30307,10 @@ { "Field": "fieldname", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29282,10 +30318,10 @@ { "Field": "oldvalue", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29293,10 +30329,10 @@ { "Field": "newvalue", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29305,12 +30341,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "change_log", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "change_log" ] @@ -29319,6 +30359,7 @@ }, { "name": "chargen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -29327,7 +30368,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -29335,10 +30376,10 @@ { "Field": "charge", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29349,7 +30390,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29360,18 +30401,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "beschreibung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29382,7 +30423,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29393,18 +30434,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29415,7 +30456,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29424,6 +30465,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -29432,6 +30475,7 @@ }, { "name": "chargen_log", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -29440,7 +30484,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -29481,10 +30525,10 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29492,10 +30536,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29506,7 +30550,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29547,10 +30591,10 @@ { "Field": "doctype", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29603,18 +30647,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "doctypeid", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "doctypeid" ] }, { "Key_name": "doctype", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "doctype" ] @@ -29623,6 +30673,7 @@ }, { "name": "chargenverwaltung", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -29631,7 +30682,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -29642,7 +30693,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29653,7 +30704,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29664,18 +30715,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "vpe", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29686,18 +30737,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29717,6 +30768,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -29725,6 +30778,7 @@ }, { "name": "chat", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -29733,7 +30787,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -29763,10 +30817,10 @@ { "Field": "message", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29777,7 +30831,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29797,18 +30851,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "user_from", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "user_from" ] }, { "Key_name": "user_to", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "user_to" ] @@ -29817,6 +30877,7 @@ }, { "name": "chat_gelesen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -29825,7 +30886,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -29858,7 +30919,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29867,12 +30928,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "user", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "user", "message" @@ -29880,6 +30945,8 @@ }, { "Key_name": "message", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "message" ] @@ -29888,6 +30955,7 @@ }, { "name": "checkaltertable", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -29896,7 +30964,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -29904,10 +30972,10 @@ { "Field": "checksum", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29916,6 +30984,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -29924,6 +30994,7 @@ }, { "name": "collectivedebitor", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -29932,7 +31003,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -29943,7 +31014,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29961,11 +31032,11 @@ }, { "Field": "country", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29976,7 +31047,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29987,18 +31058,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "account", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30029,6 +31100,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -30037,6 +31110,7 @@ }, { "name": "cronjob_kommissionierung", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -30045,7 +31119,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -30064,10 +31138,10 @@ { "Field": "bezeichnung", "Type": "varchar(40)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30076,6 +31150,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -30084,6 +31160,7 @@ }, { "name": "cronjob_log", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -30092,7 +31169,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -30143,11 +31220,11 @@ }, { "Field": "cronjob_name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30166,10 +31243,10 @@ { "Field": "status", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30178,12 +31255,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "cronjob_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "cronjob_id", "change_time" @@ -30193,6 +31274,7 @@ }, { "name": "cronjob_starter_running", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -30201,7 +31283,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -30209,10 +31291,10 @@ { "Field": "uid", "Type": "varchar(23)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30231,10 +31313,10 @@ { "Field": "type", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30265,12 +31347,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "uid", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "uid", "type" @@ -30280,6 +31366,7 @@ }, { "name": "datei", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -30288,18 +31375,18 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "titel", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30307,21 +31394,21 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "nummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30332,7 +31419,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30354,7 +31441,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30363,6 +31450,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -30371,6 +31460,7 @@ }, { "name": "datei_stichwoerter", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -30379,7 +31469,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -30390,40 +31480,40 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "subjekt", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "objekt", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "parameter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30463,11 +31553,11 @@ }, { "Field": "objekt2", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30476,18 +31566,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "datei", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "datei" ] }, { "Key_name": "parameter", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "parameter" ] @@ -30496,6 +31592,7 @@ }, { "name": "datei_stichwortvorlagen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -30504,7 +31601,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -30512,10 +31609,10 @@ { "Field": "beschriftung", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30534,10 +31631,10 @@ { "Field": "modul", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30546,6 +31643,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -30554,6 +31653,7 @@ }, { "name": "datei_version", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -30562,7 +31662,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -30573,18 +31673,18 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ersteller", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30595,7 +31695,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30606,29 +31706,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "dateiname", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bemerkung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30646,11 +31746,11 @@ }, { "Field": "size", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30659,12 +31759,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "datei", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "datei" ] @@ -30673,6 +31777,7 @@ }, { "name": "dateibaum", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -30681,7 +31786,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -30700,10 +31805,10 @@ { "Field": "pfad", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30712,6 +31817,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -30720,6 +31827,7 @@ }, { "name": "datev_buchungen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -30728,18 +31836,18 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "wkz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30750,7 +31858,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30761,29 +31869,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "belegfeld1", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "belegfeld2", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30794,18 +31902,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "konto", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30816,40 +31924,40 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kost1", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kost2", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kostmenge", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30860,29 +31968,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "buchungstext", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30893,7 +32001,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30904,7 +32012,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30915,7 +32023,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30926,7 +32034,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30935,6 +32043,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -30943,6 +32053,7 @@ }, { "name": "datevconnect_online_export", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -30951,7 +32062,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -30959,10 +32070,10 @@ { "Field": "datum", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30981,10 +32092,10 @@ { "Field": "status", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30993,6 +32104,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -31001,6 +32114,7 @@ }, { "name": "delivery_problemcase", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -31009,18 +32123,18 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "problemcase", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31040,6 +32154,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -31048,6 +32164,7 @@ }, { "name": "device_jobs", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -31056,7 +32173,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -31064,10 +32181,10 @@ { "Field": "deviceidsource", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31075,10 +32192,10 @@ { "Field": "deviceiddest", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31086,10 +32203,10 @@ { "Field": "job", "Type": "longtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31100,7 +32217,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31119,10 +32236,10 @@ { "Field": "art", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31142,6 +32259,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -31150,6 +32269,7 @@ }, { "name": "docscan", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -31158,7 +32278,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -31169,7 +32289,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31177,10 +32297,10 @@ { "Field": "kategorie", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31189,6 +32309,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -31197,6 +32319,7 @@ }, { "name": "docscan_metadata", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -31205,7 +32328,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -31216,7 +32339,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31224,10 +32347,10 @@ { "Field": "meta_key", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31235,10 +32358,10 @@ { "Field": "meta_value", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31247,6 +32370,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -31255,6 +32380,7 @@ }, { "name": "document_customization_infoblock", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -31263,7 +32389,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -31271,10 +32397,10 @@ { "Field": "keyword", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31282,10 +32408,10 @@ { "Field": "doctype", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31293,10 +32419,10 @@ { "Field": "fontstyle", "Type": "varchar(2)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31304,10 +32430,10 @@ { "Field": "alignment", "Type": "varchar(2)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31315,10 +32441,10 @@ { "Field": "content", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31349,6 +32475,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -31357,6 +32485,7 @@ }, { "name": "document_customization_infoblock_translation", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -31365,7 +32494,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -31384,10 +32513,10 @@ { "Field": "language_code", "Type": "varchar(2)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31395,10 +32524,10 @@ { "Field": "content", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31417,10 +32546,10 @@ { "Field": "fontstyle", "Type": "varchar(2)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31428,10 +32557,10 @@ { "Field": "alignment", "Type": "varchar(2)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31440,12 +32569,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "document_customization_infoblock_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "document_customization_infoblock_id" ] @@ -31454,6 +32587,7 @@ }, { "name": "dokumente", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -31462,7 +32596,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -31473,7 +32607,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31484,7 +32618,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31492,10 +32626,10 @@ { "Field": "typ", "Type": "varchar(24)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31503,10 +32637,10 @@ { "Field": "von", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31514,10 +32648,10 @@ { "Field": "firma", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31525,43 +32659,43 @@ { "Field": "an", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "email_an", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "firma_an", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "adresse", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31569,21 +32703,21 @@ { "Field": "plz", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ort", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31591,10 +32725,10 @@ { "Field": "land", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31605,7 +32739,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31613,10 +32747,10 @@ { "Field": "betreff", "Type": "varchar(1023)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31624,10 +32758,10 @@ { "Field": "content", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31638,7 +32772,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31646,21 +32780,21 @@ { "Field": "send_as", "Type": "varchar(24)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "email", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31671,7 +32805,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31682,7 +32816,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31715,7 +32849,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31723,32 +32857,32 @@ { "Field": "ansprechpartner", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "email_cc", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "email_bcc", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31756,10 +32890,10 @@ { "Field": "bearbeiter", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31770,7 +32904,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31788,11 +32922,11 @@ }, { "Field": "internebezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31801,12 +32935,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "adresse_to", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "adresse_to" ] @@ -31815,6 +32953,7 @@ }, { "name": "dokumente_send", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -31823,18 +32962,18 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "dokument", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31845,18 +32984,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31867,18 +33006,18 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ansprechpartner", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31889,7 +33028,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31900,29 +33039,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "art", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "betreff", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31930,10 +33069,10 @@ { "Field": "text", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31944,7 +33083,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31955,7 +33094,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31977,7 +33116,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31986,12 +33125,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "adresse", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "adresse" ] @@ -32000,6 +33143,7 @@ }, { "name": "dropshipping", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -32008,7 +33152,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -32039,12 +33183,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "gruppe", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "gruppe" ] @@ -32053,6 +33201,7 @@ }, { "name": "dropshipping_gruppe", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -32061,7 +33210,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -32069,10 +33218,10 @@ { "Field": "bezeichnung", "Type": "varchar(200)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32311,7 +33460,7 @@ { "Field": "belegeautoversand", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'standardauftrag'", @@ -32323,12 +33472,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "adresse", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "adresse" ] @@ -32337,6 +33490,7 @@ }, { "name": "drucker", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -32345,40 +33499,40 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "befehl", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32389,7 +33543,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32400,18 +33554,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "tomail", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32419,10 +33573,10 @@ { "Field": "tomailtext", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32430,54 +33584,54 @@ { "Field": "tomailsubject", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "adapterboxip", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "adapterboxseriennummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "adapterboxpasswort", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "anbindung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32507,10 +33661,10 @@ { "Field": "format", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32529,10 +33683,10 @@ { "Field": "json", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32541,6 +33695,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -32549,6 +33705,7 @@ }, { "name": "drucker_spooler", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -32557,7 +33714,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -32576,10 +33733,10 @@ { "Field": "filename", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32590,7 +33747,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32598,10 +33755,10 @@ { "Field": "description", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32609,10 +33766,10 @@ { "Field": "anzahl", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32620,10 +33777,10 @@ { "Field": "befehl", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32631,10 +33788,10 @@ { "Field": "anbindung", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32645,7 +33802,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32676,18 +33833,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "drucker", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "drucker" ] }, { "Key_name": "user", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "user" ] @@ -32696,6 +33859,7 @@ }, { "name": "dsgvo_loeschauftrag", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -32704,7 +33868,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -32726,7 +33890,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32734,10 +33898,10 @@ { "Field": "kommentar", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32746,6 +33910,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -32754,6 +33920,7 @@ }, { "name": "dta", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -32762,7 +33929,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -32773,7 +33940,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32784,18 +33951,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32803,10 +33970,10 @@ { "Field": "konto", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32814,10 +33981,10 @@ { "Field": "blz", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32828,40 +33995,40 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "vz1", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "vz2", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "vz3", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32872,7 +34039,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32883,7 +34050,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32894,7 +34061,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32905,18 +34072,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "status", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32927,7 +34094,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32935,7 +34102,7 @@ { "Field": "waehrung", "Type": "varchar(3)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'EUR'", @@ -32979,10 +34146,10 @@ { "Field": "mandatsreferenzart", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32990,10 +34157,10 @@ { "Field": "mandatsreferenzwdhart", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33002,6 +34169,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -33010,6 +34179,7 @@ }, { "name": "dta_datei", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -33018,29 +34188,29 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33048,10 +34218,10 @@ { "Field": "inhalt", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33062,7 +34232,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33070,21 +34240,21 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "art", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33095,7 +34265,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33115,6 +34285,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -33123,6 +34295,7 @@ }, { "name": "dta_datei_verband", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -33131,7 +34304,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -33142,7 +34315,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33150,43 +34323,43 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "dateiname", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "email", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "betreff", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33194,10 +34367,10 @@ { "Field": "nachricht", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33208,18 +34381,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "status", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33259,22 +34432,22 @@ }, { "Field": "partnerid", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kundennummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33283,6 +34456,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -33291,6 +34466,7 @@ }, { "name": "eangenerator", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -33299,18 +34475,18 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ean", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33330,6 +34506,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -33338,6 +34516,7 @@ }, { "name": "ebay_articles_to_sync", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -33346,7 +34525,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -33357,29 +34536,29 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "request", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "type", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33390,7 +34569,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33410,18 +34589,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "article_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "article_id" ] }, { "Key_name": "shop_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "shop_id" ] @@ -33430,6 +34615,7 @@ }, { "name": "ebay_artikelzuordnungen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -33438,18 +34624,18 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "itemid", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33460,40 +34646,40 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "variation", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "sku", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33504,7 +34690,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33535,6 +34721,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -33543,6 +34731,7 @@ }, { "name": "ebay_auktionen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -33551,51 +34740,51 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bild", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "url", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "itemid", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "sku", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33606,18 +34795,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "typ", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33628,18 +34817,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "dauer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33650,7 +34839,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33716,7 +34905,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33736,6 +34925,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -33744,6 +34935,7 @@ }, { "name": "ebay_bulk_call", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -33752,7 +34944,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -33763,40 +34955,40 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "request", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "type", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "parameter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33816,12 +35008,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "shop_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "shop_id" ] @@ -33830,6 +35026,7 @@ }, { "name": "ebay_bulk_jobs", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -33838,40 +35035,40 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "job_id", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "file_id", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "response_file_id", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33882,73 +35079,73 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "uuid", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "type", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "description", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "notes", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "status", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "next_action", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33979,18 +35176,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "job_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "job_id" ] }, { "Key_name": "shop_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "shop_id" ] @@ -33999,6 +35202,7 @@ }, { "name": "ebay_fee_overview", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -34007,7 +35211,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -34018,18 +35222,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "itemid", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34040,40 +35244,40 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "fee_type", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "fee_description", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "fee_amount", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34091,11 +35295,11 @@ }, { "Field": "fee_memo", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34104,6 +35308,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -34112,6 +35318,7 @@ }, { "name": "ebay_kategoriespezifisch", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -34120,7 +35327,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -34131,7 +35338,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34142,7 +35349,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34153,7 +35360,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34164,7 +35371,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34175,40 +35382,40 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "specname", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "typ", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "cardinality", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34227,21 +35434,21 @@ { "Field": "options", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "val", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34261,6 +35468,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -34269,6 +35478,7 @@ }, { "name": "ebay_kategorievorschlag", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -34277,7 +35487,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -34288,18 +35498,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kategorie", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34310,40 +35520,40 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "vorschlagbezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "vorschlagparentsid", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "vorschlagparentsbezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34363,6 +35573,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -34371,6 +35583,7 @@ }, { "name": "ebay_kategoriezustand", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -34379,18 +35592,18 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kategorie", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34401,18 +35614,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34423,7 +35636,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34432,6 +35645,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -34440,6 +35655,7 @@ }, { "name": "ebay_picture_hosting_service", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -34448,7 +35664,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -34459,7 +35675,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34470,7 +35686,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34481,18 +35697,18 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "url", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34501,24 +35717,32 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "ebay_staging_listing_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "ebay_staging_listing_id" ] }, { "Key_name": "ebay_staging_listing_variation_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "ebay_staging_listing_variation_id" ] }, { "Key_name": "file_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "file_id" ] @@ -34527,6 +35751,7 @@ }, { "name": "ebay_rahmenbedingungen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -34535,7 +35760,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -34546,7 +35771,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34564,55 +35789,55 @@ }, { "Field": "profilid", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "profiltype", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "profilname", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "profilsummary", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "category", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34623,7 +35848,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34632,6 +35857,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -34640,6 +35867,7 @@ }, { "name": "ebay_rest_token", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -34648,7 +35876,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -34659,7 +35887,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34667,21 +35895,21 @@ { "Field": "token", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "scope", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34692,7 +35920,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34701,6 +35929,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -34709,6 +35939,7 @@ }, { "name": "ebay_staging_listing", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -34717,7 +35948,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -34728,7 +35959,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34739,7 +35970,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34757,88 +35988,88 @@ }, { "Field": "item_id_external", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ebay_primary_category_id_external", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ebay_primary_store_category_id_external", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ebay_secondary_store_category_id_external", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ebay_secondary_category_id_external", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ebay_shipping_profile_id_external", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ebay_return_profile_id_external", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ebay_payment_profile_id_external", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34878,121 +36109,121 @@ }, { "Field": "type", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "status", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "sku", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ean", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "title", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "listing_duration", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "inventory_tracking_method", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "condition_display_name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "condition_id_external", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "condition_description", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "delivery_time", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35000,10 +36231,10 @@ { "Field": "description", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35012,18 +36243,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "article_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "article_id" ] }, { "Key_name": "template_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "template_id" ] @@ -35032,6 +36269,7 @@ }, { "name": "ebay_staging_listing_specific", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -35040,7 +36278,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -35051,29 +36289,29 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "property", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "value", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35082,12 +36320,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "ebay_staging_listing_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "ebay_staging_listing_id" ] @@ -35096,6 +36338,7 @@ }, { "name": "ebay_staging_listing_variant", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -35104,7 +36347,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -35115,7 +36358,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35126,29 +36369,29 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "sku", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "title", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35157,18 +36400,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "article_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "article_id" ] }, { "Key_name": "ebay_staging_listing_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "ebay_staging_listing_id" ] @@ -35177,6 +36426,7 @@ }, { "name": "ebay_staging_listing_variant_specific", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -35185,7 +36435,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -35196,29 +36446,29 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "property", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "value", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35227,6 +36477,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -35235,6 +36487,7 @@ }, { "name": "ebay_storekategorien", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -35243,7 +36496,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -35254,7 +36507,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35265,29 +36518,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kategorie", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35296,6 +36549,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -35304,6 +36559,7 @@ }, { "name": "ebay_template", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -35312,7 +36568,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -35323,18 +36579,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35342,10 +36598,10 @@ { "Field": "template", "Type": "longtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35354,6 +36610,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -35362,6 +36620,7 @@ }, { "name": "ebay_variantenbilder", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -35370,7 +36629,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -35381,18 +36640,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "url", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35403,7 +36662,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35412,6 +36671,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -35420,6 +36681,7 @@ }, { "name": "ebay_versand", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -35428,40 +36690,40 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "beschreibung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "carrier", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "customcarrier", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35490,22 +36752,22 @@ }, { "Field": "service", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kategorie", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35536,6 +36798,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -35544,6 +36808,7 @@ }, { "name": "ebay_versand_zuordnung", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -35552,7 +36817,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -35594,6 +36859,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -35602,6 +36869,7 @@ }, { "name": "eigenschaften", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -35610,7 +36878,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -35640,10 +36908,10 @@ { "Field": "hauptkategorie", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35651,10 +36919,10 @@ { "Field": "unterkategorie", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35662,10 +36930,10 @@ { "Field": "einheit", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35673,10 +36941,10 @@ { "Field": "wert", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35685,6 +36953,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -35693,6 +36963,7 @@ }, { "name": "einkaufspreise", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -35701,7 +36972,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -35712,7 +36983,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35723,29 +36994,29 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "objekt", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "projekt", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35763,11 +37034,11 @@ }, { "Field": "waehrung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35786,7 +37057,7 @@ { "Field": "vpe", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'1'", @@ -35800,7 +37071,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35811,7 +37082,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35822,7 +37093,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35833,7 +37104,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35844,7 +37115,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35855,29 +37126,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bestellnummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnunglieferant", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35888,7 +37159,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35896,21 +37167,21 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35932,7 +37203,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35943,7 +37214,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35954,7 +37225,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35987,7 +37258,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35998,7 +37269,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36017,10 +37288,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36039,10 +37310,10 @@ { "Field": "lieferzeit_standard_einheit", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36050,10 +37321,10 @@ { "Field": "lieferzeit_aktuell_einheit", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36062,30 +37333,40 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "artikel", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "artikel" ] }, { "Key_name": "adresse", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "adresse" ] }, { "Key_name": "projekt", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "projekt" ] }, { "Key_name": "bestellnummer", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "bestellnummer" ] @@ -36094,6 +37375,7 @@ }, { "name": "emailbackup", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -36102,73 +37384,73 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "angezeigtername", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "internebeschreibung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "benutzername", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "passwort", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "server", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "smtp", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36179,7 +37461,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36190,18 +37472,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "imap_sentfolder", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "'inbox.sent'", + "Default": "''inbox.sent''", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36234,7 +37516,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36245,18 +37527,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "autoresponderbetreff", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36264,10 +37546,10 @@ { "Field": "autorespondertext", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36278,7 +37560,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36289,7 +37571,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36300,7 +37582,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36311,18 +37593,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "loeschtage", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36333,7 +37615,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36362,22 +37644,22 @@ }, { "Field": "ticketqueue", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ticketprojekt", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36429,10 +37711,10 @@ { "Field": "smtp_frommail", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36440,21 +37722,21 @@ { "Field": "smtp_fromname", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "client_alias", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36462,10 +37744,10 @@ { "Field": "smtp_authtype", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36473,10 +37755,10 @@ { "Field": "smtp_authparam", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36517,10 +37799,10 @@ { "Field": "signatur", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36542,7 +37824,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36550,10 +37832,10 @@ { "Field": "email", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36562,6 +37844,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -36570,6 +37854,7 @@ }, { "name": "emailbackup_mails", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -36578,7 +37863,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -36589,29 +37874,29 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "subject", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "sender", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36619,10 +37904,10 @@ { "Field": "action", "Type": "longtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36630,10 +37915,10 @@ { "Field": "action_html", "Type": "longtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36644,18 +37929,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "anhang", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36684,11 +37969,11 @@ }, { "Field": "checksum", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36729,10 +38014,10 @@ { "Field": "phpobj", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36743,7 +38028,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36754,7 +38039,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36805,22 +38090,22 @@ }, { "Field": "mail_replyto", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "verfasser_replyto", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36829,54 +38114,72 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "webmail", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "webmail" ] }, { "Key_name": "gelesen", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "gelesen" ] }, { "Key_name": "spam", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "spam" ] }, { "Key_name": "geloescht", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "geloescht" ] }, { "Key_name": "antworten", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "antworten" ] }, { "Key_name": "warteschlange", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "warteschlange" ] }, { "Key_name": "adresse", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "adresse" ] }, { "Key_name": "checksum", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "checksum" ] @@ -36885,6 +38188,7 @@ }, { "name": "epost_files", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -36893,7 +38197,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -36904,7 +38208,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36923,10 +38227,10 @@ { "Field": "status", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36934,10 +38238,10 @@ { "Field": "datei", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36946,6 +38250,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -36954,6 +38260,7 @@ }, { "name": "etiketten", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -36962,7 +38269,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -36970,10 +38277,10 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36981,10 +38288,10 @@ { "Field": "xml", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36992,10 +38299,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37014,10 +38321,10 @@ { "Field": "verwendenals", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37080,10 +38387,10 @@ { "Field": "format", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37114,6 +38421,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -37122,6 +38431,7 @@ }, { "name": "etsy_taxonomy", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -37130,73 +38440,73 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "title", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "path", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "description", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "version", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "id_external", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "parent_id_external", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "'0'", + "Default": "''0''", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37205,6 +38515,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -37213,6 +38525,7 @@ }, { "name": "etsy_transaction", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -37221,7 +38534,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -37232,18 +38545,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "etsy_transaction_id", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37254,29 +38567,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "etsy_title", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "etsy_buyer_email", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37287,7 +38600,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37298,7 +38611,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37307,6 +38620,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -37315,6 +38630,7 @@ }, { "name": "event", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -37323,29 +38639,29 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "beschreibung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kategorie", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37356,40 +38672,40 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "objekt", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "parameter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37398,6 +38714,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -37406,6 +38724,7 @@ }, { "name": "event_api", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -37414,7 +38733,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -37432,44 +38751,44 @@ }, { "Field": "eventname", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "parameter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "module", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "action", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37480,18 +38799,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kommentar", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37511,6 +38830,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -37519,6 +38840,7 @@ }, { "name": "exportlink_sent", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -37527,29 +38849,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "reg", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "grund", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37560,7 +38882,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37571,7 +38893,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37582,7 +38904,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37593,7 +38915,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37604,7 +38926,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37614,6 +38936,7 @@ }, { "name": "exportvorlage", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -37622,29 +38945,29 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ziel", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37652,10 +38975,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37663,10 +38986,10 @@ { "Field": "fields", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37674,10 +38997,10 @@ { "Field": "fields_where", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37688,29 +39011,29 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "mitarbeiterletzterexport", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "exporttrennzeichen", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37721,29 +39044,29 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "exportdatenmaskierung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "exportzeichensatz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37785,6 +39108,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -37793,6 +39118,7 @@ }, { "name": "extended_approval_protocol", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -37801,7 +39127,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -37819,22 +39145,22 @@ }, { "Field": "doctype", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "requestertype", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37863,11 +39189,11 @@ }, { "Field": "releasetype", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37885,11 +39211,11 @@ }, { "Field": "type", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37909,6 +39235,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -37917,6 +39245,7 @@ }, { "name": "extended_approval_responsibility", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -37925,29 +39254,29 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "doctype", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "requestertype", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37976,11 +39305,11 @@ }, { "Field": "releasetype", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38011,14 +39340,146 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] } ] }, + { + "name": "fakt_umsatz", + "collation": null, + "type": "BASE TABLE", + "columns": [ + { + "Field": "Datum", + "Type": "date", + "Collation": null, + "Null": "NO", + "Key": "", + "Default": "0000-00-00", + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "Jahr", + "Type": "varchar(4)", + "Collation": "utf8mb4_general_ci", + "Null": "YES", + "Key": "", + "Default": null, + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "Monat", + "Type": "varchar(2)", + "Collation": "utf8mb4_general_ci", + "Null": "YES", + "Key": "", + "Default": null, + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "Mitarbeiter_Adresse_ID", + "Type": "int(11)", + "Collation": null, + "Null": "YES", + "Key": "", + "Default": null, + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "Adresse_ID", + "Type": "int(11)", + "Collation": null, + "Null": "NO", + "Key": "", + "Default": "0", + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "Artikel_ID", + "Type": "int(11)", + "Collation": null, + "Null": "NO", + "Key": "", + "Default": "0", + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "Belegnummer", + "Type": "mediumtext", + "Collation": "utf8mb4_general_ci", + "Null": "NO", + "Key": "", + "Default": "''", + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "Menge", + "Type": "decimal(33,0)", + "Collation": null, + "Null": "YES", + "Key": "", + "Default": null, + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "Preis", + "Type": "decimal(35,2)", + "Collation": null, + "Null": "YES", + "Key": "", + "Default": null, + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "Einkaufspreis", + "Type": "decimal(13,2)", + "Collation": null, + "Null": "YES", + "Key": "", + "Default": null, + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "EK_manuell", + "Type": "int(11)", + "Collation": null, + "Null": "NO", + "Key": "", + "Default": "0", + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + } + ], + "keys": [] + }, { "name": "fee_reduction", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -38027,7 +39488,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -38035,10 +39496,10 @@ { "Field": "doctype", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38090,10 +39551,10 @@ { "Field": "price_type", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38101,10 +39562,10 @@ { "Field": "currency", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38112,10 +39573,10 @@ { "Field": "comment", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38135,24 +39596,32 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "doctype", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "doctype" ] }, { "Key_name": "doctype_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "doctype_id" ] }, { "Key_name": "price_type", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "price_type" ] @@ -38161,6 +39630,7 @@ }, { "name": "fibu_buchungen", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -38177,7 +39647,7 @@ { "Field": "von_typ", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -38199,7 +39669,7 @@ { "Field": "nach_typ", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -38232,7 +39702,7 @@ { "Field": "waehrung", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'EUR'", @@ -38265,7 +39735,7 @@ { "Field": "internebemerkung", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -38285,8 +39755,61 @@ } ] }, + { + "name": "fibu_objekte", + "collation": null, + "type": "BASE TABLE", + "columns": [ + { + "Field": "datum", + "Type": "varchar(10)", + "Collation": "utf8mb4_unicode_ci", + "Null": "YES", + "Key": "", + "Default": null, + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "typ", + "Type": "varchar(15)", + "Collation": "utf8mb4_general_ci", + "Null": "YES", + "Key": "", + "Default": null, + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "id", + "Type": "int(11)", + "Collation": null, + "Null": "NO", + "Key": "", + "Default": "0", + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "info", + "Type": "mediumtext", + "Collation": "utf8mb4_general_ci", + "Null": "YES", + "Key": "", + "Default": null, + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + } + ], + "keys": [] + }, { "name": "file_link", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -38295,7 +39818,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -38313,22 +39836,22 @@ }, { "Field": "label", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "file_link", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38336,10 +39859,10 @@ { "Field": "internal_note", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38348,6 +39871,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -38356,6 +39881,7 @@ }, { "name": "firma", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -38364,18 +39890,18 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38386,7 +39912,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38395,6 +39921,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -38403,6 +39931,7 @@ }, { "name": "firmendaten", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -38411,7 +39940,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -38422,7 +39951,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38433,7 +39962,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38444,7 +39973,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38452,10 +39981,10 @@ { "Field": "benutzername", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38463,10 +39992,10 @@ { "Field": "passwort", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38474,10 +40003,10 @@ { "Field": "host", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38485,10 +40014,10 @@ { "Field": "port", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38507,10 +40036,10 @@ { "Field": "signatur", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38521,7 +40050,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38584,10 +40113,10 @@ { "Field": "deviceserials", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38595,10 +40124,10 @@ { "Field": "lizenz", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38606,10 +40135,10 @@ { "Field": "schluessel", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38631,7 +40160,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38642,7 +40171,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38653,7 +40182,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38826,10 +40355,10 @@ { "Field": "zahlung_rechnung_sofort_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38837,10 +40366,10 @@ { "Field": "zahlung_rechnung_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38848,10 +40377,10 @@ { "Field": "zahlung_vorkasse_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38859,10 +40388,10 @@ { "Field": "zahlung_lastschrift_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38870,10 +40399,10 @@ { "Field": "zahlung_nachnahme_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38881,10 +40410,10 @@ { "Field": "zahlung_bar_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38892,10 +40421,10 @@ { "Field": "zahlung_paypal_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38903,10 +40432,10 @@ { "Field": "zahlung_amazon_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38914,10 +40443,10 @@ { "Field": "zahlung_kreditkarte_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38925,10 +40454,10 @@ { "Field": "zahlung_ratenzahlung_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38939,7 +40468,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38947,10 +40476,10 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38958,10 +40487,10 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38969,10 +40498,10 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38980,10 +40509,10 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38991,10 +40520,10 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39002,10 +40531,10 @@ { "Field": "freifeld6", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39013,10 +40542,10 @@ { "Field": "firmenfarbehell", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39024,10 +40553,10 @@ { "Field": "firmenfarbedunkel", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39035,10 +40564,10 @@ { "Field": "firmenfarbeganzdunkel", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39046,10 +40575,10 @@ { "Field": "navigationfarbe", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39057,10 +40586,10 @@ { "Field": "navigationfarbeschrift", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39068,10 +40597,10 @@ { "Field": "unternavigationfarbe", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39079,10 +40608,10 @@ { "Field": "unternavigationfarbeschrift", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39093,7 +40622,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39101,10 +40630,10 @@ { "Field": "rechnung_header", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39112,10 +40641,10 @@ { "Field": "lieferschein_header", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39123,10 +40652,10 @@ { "Field": "angebot_header", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39134,10 +40663,10 @@ { "Field": "auftrag_header", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39145,10 +40674,10 @@ { "Field": "gutschrift_header", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39156,10 +40685,10 @@ { "Field": "bestellung_header", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39167,10 +40696,10 @@ { "Field": "arbeitsnachweis_header", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39178,10 +40707,10 @@ { "Field": "provisionsgutschrift_header", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39189,10 +40718,10 @@ { "Field": "rechnung_footer", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39200,10 +40729,10 @@ { "Field": "lieferschein_footer", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39211,10 +40740,10 @@ { "Field": "angebot_footer", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39222,10 +40751,10 @@ { "Field": "auftrag_footer", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39233,10 +40762,10 @@ { "Field": "gutschrift_footer", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39244,10 +40773,10 @@ { "Field": "bestellung_footer", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39255,10 +40784,10 @@ { "Field": "arbeitsnachweis_footer", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39266,10 +40795,10 @@ { "Field": "provisionsgutschrift_footer", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39277,10 +40806,10 @@ { "Field": "eu_lieferung_vermerk", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39288,10 +40817,10 @@ { "Field": "export_lieferung_vermerk", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39299,10 +40828,10 @@ { "Field": "zahlung_amazon_bestellung_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39310,10 +40839,10 @@ { "Field": "zahlung_billsafe_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39321,10 +40850,10 @@ { "Field": "zahlung_sofortueberweisung_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39332,10 +40861,10 @@ { "Field": "zahlung_secupay_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39343,10 +40872,10 @@ { "Field": "adressefreifeld1", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39354,10 +40883,10 @@ { "Field": "adressefreifeld2", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39365,10 +40894,10 @@ { "Field": "adressefreifeld3", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39376,10 +40905,10 @@ { "Field": "adressefreifeld4", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39387,10 +40916,10 @@ { "Field": "adressefreifeld5", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39398,10 +40927,10 @@ { "Field": "adressefreifeld6", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39409,10 +40938,10 @@ { "Field": "adressefreifeld7", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39420,10 +40949,10 @@ { "Field": "adressefreifeld8", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39431,10 +40960,10 @@ { "Field": "adressefreifeld9", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39442,10 +40971,10 @@ { "Field": "adressefreifeld10", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39453,10 +40982,10 @@ { "Field": "zahlung_eckarte_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39464,10 +40993,10 @@ { "Field": "devicekey", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39478,7 +41007,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39489,7 +41018,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39497,10 +41026,10 @@ { "Field": "bcc1", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39508,10 +41037,10 @@ { "Field": "bcc2", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39519,10 +41048,10 @@ { "Field": "firmenfarbe", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39530,10 +41059,10 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39574,10 +41103,10 @@ { "Field": "email_html_template", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39585,10 +41114,10 @@ { "Field": "freifeld7", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39596,10 +41125,10 @@ { "Field": "freifeld8", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39607,10 +41136,10 @@ { "Field": "freifeld9", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39618,10 +41147,10 @@ { "Field": "freifeld10", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39629,10 +41158,10 @@ { "Field": "freifeld11", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39640,10 +41169,10 @@ { "Field": "freifeld12", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39651,10 +41180,10 @@ { "Field": "freifeld13", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39662,10 +41191,10 @@ { "Field": "freifeld14", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39673,10 +41202,10 @@ { "Field": "freifeld15", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39684,10 +41213,10 @@ { "Field": "freifeld16", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39695,10 +41224,10 @@ { "Field": "freifeld17", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39706,10 +41235,10 @@ { "Field": "freifeld18", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39717,10 +41246,10 @@ { "Field": "freifeld19", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39728,10 +41257,10 @@ { "Field": "freifeld20", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39739,10 +41268,10 @@ { "Field": "freifeld21", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39750,10 +41279,10 @@ { "Field": "freifeld22", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39761,10 +41290,10 @@ { "Field": "freifeld23", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39772,10 +41301,10 @@ { "Field": "freifeld24", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39783,10 +41312,10 @@ { "Field": "freifeld25", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39794,10 +41323,10 @@ { "Field": "freifeld26", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39805,10 +41334,10 @@ { "Field": "freifeld27", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39816,10 +41345,10 @@ { "Field": "freifeld28", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39827,10 +41356,10 @@ { "Field": "freifeld29", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39838,10 +41367,10 @@ { "Field": "freifeld30", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39849,10 +41378,10 @@ { "Field": "freifeld31", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39860,10 +41389,10 @@ { "Field": "freifeld32", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39871,10 +41400,10 @@ { "Field": "freifeld33", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39882,10 +41411,10 @@ { "Field": "freifeld34", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39893,10 +41422,10 @@ { "Field": "freifeld35", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39904,10 +41433,10 @@ { "Field": "freifeld36", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39915,10 +41444,10 @@ { "Field": "freifeld37", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39926,10 +41455,10 @@ { "Field": "freifeld38", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39937,10 +41466,10 @@ { "Field": "freifeld39", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39948,10 +41477,10 @@ { "Field": "freifeld40", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39959,10 +41488,10 @@ { "Field": "adressefreifeld11", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39970,10 +41499,10 @@ { "Field": "adressefreifeld12", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39981,10 +41510,10 @@ { "Field": "adressefreifeld13", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39992,10 +41521,10 @@ { "Field": "adressefreifeld14", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40003,10 +41532,10 @@ { "Field": "adressefreifeld15", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40014,10 +41543,10 @@ { "Field": "adressefreifeld16", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40025,10 +41554,10 @@ { "Field": "adressefreifeld17", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40036,10 +41565,10 @@ { "Field": "adressefreifeld18", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40047,10 +41576,10 @@ { "Field": "adressefreifeld19", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40058,10 +41587,10 @@ { "Field": "adressefreifeld20", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40069,10 +41598,10 @@ { "Field": "proformarechnung_header", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40080,10 +41609,10 @@ { "Field": "proformarechnung_footer", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40092,6 +41621,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -40100,6 +41631,7 @@ }, { "name": "firmendaten_werte", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -40108,7 +41640,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -40116,10 +41648,10 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40127,10 +41659,10 @@ { "Field": "typ", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40138,10 +41670,10 @@ { "Field": "typ1", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40149,10 +41681,10 @@ { "Field": "typ2", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40160,10 +41692,10 @@ { "Field": "wert", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40171,10 +41703,10 @@ { "Field": "default_value", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40205,6 +41737,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -40213,6 +41747,7 @@ }, { "name": "formeln", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -40221,29 +41756,29 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kennung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40254,7 +41789,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40262,10 +41797,10 @@ { "Field": "formel", "Type": "varchar(500)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40274,12 +41809,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "kennung", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "kennung" ] @@ -40288,6 +41827,7 @@ }, { "name": "formula_position", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -40296,7 +41836,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -40304,10 +41844,10 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40315,10 +41855,10 @@ { "Field": "formula", "Type": "varchar(500)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40326,10 +41866,10 @@ { "Field": "doctype", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40371,6 +41911,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -40379,6 +41921,7 @@ }, { "name": "free_article", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -40387,7 +41930,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -40462,6 +42005,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -40470,6 +42015,7 @@ }, { "name": "free_article_included", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -40478,7 +42024,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -40520,18 +42066,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "free_article_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "free_article_id" ] }, { "Key_name": "order_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "order_id" ] @@ -40540,6 +42092,7 @@ }, { "name": "geschaeftsbrief_vorlagen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -40548,29 +42101,29 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "sprache", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "betreff", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40578,21 +42131,21 @@ { "Field": "text", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "subjekt", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40603,7 +42156,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40614,7 +42167,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40623,6 +42176,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -40631,6 +42186,7 @@ }, { "name": "gls", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -40639,150 +42195,150 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "vorlage", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name2", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name3", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "telefon", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "email", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "land", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "plz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ort", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "strasse", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "hausnr", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "adresszusatz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "notiz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40802,6 +42358,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -40810,6 +42368,7 @@ }, { "name": "goodspostingdocument", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -40818,7 +42377,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -40826,10 +42385,10 @@ { "Field": "belegnr", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40837,7 +42396,7 @@ { "Field": "status", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'angelegt'", @@ -40848,10 +42407,10 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40862,7 +42421,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40881,10 +42440,10 @@ { "Field": "document_type", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40925,10 +42484,10 @@ { "Field": "storagesort", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40936,10 +42495,10 @@ { "Field": "document_info", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40948,6 +42507,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -40956,6 +42517,7 @@ }, { "name": "goodspostingdocument_movement", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -40964,7 +42526,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -40994,10 +42556,10 @@ { "Field": "serial", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41005,10 +42567,10 @@ { "Field": "batch", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41019,7 +42581,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41061,12 +42623,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "goodspostingdocument_position_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "goodspostingdocument_position_id" ] @@ -41075,6 +42641,7 @@ }, { "name": "goodspostingdocument_position", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -41083,7 +42650,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -41112,11 +42679,11 @@ }, { "Field": "reason", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41124,10 +42691,10 @@ { "Field": "relation_document", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41224,12 +42791,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "goodspostingdocument_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "goodspostingdocument_id" ] @@ -41238,6 +42809,7 @@ }, { "name": "goodspostingdocument_protocol", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -41246,7 +42818,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -41264,22 +42836,22 @@ }, { "Field": "message", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "created_by", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41299,12 +42871,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "goodspostingdocument_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "goodspostingdocument_id" ] @@ -41313,6 +42889,7 @@ }, { "name": "google_access_token", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -41321,7 +42898,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -41339,11 +42916,11 @@ }, { "Field": "token", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41354,7 +42931,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41363,12 +42940,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "google_account_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "google_account_id" ] @@ -41377,6 +42958,7 @@ }, { "name": "google_account", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -41385,7 +42967,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -41403,22 +42985,22 @@ }, { "Field": "refresh_token", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "identifier", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41427,12 +43009,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "user_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "user_id" ] @@ -41441,6 +43027,7 @@ }, { "name": "google_account_property", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -41449,7 +43036,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -41468,21 +43055,21 @@ { "Field": "varname", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "value", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41491,6 +43078,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -41499,6 +43088,7 @@ }, { "name": "google_account_scope", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -41507,7 +43097,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -41525,11 +43115,11 @@ }, { "Field": "scope", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41538,12 +43128,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "google_account_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "google_account_id" ] @@ -41552,6 +43146,7 @@ }, { "name": "googleapi", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -41560,40 +43155,40 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "description", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "type", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41611,44 +43206,44 @@ }, { "Field": "user", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "password", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "redirect_uri", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "token", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41659,18 +43254,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "refresh_token", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41681,18 +43276,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "id_name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41701,6 +43296,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -41709,6 +43306,7 @@ }, { "name": "googleapi_calendar_sync", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -41717,7 +43315,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -41735,11 +43333,11 @@ }, { "Field": "foreign_id", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41772,18 +43370,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "html_link", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41792,12 +43390,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "event_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "event_id" ] @@ -41806,6 +43408,7 @@ }, { "name": "googleapi_user", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -41814,7 +43417,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -41832,11 +43435,11 @@ }, { "Field": "googleapi_id_name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41865,33 +43468,33 @@ }, { "Field": "identifier", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "refresh_token", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "access_token", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41902,7 +43505,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41911,6 +43514,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -41919,6 +43524,7 @@ }, { "name": "gpsstechuhr", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -41927,7 +43533,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -41938,7 +43544,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41949,7 +43555,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41957,10 +43563,10 @@ { "Field": "koordinaten", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41971,7 +43577,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41980,6 +43586,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -41988,6 +43596,7 @@ }, { "name": "gruppen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -41996,7 +43605,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -42004,10 +43613,10 @@ { "Field": "name", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42015,21 +43624,21 @@ { "Field": "art", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kennziffer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42037,10 +43646,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42051,7 +43660,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42062,7 +43671,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42073,7 +43682,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42084,7 +43693,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42095,7 +43704,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42106,7 +43715,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42117,7 +43726,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42128,29 +43737,29 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kundennummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "partnerid", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42179,33 +43788,33 @@ }, { "Field": "dta_dateiname", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "dta_mail", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "dta_mail_betreff", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42213,10 +43822,10 @@ { "Field": "dta_mail_text", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42224,10 +43833,10 @@ { "Field": "dtavariablen", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42249,7 +43858,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42260,7 +43869,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42271,7 +43880,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42282,7 +43891,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42293,7 +43902,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42304,7 +43913,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42315,7 +43924,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42326,7 +43935,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42337,7 +43946,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42348,7 +43957,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42359,7 +43968,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42370,7 +43979,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42381,7 +43990,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42392,7 +44001,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42403,7 +44012,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42414,7 +44023,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42425,7 +44034,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42436,7 +44045,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42447,7 +44056,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42458,7 +44067,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42502,7 +44111,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42524,7 +44133,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42535,7 +44144,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42546,7 +44155,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42557,7 +44166,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42568,7 +44177,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42579,40 +44188,40 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "rechnung_name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "rechnung_strasse", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "rechnung_ort", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42620,43 +44229,43 @@ { "Field": "rechnung_plz", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "rechnung_abteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "rechnung_land", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "rechnung_email", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42667,7 +44276,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42678,7 +44287,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42689,7 +44298,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42697,10 +44306,10 @@ { "Field": "webid", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42711,7 +44320,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42730,10 +44339,10 @@ { "Field": "objektname", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42741,21 +44350,21 @@ { "Field": "objekttyp", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "parameter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42763,10 +44372,10 @@ { "Field": "objektname2", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42774,21 +44383,21 @@ { "Field": "objekttyp2", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "parameter2", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42796,10 +44405,10 @@ { "Field": "objektname3", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42807,21 +44416,21 @@ { "Field": "objekttyp3", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "parameter3", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42852,6 +44461,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -42860,6 +44471,7 @@ }, { "name": "gruppen_kategorien", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -42868,18 +44480,18 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42899,6 +44511,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -42907,6 +44521,7 @@ }, { "name": "gruppenmapping", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -42915,7 +44530,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -42944,33 +44559,33 @@ }, { "Field": "parameter1", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "'0'", + "Default": "''0''", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "parameter2", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "'0'", + "Default": "''0''", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "parameter3", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "'0'", + "Default": "''0''", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42981,7 +44596,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42992,7 +44607,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43001,12 +44616,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "gruppe", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "gruppe" ] @@ -43015,6 +44634,7 @@ }, { "name": "gruppenrechnung_auswahl", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -43023,7 +44643,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -43076,24 +44696,32 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "lieferschein", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "lieferschein" ] }, { "Key_name": "auftrag", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "auftrag" ] }, { "Key_name": "user", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "user" ] @@ -43102,6 +44730,7 @@ }, { "name": "gutschrift", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -43110,7 +44739,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -43121,7 +44750,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43129,32 +44758,32 @@ { "Field": "projekt", "Type": "varchar(222)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "anlegeart", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "belegnr", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43165,7 +44794,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43176,18 +44805,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43195,10 +44824,10 @@ { "Field": "freitext", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43206,10 +44835,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43217,10 +44846,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43231,106 +44860,106 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "abteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "unterabteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "strasse", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "adresszusatz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "plz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ort", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "land", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ustid", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43341,7 +44970,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43352,7 +44981,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43363,7 +44992,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43374,51 +45003,51 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "email", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "telefon", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "telefax", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "betreff", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43426,10 +45055,10 @@ { "Field": "kundennummer", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43440,18 +45069,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versandart", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43462,40 +45091,40 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "buchhaltung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "zahlungsweise", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "zahlungsstatus", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43528,7 +45157,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43539,7 +45168,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43550,7 +45179,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43561,29 +45190,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bank_inhaber", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bank_institut", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43594,7 +45223,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43605,51 +45234,51 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kreditkarte_typ", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kreditkarte_inhaber", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kreditkarte_nummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kreditkarte_pruefnummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43660,7 +45289,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43671,18 +45300,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "paypalaccount", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43693,7 +45322,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43704,7 +45333,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43715,29 +45344,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versendet_per", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versendet_durch", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43748,7 +45377,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43781,7 +45410,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43789,10 +45418,10 @@ { "Field": "manuell_vorabbezahlt_hinweis", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43869,7 +45498,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43877,21 +45506,21 @@ { "Field": "aktion", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "vertrieb", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43902,7 +45531,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43913,7 +45542,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43931,22 +45560,22 @@ }, { "Field": "ihrebestellnummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "anschreiben", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43957,7 +45586,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43979,7 +45608,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43990,7 +45619,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44001,7 +45630,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44012,7 +45641,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44023,7 +45652,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44034,7 +45663,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44045,7 +45674,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44107,11 +45736,11 @@ }, { "Field": "waehrung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "'EUR'", + "Default": "''EUR''", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44122,7 +45751,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44133,7 +45762,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44173,11 +45802,11 @@ }, { "Field": "typ", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "'firma'", + "Default": "''firma''", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44188,7 +45817,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44239,11 +45868,11 @@ }, { "Field": "internebezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44254,18 +45883,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ansprechpartner", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44273,10 +45902,10 @@ { "Field": "sprache", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44284,10 +45913,10 @@ { "Field": "gln", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44295,10 +45924,10 @@ { "Field": "deliverythresholdvatid", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44309,7 +45938,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44331,7 +45960,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44350,10 +45979,10 @@ { "Field": "kostenstelle", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44361,10 +45990,10 @@ { "Field": "bodyzusatz", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44372,10 +46001,10 @@ { "Field": "lieferbedingung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44383,10 +46012,10 @@ { "Field": "titel", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44397,7 +46026,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44427,10 +46056,10 @@ { "Field": "bundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44438,10 +46067,10 @@ { "Field": "kundennummer_buchhaltung", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44449,10 +46078,10 @@ { "Field": "storage_country", "Type": "varchar(3)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44461,48 +46090,64 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "projekt", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "projekt" ] }, { "Key_name": "adresse", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "adresse" ] }, { "Key_name": "vertriebid", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "vertriebid" ] }, { "Key_name": "status", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "status" ] }, { "Key_name": "datum", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "datum" ] }, { "Key_name": "belegnr", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "belegnr" ] }, { "Key_name": "versandart", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "versandart" ] @@ -44511,6 +46156,7 @@ }, { "name": "gutschrift_position", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -44519,7 +46165,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -44530,7 +46176,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44541,7 +46187,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44552,18 +46198,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44571,10 +46217,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44582,21 +46228,21 @@ { "Field": "internerkommentar", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "nummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44607,7 +46253,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44625,11 +46271,11 @@ }, { "Field": "waehrung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44640,18 +46286,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "vpe", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44662,7 +46308,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44670,21 +46316,21 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "umsatzsteuer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44692,10 +46338,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44739,7 +46385,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44750,7 +46396,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44761,7 +46407,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44772,7 +46418,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44783,7 +46429,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44794,7 +46440,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44805,7 +46451,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44816,18 +46462,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "einheit", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44838,7 +46484,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44846,7 +46492,7 @@ { "Field": "zolltarifnummer", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'0'", @@ -44857,7 +46503,7 @@ { "Field": "herkunftsland", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'0'", @@ -44868,10 +46514,10 @@ { "Field": "artikelnummerkunde", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44879,10 +46525,10 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44890,10 +46536,10 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44901,10 +46547,10 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44912,10 +46558,10 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44923,10 +46569,10 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44934,10 +46580,10 @@ { "Field": "freifeld6", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44945,10 +46591,10 @@ { "Field": "freifeld7", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44956,10 +46602,10 @@ { "Field": "freifeld8", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44967,10 +46613,10 @@ { "Field": "freifeld9", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44978,10 +46624,10 @@ { "Field": "freifeld10", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45022,10 +46668,10 @@ { "Field": "kostenstelle", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45036,7 +46682,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45044,10 +46690,10 @@ { "Field": "steuertext", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45055,10 +46701,10 @@ { "Field": "erloese", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45077,10 +46723,10 @@ { "Field": "einkaufspreiswaehrung", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45121,10 +46767,10 @@ { "Field": "ekwaehrung", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45143,10 +46789,10 @@ { "Field": "freifeld11", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45154,10 +46800,10 @@ { "Field": "freifeld12", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45165,10 +46811,10 @@ { "Field": "freifeld13", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45176,10 +46822,10 @@ { "Field": "freifeld14", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45187,10 +46833,10 @@ { "Field": "freifeld15", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45198,10 +46844,10 @@ { "Field": "freifeld16", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45209,10 +46855,10 @@ { "Field": "freifeld17", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45220,10 +46866,10 @@ { "Field": "freifeld18", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45231,10 +46877,10 @@ { "Field": "freifeld19", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45242,10 +46888,10 @@ { "Field": "freifeld20", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45253,10 +46899,10 @@ { "Field": "freifeld21", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45264,10 +46910,10 @@ { "Field": "freifeld22", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45275,10 +46921,10 @@ { "Field": "freifeld23", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45286,10 +46932,10 @@ { "Field": "freifeld24", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45297,10 +46943,10 @@ { "Field": "freifeld25", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45308,10 +46954,10 @@ { "Field": "freifeld26", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45319,10 +46965,10 @@ { "Field": "freifeld27", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45330,10 +46976,10 @@ { "Field": "freifeld28", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45341,10 +46987,10 @@ { "Field": "freifeld29", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45352,10 +46998,10 @@ { "Field": "freifeld30", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45363,10 +47009,10 @@ { "Field": "freifeld31", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45374,10 +47020,10 @@ { "Field": "freifeld32", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45385,10 +47031,10 @@ { "Field": "freifeld33", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45396,10 +47042,10 @@ { "Field": "freifeld34", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45407,10 +47053,10 @@ { "Field": "freifeld35", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45418,10 +47064,10 @@ { "Field": "freifeld36", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45429,10 +47075,10 @@ { "Field": "freifeld37", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45440,10 +47086,10 @@ { "Field": "freifeld38", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45451,10 +47097,10 @@ { "Field": "freifeld39", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45462,32 +47108,32 @@ { "Field": "freifeld40", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "formelmenge", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "formelpreis", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45509,7 +47155,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45520,7 +47166,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45531,7 +47177,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45542,7 +47188,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45553,7 +47199,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45564,7 +47210,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45597,7 +47243,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45608,7 +47254,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45619,7 +47265,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45630,7 +47276,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45639,18 +47285,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "gutschrift", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "gutschrift" ] }, { "Key_name": "artikel", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "artikel" ] @@ -45659,6 +47311,7 @@ }, { "name": "gutschrift_protokoll", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -45667,7 +47320,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -45678,7 +47331,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45689,29 +47342,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "grund", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45720,12 +47373,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "gutschrift", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "gutschrift" ] @@ -45734,6 +47391,7 @@ }, { "name": "hook", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -45742,7 +47400,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -45750,10 +47408,10 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45761,10 +47419,10 @@ { "Field": "alias", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45794,10 +47452,10 @@ { "Field": "description", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45806,18 +47464,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "name", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "name" ] }, { "Key_name": "alias", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "alias" ] @@ -45826,6 +47490,7 @@ }, { "name": "hook_action", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -45834,7 +47499,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -45853,10 +47518,10 @@ { "Field": "action", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45876,6 +47541,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -45884,6 +47551,7 @@ }, { "name": "hook_layout", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -45892,7 +47560,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -45900,10 +47568,10 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45911,10 +47579,10 @@ { "Field": "dokumenttyp", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45922,10 +47590,10 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45933,10 +47601,10 @@ { "Field": "funktion", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45944,10 +47612,10 @@ { "Field": "typ", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45955,10 +47623,10 @@ { "Field": "block", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45966,10 +47634,10 @@ { "Field": "blocktyp", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45989,6 +47657,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -45997,6 +47667,7 @@ }, { "name": "hook_menu", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -46005,7 +47676,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -46013,10 +47684,10 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46036,12 +47707,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "module", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "module" ] @@ -46050,6 +47725,7 @@ }, { "name": "hook_menu_register", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -46058,7 +47734,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -46077,10 +47753,10 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46088,10 +47764,10 @@ { "Field": "funktion", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46122,12 +47798,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "module", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "module" ] @@ -46136,6 +47816,7 @@ }, { "name": "hook_module", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -46144,7 +47825,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -46152,10 +47833,10 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46175,6 +47856,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -46183,6 +47866,7 @@ }, { "name": "hook_navigation", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -46191,7 +47875,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -46199,10 +47883,10 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46210,10 +47894,10 @@ { "Field": "action", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46221,10 +47905,10 @@ { "Field": "first", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46232,10 +47916,10 @@ { "Field": "sec", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46243,10 +47927,10 @@ { "Field": "aftersec", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46277,6 +47961,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -46285,6 +47971,7 @@ }, { "name": "hook_register", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -46293,7 +47980,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -46312,10 +47999,10 @@ { "Field": "function", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46356,10 +48043,10 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46379,12 +48066,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "hook", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "hook" ] @@ -46393,6 +48084,7 @@ }, { "name": "importmasterdata", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -46401,7 +48093,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -46452,33 +48144,33 @@ }, { "Field": "filename", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "status", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "'created'", + "Default": "''created''", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "message", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46498,24 +48190,32 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "status", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "status" ] }, { "Key_name": "user_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "user_id" ] }, { "Key_name": "template_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "template_id" ] @@ -46524,6 +48224,7 @@ }, { "name": "importvorlage", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -46532,29 +48233,29 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ziel", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46562,10 +48263,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46573,10 +48274,10 @@ { "Field": "fields", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46587,29 +48288,29 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "mitarbeiterletzterimport", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "importtrennzeichen", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46620,29 +48321,29 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "importdatenmaskierung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "importzeichensatz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46661,7 +48362,7 @@ { "Field": "charset", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'utf8'", @@ -46673,6 +48374,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -46681,6 +48384,7 @@ }, { "name": "importvorlage_log", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -46689,7 +48393,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -46700,7 +48404,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46722,18 +48426,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "tabelle", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46744,7 +48448,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46764,6 +48468,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -46772,6 +48478,7 @@ }, { "name": "inhalt", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -46780,29 +48487,29 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "sprache", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "inhalt", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46810,10 +48517,10 @@ { "Field": "kurztext", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46821,21 +48528,21 @@ { "Field": "html", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "title", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46843,10 +48550,10 @@ { "Field": "description", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46854,21 +48561,21 @@ { "Field": "keywords", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "inhaltstyp", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46879,7 +48586,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46890,7 +48597,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46901,7 +48608,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46912,40 +48619,40 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "template", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "finalparse", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "navigation", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46954,6 +48661,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -46962,6 +48671,7 @@ }, { "name": "inventur", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -46970,7 +48680,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -46981,7 +48691,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46989,43 +48699,43 @@ { "Field": "projekt", "Type": "varchar(222)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "belegnr", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "auftrag", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47036,7 +48746,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47044,21 +48754,21 @@ { "Field": "freitext", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "status", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47069,7 +48779,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47080,194 +48790,194 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "abteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "unterabteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "strasse", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "adresszusatz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ansprechpartner", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "plz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ort", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "land", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ustid", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "email", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "telefon", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "telefax", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "betreff", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kundennummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versandart", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versand", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47278,7 +48988,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47289,7 +48999,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47300,29 +49010,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versendet_per", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versendet_durch", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47333,7 +49043,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47355,7 +49065,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47366,7 +49076,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47419,6 +49129,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -47427,6 +49139,7 @@ }, { "name": "inventur_position", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -47435,7 +49148,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -47446,7 +49159,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47457,7 +49170,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47468,29 +49181,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "nummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47498,10 +49211,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47509,10 +49222,10 @@ { "Field": "internerkommentar", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47523,7 +49236,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47534,7 +49247,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47542,10 +49255,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47556,7 +49269,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47576,12 +49289,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "inventur", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "inventur", "artikel" @@ -47591,6 +49308,7 @@ }, { "name": "inventur_protokoll", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -47599,7 +49317,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -47610,7 +49328,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47621,29 +49339,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "grund", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47652,12 +49370,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "inventur", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "inventur" ] @@ -47666,6 +49388,7 @@ }, { "name": "item_template", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -47674,7 +49397,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -47692,22 +49415,22 @@ }, { "Field": "type", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47727,6 +49450,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -47735,6 +49460,7 @@ }, { "name": "jqcalendar", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -47743,7 +49469,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -47754,18 +49480,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "titel", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47773,21 +49499,21 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ort", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47798,7 +49524,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47809,7 +49535,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47829,6 +49555,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -47837,6 +49565,7 @@ }, { "name": "kalender", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -47845,18 +49574,18 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "'default'", + "Default": "''default''", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47864,7 +49593,7 @@ { "Field": "farbe", "Type": "varchar(15)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'3300ff'", @@ -47876,6 +49605,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -47884,6 +49615,7 @@ }, { "name": "kalender_event", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -47892,7 +49624,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -47910,11 +49642,11 @@ }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47922,10 +49654,10 @@ { "Field": "beschreibung", "Type": "longtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47966,7 +49698,7 @@ { "Field": "color", "Type": "varchar(7)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'#6f93db'", @@ -47988,10 +49720,10 @@ { "Field": "ort", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48057,7 +49789,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48076,10 +49808,10 @@ { "Field": "typ", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48087,10 +49819,10 @@ { "Field": "uri", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48098,10 +49830,10 @@ { "Field": "uid", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48110,12 +49842,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "adresse", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "adresse" ] @@ -48124,6 +49860,7 @@ }, { "name": "kalender_gruppen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -48132,18 +49869,18 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48151,10 +49888,10 @@ { "Field": "farbe", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48174,6 +49911,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -48182,6 +49921,7 @@ }, { "name": "kalender_gruppen_mitglieder", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -48190,7 +49930,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -48201,7 +49941,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48212,7 +49952,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48223,7 +49963,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48232,18 +49972,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "kalendergruppe", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "kalendergruppe" ] }, { "Key_name": "adresse", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "adresse" ] @@ -48252,6 +49998,7 @@ }, { "name": "kalender_temp", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -48260,7 +50007,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48271,7 +50018,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48279,10 +50026,10 @@ { "Field": "szelle", "Type": "varchar(15)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48293,7 +50040,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48301,10 +50048,10 @@ { "Field": "ndatum", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48315,7 +50062,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48347,6 +50094,7 @@ }, { "name": "kalender_user", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -48355,7 +50103,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -48366,7 +50114,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48377,7 +50125,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48397,18 +50145,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "userid", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "userid" ] }, { "Key_name": "event", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "event" ] @@ -48417,6 +50171,7 @@ }, { "name": "kasse", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -48425,7 +50180,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -48436,18 +50191,18 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "auswahl", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48458,7 +50213,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48469,18 +50224,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "grund", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48491,18 +50246,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48513,7 +50268,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48524,7 +50279,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48535,7 +50290,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48546,7 +50301,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48696,11 +50451,11 @@ }, { "Field": "storniert_grund", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48708,10 +50463,10 @@ { "Field": "storniert_bearbeiter", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48719,10 +50474,10 @@ { "Field": "sachkonto", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48730,10 +50485,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48744,7 +50499,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48753,12 +50508,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "datum", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "datum" ] @@ -48767,6 +50526,7 @@ }, { "name": "kasse_log", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -48775,7 +50535,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -48804,11 +50564,11 @@ }, { "Field": "beschreibung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48839,6 +50599,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -48847,6 +50609,7 @@ }, { "name": "kommissionierung", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -48855,7 +50618,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -48873,11 +50636,11 @@ }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48895,11 +50658,11 @@ }, { "Field": "kommentar", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48929,10 +50692,10 @@ { "Field": "bezeichnung", "Type": "varchar(40)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48952,6 +50715,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -48960,6 +50725,7 @@ }, { "name": "kommissionierung_position", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -48968,7 +50734,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -49021,6 +50787,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -49029,6 +50797,7 @@ }, { "name": "kommissionierung_position_ls", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -49037,7 +50806,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -49101,6 +50870,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -49109,6 +50880,7 @@ }, { "name": "kommissionskonsignationslager_positionen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -49117,7 +50889,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -49247,12 +51019,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "adresse", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "adresse" ] @@ -49261,15 +51037,16 @@ }, { "name": "konfiguration", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49277,10 +51054,10 @@ { "Field": "wert", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49291,7 +51068,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49302,7 +51079,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49311,6 +51088,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "name" ] @@ -49319,6 +51098,7 @@ }, { "name": "konten", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -49327,40 +51107,40 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kurzbezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "type", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49368,10 +51148,10 @@ { "Field": "erstezeile", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49382,51 +51162,51 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "blz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "konto", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "swift", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "iban", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49437,7 +51217,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49448,7 +51228,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49456,21 +51236,21 @@ { "Field": "hbcikennung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "inhaber", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49481,7 +51261,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49492,7 +51272,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49503,7 +51283,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49533,10 +51313,10 @@ { "Field": "liveimport", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49544,10 +51324,10 @@ { "Field": "liveimport_passwort", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49558,29 +51338,29 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "importtrennzeichen", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "codierung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49591,18 +51371,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "importdatenmaskierung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49613,7 +51393,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49621,10 +51401,10 @@ { "Field": "glaeubiger", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49679,106 +51459,106 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "importfelddatum", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "importfelddatumformat", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "importfelddatumformatausgabe", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "importfeldbetrag", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "importfeldbetragformat", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "importfeldbuchungstext", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "importfeldbuchungstextformat", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "importfeldwaehrung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "importfeldwaehrungformat", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49786,10 +51566,10 @@ { "Field": "importfeldhabensollkennung", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49797,10 +51577,10 @@ { "Field": "importfeldkennunghaben", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49808,10 +51588,10 @@ { "Field": "importfeldkennungsoll", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49830,10 +51610,10 @@ { "Field": "importfeldhaben", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49841,10 +51621,10 @@ { "Field": "importfeldsoll", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49897,12 +51677,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "projekt", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "projekt" ] @@ -49911,6 +51695,7 @@ }, { "name": "kontoauszuege", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -49919,7 +51704,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -49930,7 +51715,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49941,7 +51726,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49952,7 +51737,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49960,10 +51745,10 @@ { "Field": "vorgang", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49971,10 +51756,10 @@ { "Field": "originalvorgang", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49985,7 +51770,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49996,7 +51781,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50007,7 +51792,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50018,7 +51803,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50029,7 +51814,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50040,29 +51825,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "waehrung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "originalwaehrung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50073,7 +51858,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50084,51 +51869,51 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "buchungstext", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "gegenkonto", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "belegfeld1", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50139,18 +51924,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "pruefsumme", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50158,10 +51943,10 @@ { "Field": "kostenstelle", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50172,7 +51957,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50194,7 +51979,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50202,10 +51987,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50216,7 +52001,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50246,10 +52031,10 @@ { "Field": "doctype", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50260,7 +52045,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50268,21 +52053,21 @@ { "Field": "vorauswahltyp", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "vorauswahlparameter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50300,11 +52085,11 @@ }, { "Field": "klaergrund", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50312,21 +52097,32 @@ { "Field": "bezugtyp", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezugparameter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "vorauswahlvorschlag", + "Type": "int(11)", + "Collation": null, + "Null": "NO", + "Key": "", + "Default": "0", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50337,7 +52133,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50346,24 +52142,32 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "konto", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "konto" ] }, { "Key_name": "parent", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "parent" ] }, { "Key_name": "gegenkonto", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "gegenkonto" ] @@ -50372,6 +52176,7 @@ }, { "name": "kontoauszuege_zahlungsausgang", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -50380,7 +52185,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -50391,18 +52196,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50413,7 +52218,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50424,18 +52229,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "objekt", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50446,7 +52251,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50457,7 +52262,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50468,7 +52273,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50479,7 +52284,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50488,18 +52293,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "kontoauszuege", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "kontoauszuege" ] }, { "Key_name": "parameter", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "parameter" ] @@ -50508,6 +52319,7 @@ }, { "name": "kontoauszuege_zahlungseingang", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -50516,7 +52328,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -50527,18 +52339,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50549,7 +52361,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50560,18 +52372,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "objekt", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50582,7 +52394,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50593,7 +52405,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50604,7 +52416,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50615,7 +52427,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50626,7 +52438,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50635,18 +52447,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "kontoauszuege", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "kontoauszuege" ] }, { "Key_name": "parameter", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "parameter" ] @@ -50655,6 +52473,7 @@ }, { "name": "kontorahmen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -50663,7 +52482,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -50671,10 +52490,10 @@ { "Field": "sachkonto", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50682,10 +52501,10 @@ { "Field": "beschriftung", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50693,10 +52512,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50738,6 +52557,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -50746,6 +52567,7 @@ }, { "name": "kontorahmen_checked", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -50754,7 +52576,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -50765,7 +52587,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50776,7 +52598,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50785,6 +52607,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -50793,6 +52617,7 @@ }, { "name": "kopiebelegempfaenger", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -50801,40 +52626,40 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "belegtyp", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "art", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "projekt", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50852,22 +52677,22 @@ }, { "Field": "empfaenger_email", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "empfaenger_name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50878,7 +52703,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50889,7 +52714,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50920,6 +52745,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -50928,6 +52755,7 @@ }, { "name": "kostenstelle", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -50936,51 +52764,51 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "projekt", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "verantwortlicher", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "logdatei", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50989,6 +52817,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -50997,6 +52827,7 @@ }, { "name": "kostenstelle_buchung", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -51005,7 +52836,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -51016,40 +52847,40 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "datum", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "buchungstext", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51057,10 +52888,10 @@ { "Field": "sonstiges", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51069,6 +52900,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -51077,6 +52910,7 @@ }, { "name": "kostenstellen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -51085,7 +52919,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -51093,10 +52927,10 @@ { "Field": "nummer", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51104,10 +52938,10 @@ { "Field": "beschreibung", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51115,10 +52949,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51127,6 +52961,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -51135,6 +52971,7 @@ }, { "name": "kundevorlage", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -51143,7 +52980,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -51154,18 +52991,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "zahlungsweise", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51176,7 +53013,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51187,7 +53024,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51198,18 +53035,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versandart", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51229,6 +53066,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -51237,6 +53076,7 @@ }, { "name": "label_automatic", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -51245,7 +53085,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -51275,10 +53115,10 @@ { "Field": "action", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51286,10 +53126,10 @@ { "Field": "selection", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51298,6 +53138,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -51306,6 +53148,7 @@ }, { "name": "label_group", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -51314,7 +53157,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -51322,10 +53165,10 @@ { "Field": "group_table", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "UNI", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51333,10 +53176,10 @@ { "Field": "title", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51356,12 +53199,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "group_table", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "group_table" ] @@ -51370,6 +53217,7 @@ }, { "name": "label_reference", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -51378,7 +53226,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -51389,7 +53237,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51397,10 +53245,10 @@ { "Field": "reference_table", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51411,7 +53259,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51431,12 +53279,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "label_type_id", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "label_type_id", "reference_table", @@ -51445,6 +53297,8 @@ }, { "Key_name": "label_type_id_2", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "label_type_id", "reference_table", @@ -51453,6 +53307,8 @@ }, { "Key_name": "label_type_id_3", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "label_type_id", "reference_table", @@ -51461,6 +53317,8 @@ }, { "Key_name": "label_type_id_4", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "label_type_id", "reference_table", @@ -51469,6 +53327,8 @@ }, { "Key_name": "label_type_id_5", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "label_type_id", "reference_table", @@ -51477,6 +53337,8 @@ }, { "Key_name": "label_type_id_6", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "label_type_id", "reference_table", @@ -51487,6 +53349,7 @@ }, { "name": "label_type", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -51495,7 +53358,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -51514,10 +53377,10 @@ { "Field": "type", "Type": "varchar(24)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "UNI", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51525,10 +53388,10 @@ { "Field": "title", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51536,7 +53399,7 @@ { "Field": "hexcolor", "Type": "varchar(7)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'#ffffff'", @@ -51570,12 +53433,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "type", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "type" ] @@ -51584,6 +53451,7 @@ }, { "name": "laender", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -51592,7 +53460,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -51600,10 +53468,10 @@ { "Field": "iso", "Type": "varchar(3)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51611,10 +53479,10 @@ { "Field": "iso3", "Type": "varchar(3)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51622,32 +53490,32 @@ { "Field": "num_code", "Type": "varchar(3)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung_de", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung_en", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51667,6 +53535,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -51675,6 +53545,7 @@ }, { "name": "lager", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -51683,18 +53554,18 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51702,10 +53573,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51716,7 +53587,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51727,7 +53598,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51738,7 +53609,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51780,6 +53651,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -51788,6 +53661,7 @@ }, { "name": "lager_bewegung", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -51796,7 +53670,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -51807,7 +53681,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51818,7 +53692,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51836,11 +53710,11 @@ }, { "Field": "vpe", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51851,7 +53725,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51862,29 +53736,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "referenz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51895,7 +53769,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51906,7 +53780,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51928,7 +53802,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51961,7 +53835,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51969,10 +53843,10 @@ { "Field": "doctype", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52014,18 +53888,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "artikel", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "artikel" ] }, { "Key_name": "adresse", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "adresse" ] @@ -52034,6 +53914,7 @@ }, { "name": "lager_charge", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -52042,7 +53923,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -52050,10 +53931,10 @@ { "Field": "charge", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52064,7 +53945,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52075,7 +53956,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52097,7 +53978,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52108,7 +53989,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52116,10 +53997,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52128,18 +54009,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "lager_platz", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "lager_platz" ] }, { "Key_name": "artikel", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "artikel" ] @@ -52148,6 +54035,7 @@ }, { "name": "lager_differenzen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -52156,7 +54044,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -52167,7 +54055,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52178,7 +54066,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52189,7 +54077,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52200,7 +54088,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52211,7 +54099,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52222,7 +54110,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52233,7 +54121,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52244,7 +54132,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52253,6 +54141,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -52261,6 +54151,7 @@ }, { "name": "lager_mindesthaltbarkeitsdatum", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -52269,7 +54160,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -52280,7 +54171,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52291,7 +54182,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52302,7 +54193,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52324,7 +54215,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52335,7 +54226,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52343,10 +54234,10 @@ { "Field": "charge", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52354,10 +54245,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52366,18 +54257,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "lager_platz", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "lager_platz" ] }, { "Key_name": "artikel", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "artikel" ] @@ -52386,6 +54283,7 @@ }, { "name": "lager_platz", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -52394,7 +54292,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -52405,18 +54303,18 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kurzbezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52424,10 +54322,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52438,7 +54336,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52449,7 +54347,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52460,7 +54358,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52567,10 +54465,10 @@ { "Field": "abckategorie", "Type": "varchar(1)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52578,10 +54476,10 @@ { "Field": "regalart", "Type": "varchar(100)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52612,12 +54510,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "lager", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "lager" ] @@ -52626,6 +54528,7 @@ }, { "name": "lager_platz_inhalt", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -52634,7 +54537,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -52645,7 +54548,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52656,7 +54559,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52674,22 +54577,22 @@ }, { "Field": "vpe", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52700,7 +54603,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52711,7 +54614,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52722,7 +54625,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52744,7 +54647,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52764,18 +54667,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "artikel", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "artikel" ] }, { "Key_name": "lager_platz", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "lager_platz" ] @@ -52784,6 +54693,7 @@ }, { "name": "lager_platz_vpe", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -52792,7 +54702,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -52803,7 +54713,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52944,6 +54854,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -52952,6 +54864,7 @@ }, { "name": "lager_reserviert", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -52960,7 +54873,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -52971,7 +54884,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52982,7 +54895,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53000,33 +54913,33 @@ }, { "Field": "grund", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "objekt", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "parameter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53037,7 +54950,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53048,18 +54961,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53070,7 +54983,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53123,12 +55036,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "adresse", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "adresse", "artikel" @@ -53136,6 +55053,8 @@ }, { "Key_name": "objekt", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "objekt" ] @@ -53144,6 +55063,7 @@ }, { "name": "lager_seriennummern", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -53152,7 +55072,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -53163,7 +55083,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53174,7 +55094,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53185,7 +55105,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53193,10 +55113,10 @@ { "Field": "seriennummer", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53204,10 +55124,10 @@ { "Field": "charge", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53218,7 +55138,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53226,10 +55146,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53238,6 +55158,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -53246,6 +55168,7 @@ }, { "name": "lagermindestmengen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -53254,7 +55177,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -53298,7 +55221,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53309,7 +55232,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53329,12 +55252,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "artikel", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "artikel", "lager_platz" @@ -53344,6 +55271,7 @@ }, { "name": "lagerstueckliste", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -53352,7 +55280,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -53405,12 +55333,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "artikel", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "artikel" ] @@ -53419,6 +55351,7 @@ }, { "name": "lagerwert", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -53427,7 +55360,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -53438,7 +55371,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53515,7 +55448,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53548,7 +55481,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53556,10 +55489,10 @@ { "Field": "waehrungkalk", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53567,10 +55500,10 @@ { "Field": "waehrungletzt", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53601,18 +55534,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "artikel", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "artikel" ] }, { "Key_name": "datum", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "datum" ] @@ -53621,6 +55560,7 @@ }, { "name": "layouttemplate_attachment", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -53629,18 +55569,18 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "module", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53680,22 +55620,22 @@ }, { "Field": "language", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "country", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53735,11 +55675,11 @@ }, { "Field": "filename", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53748,6 +55688,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -53756,6 +55698,7 @@ }, { "name": "layouttemplate_attachment_items", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -53764,18 +55707,18 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "object", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53817,6 +55760,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -53825,6 +55770,7 @@ }, { "name": "layoutvorlagen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -53833,7 +55779,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -53841,10 +55787,10 @@ { "Field": "name", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53852,10 +55798,10 @@ { "Field": "typ", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53866,7 +55812,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53874,10 +55820,10 @@ { "Field": "format", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53885,10 +55831,10 @@ { "Field": "kategorie", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53908,6 +55854,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -53916,6 +55864,7 @@ }, { "name": "layoutvorlagen_positionen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -53924,7 +55873,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -53943,10 +55892,10 @@ { "Field": "name", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53954,10 +55903,10 @@ { "Field": "beschreibung", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53965,10 +55914,10 @@ { "Field": "typ", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53976,10 +55925,10 @@ { "Field": "position_typ", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54042,10 +55991,10 @@ { "Field": "schrift_art", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54075,10 +56024,10 @@ { "Field": "schrift_farbe", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54086,10 +56035,10 @@ { "Field": "schrift_align", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54097,10 +56046,10 @@ { "Field": "hintergrund_farbe", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54108,10 +56057,10 @@ { "Field": "rahmen", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54119,10 +56068,10 @@ { "Field": "rahmen_farbe", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54141,10 +56090,10 @@ { "Field": "inhalt_deutsch", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54152,10 +56101,10 @@ { "Field": "inhalt_englisch", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54166,7 +56115,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54177,7 +56126,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54218,10 +56167,10 @@ { "Field": "bild_deutsch_typ", "Type": "varchar(5)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54229,10 +56178,10 @@ { "Field": "bild_englisch_typ", "Type": "varchar(5)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54274,12 +56223,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "layoutvorlage", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "layoutvorlage" ] @@ -54288,6 +56241,7 @@ }, { "name": "lieferadressen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -54296,139 +56250,139 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "typ", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "sprache", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "abteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "unterabteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "land", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "strasse", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ort", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "plz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "telefon", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "telefax", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "email", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54436,32 +56390,32 @@ { "Field": "sonstiges", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "adresszusatz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "steuer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54469,10 +56423,10 @@ { "Field": "adresse", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54490,11 +56444,11 @@ }, { "Field": "ansprechpartner", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54513,10 +56467,10 @@ { "Field": "interne_bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54524,10 +56478,10 @@ { "Field": "hinweis", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54535,10 +56489,10 @@ { "Field": "gln", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54546,10 +56500,10 @@ { "Field": "ustid", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54557,10 +56511,10 @@ { "Field": "lieferbedingung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54568,10 +56522,10 @@ { "Field": "ust_befreit", "Type": "varchar(1)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54580,12 +56534,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "adresse", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "adresse" ] @@ -54594,6 +56552,7 @@ }, { "name": "lieferantvorlage", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -54602,7 +56561,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -54613,29 +56572,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kundennummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "zahlungsweise", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54646,7 +56605,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54657,7 +56616,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54668,18 +56627,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versandart", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54699,6 +56658,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -54707,6 +56668,7 @@ }, { "name": "lieferbedingungen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -54715,7 +56677,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -54723,10 +56685,10 @@ { "Field": "lieferbedingungen", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54734,10 +56696,10 @@ { "Field": "kennzeichen", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54746,6 +56708,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -54754,6 +56718,7 @@ }, { "name": "lieferschein", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -54762,7 +56727,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -54773,7 +56738,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54781,54 +56746,54 @@ { "Field": "projekt", "Type": "varchar(222)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferscheinart", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "belegnr", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "auftrag", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54839,7 +56804,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54847,10 +56812,10 @@ { "Field": "freitext", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54858,10 +56823,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54872,161 +56837,161 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "abteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "unterabteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "strasse", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "adresszusatz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ansprechpartner", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "plz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ort", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "land", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ustid", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "email", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "telefon", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "telefax", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "betreff", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55034,32 +56999,32 @@ { "Field": "kundennummer", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versandart", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versand", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55070,7 +57035,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55081,7 +57046,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55092,29 +57057,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versendet_per", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versendet_durch", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55125,7 +57090,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55147,18 +57112,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "vertrieb", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55169,29 +57134,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ihrebestellnummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "anschreiben", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55202,7 +57167,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55232,10 +57197,10 @@ { "Field": "lieferantenretoureinfo", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55286,11 +57251,11 @@ }, { "Field": "typ", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "'firma'", + "Default": "''firma''", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55298,10 +57263,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55312,7 +57277,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55374,11 +57339,11 @@ }, { "Field": "internebezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55389,7 +57354,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55408,10 +57373,10 @@ { "Field": "sprache", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55419,10 +57384,10 @@ { "Field": "bundesland", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55430,10 +57395,10 @@ { "Field": "gln", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55455,7 +57420,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55477,7 +57442,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55496,10 +57461,10 @@ { "Field": "kostenstelle", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55507,10 +57472,10 @@ { "Field": "bodyzusatz", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55518,10 +57483,10 @@ { "Field": "lieferbedingung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55529,10 +57494,10 @@ { "Field": "titel", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55562,10 +57527,10 @@ { "Field": "bundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55607,60 +57572,80 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "projekt", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "projekt" ] }, { "Key_name": "adresse", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "adresse" ] }, { "Key_name": "auftragid", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "auftragid" ] }, { "Key_name": "land", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "land" ] }, { "Key_name": "status", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "status" ] }, { "Key_name": "datum", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "datum" ] }, { "Key_name": "belegnr", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "belegnr" ] }, { "Key_name": "keinerechnung", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "keinerechnung" ] }, { "Key_name": "versandart", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "versandart" ] @@ -55669,6 +57654,7 @@ }, { "name": "lieferschein_position", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -55677,7 +57663,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -55688,7 +57674,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55699,7 +57685,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55710,18 +57696,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55729,10 +57715,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55740,32 +57726,32 @@ { "Field": "internerkommentar", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "nummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "seriennummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55776,7 +57762,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55787,18 +57773,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "vpe", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55809,7 +57795,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55817,10 +57803,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55828,10 +57814,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55842,7 +57828,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55853,7 +57839,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55882,11 +57868,11 @@ }, { "Field": "einheit", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55894,7 +57880,7 @@ { "Field": "zolltarifnummer", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'0'", @@ -55905,7 +57891,7 @@ { "Field": "herkunftsland", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'0'", @@ -55916,10 +57902,10 @@ { "Field": "artikelnummerkunde", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55927,10 +57913,10 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55938,10 +57924,10 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55949,10 +57935,10 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55960,10 +57946,10 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55971,10 +57957,10 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55982,10 +57968,10 @@ { "Field": "freifeld6", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55993,10 +57979,10 @@ { "Field": "freifeld7", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56004,10 +57990,10 @@ { "Field": "freifeld8", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56015,10 +58001,10 @@ { "Field": "freifeld9", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56026,10 +58012,10 @@ { "Field": "freifeld10", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56069,11 +58055,11 @@ }, { "Field": "lagertext", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56103,10 +58089,10 @@ { "Field": "freifeld11", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56114,10 +58100,10 @@ { "Field": "freifeld12", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56125,10 +58111,10 @@ { "Field": "freifeld13", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56136,10 +58122,10 @@ { "Field": "freifeld14", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56147,10 +58133,10 @@ { "Field": "freifeld15", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56158,10 +58144,10 @@ { "Field": "freifeld16", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56169,10 +58155,10 @@ { "Field": "freifeld17", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56180,10 +58166,10 @@ { "Field": "freifeld18", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56191,10 +58177,10 @@ { "Field": "freifeld19", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56202,10 +58188,10 @@ { "Field": "freifeld20", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56213,10 +58199,10 @@ { "Field": "freifeld21", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56224,10 +58210,10 @@ { "Field": "freifeld22", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56235,10 +58221,10 @@ { "Field": "freifeld23", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56246,10 +58232,10 @@ { "Field": "freifeld24", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56257,10 +58243,10 @@ { "Field": "freifeld25", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56268,10 +58254,10 @@ { "Field": "freifeld26", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56279,10 +58265,10 @@ { "Field": "freifeld27", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56290,10 +58276,10 @@ { "Field": "freifeld28", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56301,10 +58287,10 @@ { "Field": "freifeld29", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56312,10 +58298,10 @@ { "Field": "freifeld30", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56323,10 +58309,10 @@ { "Field": "freifeld31", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56334,10 +58320,10 @@ { "Field": "freifeld32", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56345,10 +58331,10 @@ { "Field": "freifeld33", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56356,10 +58342,10 @@ { "Field": "freifeld34", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56367,10 +58353,10 @@ { "Field": "freifeld35", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56378,10 +58364,10 @@ { "Field": "freifeld36", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56389,10 +58375,10 @@ { "Field": "freifeld37", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56400,10 +58386,10 @@ { "Field": "freifeld38", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56411,10 +58397,10 @@ { "Field": "freifeld39", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56422,10 +58408,10 @@ { "Field": "freifeld40", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56455,10 +58441,10 @@ { "Field": "zollwaehrung", "Type": "varchar(3)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56487,22 +58473,22 @@ }, { "Field": "nve", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "packstueck", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56544,24 +58530,32 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "lieferschein", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "lieferschein" ] }, { "Key_name": "artikel", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "artikel" ] }, { "Key_name": "auftrag_position_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "auftrag_position_id" ] @@ -56570,6 +58564,7 @@ }, { "name": "lieferschein_protokoll", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -56578,7 +58573,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -56589,7 +58584,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56600,29 +58595,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "grund", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56631,12 +58626,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "lieferschein", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "lieferschein" ] @@ -56645,6 +58644,7 @@ }, { "name": "lieferschwelle", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -56653,29 +58653,29 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ursprungsland", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "empfaengerland", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56693,11 +58693,11 @@ }, { "Field": "ustid", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56708,7 +58708,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56719,7 +58719,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56730,7 +58730,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56741,7 +58741,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56752,7 +58752,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56763,7 +58763,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56774,7 +58774,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56785,7 +58785,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56826,10 +58826,10 @@ { "Field": "jahr", "Type": "varchar(4)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56849,12 +58849,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "empfaengerland", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "empfaengerland" ] @@ -56863,6 +58867,7 @@ }, { "name": "lieferschwelle_artikel", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -56871,7 +58876,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -56889,11 +58894,11 @@ }, { "Field": "empfaengerland", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56904,18 +58909,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bemerkung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56935,18 +58940,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "empfaengerland", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "empfaengerland" ] }, { "Key_name": "artikel", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "artikel" ] @@ -56955,6 +58966,7 @@ }, { "name": "liefertermine_positionen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -56963,7 +58975,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -57007,7 +59019,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57016,6 +59028,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -57024,6 +59038,7 @@ }, { "name": "linkeditor", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -57032,7 +59047,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -57040,10 +59055,10 @@ { "Field": "rule", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57051,10 +59066,10 @@ { "Field": "replacewith", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57062,7 +59077,7 @@ { "Field": "active", "Type": "varchar(1)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'1'", @@ -57074,6 +59089,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -57082,6 +59099,7 @@ }, { "name": "log", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -57090,7 +59108,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -57101,7 +59119,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57109,10 +59127,10 @@ { "Field": "level", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57120,21 +59138,21 @@ { "Field": "message", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "class", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57142,10 +59160,10 @@ { "Field": "method", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57156,7 +59174,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57164,21 +59182,21 @@ { "Field": "origin_type", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "origin_detail", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57186,10 +59204,10 @@ { "Field": "dump", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57198,6 +59216,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -57206,6 +59226,7 @@ }, { "name": "logdatei", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -57214,40 +59235,40 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "befehl", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "statement", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57258,7 +59279,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57269,7 +59290,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57278,6 +59299,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -57286,6 +59309,7 @@ }, { "name": "logfile", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -57294,7 +59318,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -57302,10 +59326,10 @@ { "Field": "meldung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57313,10 +59337,10 @@ { "Field": "dump", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57324,10 +59348,10 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57335,10 +59359,10 @@ { "Field": "action", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57346,10 +59370,10 @@ { "Field": "bearbeiter", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57357,10 +59381,10 @@ { "Field": "funktionsname", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57371,7 +59395,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57380,6 +59404,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -57388,6 +59414,7 @@ }, { "name": "magento2_extended_mapping", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -57396,7 +59423,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -57407,40 +59434,40 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "magento2_extended_mapping_name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "magento2_extended_mapping_type", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "magento2_extended_mapping_parameter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57482,12 +59509,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "shopexport_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "shopexport_id" ] @@ -57496,6 +59527,7 @@ }, { "name": "mailausgang", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -57504,18 +59536,18 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "subject", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57526,40 +59558,40 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "from", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "to", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "status", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "'0'", + "Default": "''0''", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57581,7 +59613,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57590,6 +59622,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -57598,6 +59632,7 @@ }, { "name": "managementboard_liquiditaet", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -57606,7 +59641,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -57614,10 +59649,10 @@ { "Field": "bezeichnung", "Type": "varchar(200)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57628,7 +59663,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57639,7 +59674,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57681,6 +59716,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -57689,6 +59726,7 @@ }, { "name": "managementboard_liquiditaet_datum", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -57697,7 +59735,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -57705,10 +59743,10 @@ { "Field": "doctype", "Type": "varchar(200)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57730,7 +59768,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57739,6 +59777,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -57747,6 +59787,7 @@ }, { "name": "mandatory_field", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -57755,62 +59796,62 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "module", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "action", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "field_id", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "error_message", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "type", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57851,21 +59892,21 @@ { "Field": "comparator", "Type": "varchar(15)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "compareto", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57874,18 +59915,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "module", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "module" ] }, { "Key_name": "action", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "action" ] @@ -57894,6 +59941,7 @@ }, { "name": "massenbearbeitung", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -57902,7 +59950,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -57913,18 +59961,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "feld", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57932,32 +59980,32 @@ { "Field": "wert", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "subjekt", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "objekt", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57966,6 +60014,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -57974,6 +60024,7 @@ }, { "name": "matrix_article_options_translation", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -57982,7 +60033,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -57993,73 +60044,73 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "language_from", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name_from", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name_external_from", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "language_to", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name_to", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name_external_to", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58067,10 +60118,10 @@ { "Field": "articlenumber_suffix_from", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58078,10 +60129,10 @@ { "Field": "articlenumber_suffix_to", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58092,7 +60143,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58101,6 +60152,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -58109,6 +60162,7 @@ }, { "name": "matrix_article_translation", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -58117,73 +60171,73 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "language_from", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name_from", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name_external_from", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "language_to", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name_to", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name_external_to", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58194,7 +60248,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58214,6 +60268,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -58222,6 +60278,7 @@ }, { "name": "matrix_list_view", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -58230,7 +60287,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -58260,21 +60317,21 @@ { "Field": "article_number", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "hash", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58282,10 +60339,10 @@ { "Field": "dimension1", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58304,10 +60361,10 @@ { "Field": "dimension2", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58326,10 +60383,10 @@ { "Field": "dimension3", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58348,10 +60405,10 @@ { "Field": "dimension4", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58370,10 +60427,10 @@ { "Field": "dimension5", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58392,10 +60449,10 @@ { "Field": "dimension6", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58414,10 +60471,10 @@ { "Field": "dimension7", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58436,10 +60493,10 @@ { "Field": "dimension8", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58458,10 +60515,10 @@ { "Field": "dimension9", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58480,10 +60537,10 @@ { "Field": "dimension10", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58502,10 +60559,10 @@ { "Field": "dimension11", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58524,10 +60581,10 @@ { "Field": "dimension12", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58546,10 +60603,10 @@ { "Field": "dimension13", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58568,10 +60625,10 @@ { "Field": "dimension14", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58590,10 +60647,10 @@ { "Field": "dimension15", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58612,10 +60669,10 @@ { "Field": "dimension16", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58634,10 +60691,10 @@ { "Field": "dimension17", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58656,10 +60713,10 @@ { "Field": "dimension18", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58678,10 +60735,10 @@ { "Field": "dimension19", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58700,10 +60757,10 @@ { "Field": "dimension20", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58723,12 +60780,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "matrix_article_id", + "Index_type": "HASH", + "Non_unique": "", "columns": [ "matrix_article_id", "hash" @@ -58738,6 +60799,7 @@ }, { "name": "matrix_list_view_status", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -58746,7 +60808,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -58788,12 +60850,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "matrix_article_id", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "matrix_article_id" ] @@ -58802,6 +60868,7 @@ }, { "name": "matrixprodukt_eigenschaftengruppen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -58810,7 +60877,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -58828,22 +60895,22 @@ }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name_ext", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58861,11 +60928,11 @@ }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58896,6 +60963,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -58904,6 +60973,7 @@ }, { "name": "matrixprodukt_eigenschaftengruppen_artikel", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -58912,7 +60982,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -58941,22 +61011,22 @@ }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name_ext", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58974,11 +61044,11 @@ }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59042,12 +61112,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "artikel", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "artikel" ] @@ -59056,6 +61130,7 @@ }, { "name": "matrixprodukt_eigenschaftenoptionen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -59064,7 +61139,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -59093,22 +61168,22 @@ }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name_ext", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59137,11 +61212,11 @@ }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59149,10 +61224,10 @@ { "Field": "artikelnummer", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59160,10 +61235,10 @@ { "Field": "articlenumber_suffix", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59172,6 +61247,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -59180,6 +61257,7 @@ }, { "name": "matrixprodukt_eigenschaftenoptionen_artikel", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -59188,7 +61266,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -59228,22 +61306,22 @@ }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name_ext", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59283,11 +61361,11 @@ }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59295,10 +61373,10 @@ { "Field": "artikelnummer", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59306,10 +61384,10 @@ { "Field": "articlenumber_suffix", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59318,12 +61396,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "gruppe", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "gruppe" ] @@ -59332,6 +61414,7 @@ }, { "name": "matrixprodukt_optionen_zu_artikel", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -59340,7 +61423,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -59371,18 +61454,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "option_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "option_id" ] }, { "Key_name": "artikel", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "artikel" ] @@ -59391,6 +61480,7 @@ }, { "name": "maximum_discount", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -59399,7 +61489,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -59430,6 +61520,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -59438,6 +61530,7 @@ }, { "name": "mhd_log", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -59446,7 +61539,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -59490,7 +61583,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59498,10 +61591,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59512,7 +61605,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59553,10 +61646,10 @@ { "Field": "doctype", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59585,11 +61678,11 @@ }, { "Field": "charge", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59620,18 +61713,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "doctypeid", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "doctypeid" ] }, { "Key_name": "doctype", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "doctype" ] @@ -59640,6 +61739,7 @@ }, { "name": "mitarbeiterzeiterfassung", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -59648,7 +61748,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -59667,10 +61767,10 @@ { "Field": "kuerzel", "Type": "varchar(50)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59681,7 +61781,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59692,7 +61792,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59714,7 +61814,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59725,7 +61825,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59766,10 +61866,10 @@ { "Field": "buchungsart", "Type": "varchar(100)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59789,6 +61889,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -59797,6 +61899,7 @@ }, { "name": "mitarbeiterzeiterfassung_einstellungen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -59805,7 +61908,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -59823,11 +61926,11 @@ }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59923,7 +62026,7 @@ { "Field": "rundenkommen", "Type": "varchar(48)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'nicht_runden'", @@ -59934,7 +62037,7 @@ { "Field": "rundengehen", "Type": "varchar(48)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'nicht_runden'", @@ -60155,6 +62258,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -60163,6 +62268,7 @@ }, { "name": "mitarbeiterzeiterfassung_sollstunden", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -60171,7 +62277,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -60193,7 +62299,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60267,21 +62373,21 @@ { "Field": "kuerzel", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kommentar", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60292,7 +62398,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60303,7 +62409,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60311,10 +62417,10 @@ { "Field": "rundenkommen", "Type": "varchar(48)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60322,10 +62428,10 @@ { "Field": "rundengehen", "Type": "varchar(48)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60336,7 +62442,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60347,7 +62453,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60358,7 +62464,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60369,7 +62475,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60380,7 +62486,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60391,7 +62497,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60402,7 +62508,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60413,7 +62519,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60424,7 +62530,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60435,7 +62541,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60468,7 +62574,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60476,21 +62582,21 @@ { "Field": "vacation_request_token", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "internal_comment", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60499,18 +62605,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "adresse", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "adresse" ] }, { "Key_name": "datum", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "datum" ] @@ -60519,6 +62631,7 @@ }, { "name": "mlm_abrechnung", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -60527,7 +62640,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -60538,7 +62651,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60549,7 +62662,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60560,7 +62673,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60602,6 +62715,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -60610,6 +62725,7 @@ }, { "name": "mlm_abrechnung_adresse", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -60618,7 +62734,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -60651,7 +62767,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60662,7 +62778,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60673,7 +62789,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60681,10 +62797,10 @@ { "Field": "mlmabrechnung", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60692,10 +62808,10 @@ { "Field": "alteposition", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60703,10 +62819,10 @@ { "Field": "neueposition", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60714,10 +62830,10 @@ { "Field": "erreichteposition", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60736,7 +62852,7 @@ { "Field": "waehrung", "Type": "varchar(3)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'EUR'", @@ -60769,10 +62885,10 @@ { "Field": "rechnung_name", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60780,10 +62896,10 @@ { "Field": "rechnung_strasse", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60791,10 +62907,10 @@ { "Field": "rechnung_ort", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60802,10 +62918,10 @@ { "Field": "rechnung_plz", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60813,10 +62929,10 @@ { "Field": "rechnung_land", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60824,10 +62940,10 @@ { "Field": "steuernummer", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60868,10 +62984,10 @@ { "Field": "bezahlt_bearbeiter", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60882,7 +62998,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60890,10 +63006,10 @@ { "Field": "bezahlt_status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60902,6 +63018,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -60910,6 +63028,7 @@ }, { "name": "mlm_abrechnung_log", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -60918,7 +63037,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -60947,11 +63066,11 @@ }, { "Field": "meldung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60960,6 +63079,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -60968,6 +63089,7 @@ }, { "name": "mlm_downline", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -60976,7 +63098,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -61007,6 +63129,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -61015,6 +63139,7 @@ }, { "name": "mlm_positionierung", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -61023,7 +63148,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -61041,11 +63166,11 @@ }, { "Field": "positionierung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61056,7 +63181,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61067,7 +63192,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61109,6 +63234,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -61117,6 +63244,7 @@ }, { "name": "mlm_wartekonto", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -61125,7 +63253,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -61154,11 +63282,11 @@ }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61166,10 +63294,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61180,7 +63308,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61233,6 +63361,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -61241,6 +63371,7 @@ }, { "name": "module_action", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -61249,29 +63380,29 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "module", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "action", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61280,12 +63411,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "module", + "Index_type": "HASH", + "Non_unique": "", "columns": [ "module", "action" @@ -61295,6 +63430,7 @@ }, { "name": "module_lock", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -61303,29 +63439,29 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "module", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "action", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61343,11 +63479,11 @@ }, { "Field": "salt", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61367,6 +63503,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -61375,6 +63513,7 @@ }, { "name": "module_stat", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -61383,7 +63522,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -61391,10 +63530,10 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61402,10 +63541,10 @@ { "Field": "action", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61416,7 +63555,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61436,12 +63575,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "created_date", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "created_date", "module", @@ -61452,6 +63595,7 @@ }, { "name": "module_stat_detail", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -61460,7 +63604,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -61468,10 +63612,10 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61479,10 +63623,10 @@ { "Field": "action", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61523,10 +63667,10 @@ { "Field": "uid", "Type": "varchar(40)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61537,7 +63681,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61548,7 +63692,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61557,12 +63701,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "user_id", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "user_id", "uid", @@ -61577,6 +63725,7 @@ }, { "name": "module_status", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -61585,7 +63734,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -61593,10 +63742,10 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61616,6 +63765,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -61624,6 +63775,7 @@ }, { "name": "navigation_alternative", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -61632,7 +63784,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -61640,10 +63792,10 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61651,10 +63803,10 @@ { "Field": "action", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61662,10 +63814,10 @@ { "Field": "first", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61673,10 +63825,10 @@ { "Field": "sec", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61707,6 +63859,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -61715,6 +63869,7 @@ }, { "name": "newsletter_blacklist", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -61723,18 +63878,18 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "email", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61743,6 +63898,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -61751,26 +63908,27 @@ }, { "name": "newslettercache", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { "Field": "checksum", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "comment", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61780,6 +63938,7 @@ }, { "name": "notification_message", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -61788,7 +63947,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -61807,7 +63966,7 @@ { "Field": "type", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'default'", @@ -61818,10 +63977,10 @@ { "Field": "title", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61829,10 +63988,10 @@ { "Field": "message", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61840,10 +63999,10 @@ { "Field": "tags", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61851,10 +64010,10 @@ { "Field": "options_json", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61885,12 +64044,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "user_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "user_id" ] @@ -61899,6 +64062,7 @@ }, { "name": "object_stat", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -61907,7 +64071,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -61915,10 +64079,10 @@ { "Field": "object_type", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61926,10 +64090,10 @@ { "Field": "object_parameter", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61937,10 +64101,10 @@ { "Field": "event_type", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61951,7 +64115,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61971,12 +64135,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "created_at", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "created_at", "object_type", @@ -61988,6 +64156,7 @@ }, { "name": "objekt_lager_platz", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -61996,7 +64165,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -62014,11 +64183,11 @@ }, { "Field": "objekt", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62058,22 +64227,22 @@ }, { "Field": "kommentar", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62093,24 +64262,32 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "lager_platz", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "lager_platz" ] }, { "Key_name": "parameter", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "parameter" ] }, { "Key_name": "artikel", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "artikel" ] @@ -62119,6 +64296,7 @@ }, { "name": "objekt_protokoll", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -62127,7 +64305,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -62135,10 +64313,10 @@ { "Field": "objekt", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62157,21 +64335,21 @@ { "Field": "action_long", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "meldung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "'0'", + "Default": "''0''", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62179,10 +64357,10 @@ { "Field": "bearbeiter", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62193,7 +64371,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62202,6 +64380,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -62210,6 +64390,7 @@ }, { "name": "offenevorgaenge", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -62218,7 +64399,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -62229,29 +64410,29 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "titel", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "href", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62259,21 +64440,21 @@ { "Field": "beschriftung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "linkremove", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62293,12 +64474,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "adresse", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "adresse" ] @@ -62307,6 +64492,7 @@ }, { "name": "onlineshop_transfer_cart", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -62315,7 +64501,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -62334,10 +64520,10 @@ { "Field": "cart_original", "Type": "mediumtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62345,10 +64531,10 @@ { "Field": "cart_transfer", "Type": "mediumtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62356,43 +64542,43 @@ { "Field": "template", "Type": "mediumtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "extid", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "internet", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "status", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62412,18 +64598,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "shop_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "shop_id" ] }, { "Key_name": "extid", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "extid" ] @@ -62432,6 +64624,7 @@ }, { "name": "onlineshops_tasks", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -62440,7 +64633,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -62458,22 +64651,22 @@ }, { "Field": "command", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "status", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "'inactive'", + "Default": "''inactive''", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62515,6 +64708,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -62523,6 +64718,7 @@ }, { "name": "openstreetmap_status", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -62531,7 +64727,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -62562,6 +64758,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -62570,6 +64768,7 @@ }, { "name": "paketannahme", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -62578,7 +64777,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -62589,7 +64788,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62600,7 +64799,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62611,7 +64810,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62619,10 +64818,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62633,29 +64832,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "gewicht", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62666,40 +64865,40 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "vorlage", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "vorlageid", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "zahlung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62710,7 +64909,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62718,10 +64917,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62732,7 +64931,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62743,7 +64942,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62754,7 +64953,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62765,29 +64964,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter_distribution", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "postgrund", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62805,22 +65004,22 @@ }, { "Field": "renr", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lsnr", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62829,6 +65028,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -62837,6 +65038,7 @@ }, { "name": "paketdistribution", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -62845,18 +65047,18 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62867,7 +65069,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62878,7 +65080,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62889,7 +65091,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62900,7 +65102,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62911,18 +65113,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "vpe", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62933,7 +65135,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62941,10 +65143,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62955,7 +65157,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62986,6 +65188,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -62994,6 +65198,7 @@ }, { "name": "partner", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -63002,7 +65207,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -63013,29 +65218,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ref", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63046,7 +65251,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63057,7 +65262,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63068,7 +65273,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63079,7 +65284,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63090,7 +65295,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63110,6 +65315,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -63118,6 +65325,7 @@ }, { "name": "partner_verkauf", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -63126,7 +65334,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -63137,7 +65345,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63148,7 +65356,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63159,7 +65367,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63170,7 +65378,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63181,7 +65389,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63192,7 +65400,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63201,6 +65409,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -63209,6 +65419,7 @@ }, { "name": "parts_list_alternative", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -63217,7 +65428,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -63246,11 +65457,11 @@ }, { "Field": "reason", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63259,6 +65470,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -63267,6 +65480,7 @@ }, { "name": "payment_transaction", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -63275,7 +65489,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -63294,10 +65508,10 @@ { "Field": "payment_status", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63338,21 +65552,21 @@ { "Field": "currency", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "payment_reason", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63360,10 +65574,10 @@ { "Field": "payment_json", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63392,11 +65606,11 @@ }, { "Field": "payment_info", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63416,30 +65630,40 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "returnorder_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "returnorder_id" ] }, { "Key_name": "liabilitiy_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "liability_id" ] }, { "Key_name": "payment_transaction_group_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "payment_transaction_group_id" ] }, { "Key_name": "payment_account_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "payment_account_id" ] @@ -63448,6 +65672,7 @@ }, { "name": "payment_transaction_group", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -63456,7 +65681,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -63485,22 +65710,22 @@ }, { "Field": "comment", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "created_by", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63509,12 +65734,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "payment_account_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "payment_account_id" ] @@ -63523,6 +65752,7 @@ }, { "name": "payment_transaction_preview", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -63531,7 +65761,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -63616,32 +65846,32 @@ { "Field": "currency", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "payment_reason", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "payment_info", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63650,18 +65880,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "user_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "user_id" ] }, { "Key_name": "returnorder_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "returnorder_id" ] @@ -63670,6 +65906,7 @@ }, { "name": "paymentaccount_import_job", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -63678,7 +65915,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -63700,7 +65937,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63711,7 +65948,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63730,7 +65967,7 @@ { "Field": "status", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'created'", @@ -63742,12 +65979,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "paymentaccount_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "paymentaccount_id", "status" @@ -63757,6 +65998,7 @@ }, { "name": "paymentaccount_import_scheduler", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -63765,7 +66007,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -63796,12 +66038,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "paymentaccount_id", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "paymentaccount_id", "hour" @@ -63811,6 +66057,7 @@ }, { "name": "paymentimport_lock", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -63819,7 +66066,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -63838,10 +66085,10 @@ { "Field": "locked_by_type", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63874,7 +66121,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63883,12 +66130,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "paymentaccount_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "paymentaccount_id" ] @@ -63897,6 +66148,7 @@ }, { "name": "pdfarchiv", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -63905,7 +66157,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -63916,7 +66168,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63924,10 +66176,10 @@ { "Field": "checksum", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63946,10 +66198,10 @@ { "Field": "table_name", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63957,10 +66209,10 @@ { "Field": "doctype", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63968,10 +66220,10 @@ { "Field": "doctypeorig", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63979,10 +66231,10 @@ { "Field": "dateiname", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63990,10 +66242,10 @@ { "Field": "bearbeiter", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64001,10 +66253,10 @@ { "Field": "belegnummer", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64044,11 +66296,11 @@ }, { "Field": "parameter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64057,18 +66309,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "table_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "table_id" ] }, { "Key_name": "schreibschutz", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "schreibschutz" ] @@ -64077,6 +66335,7 @@ }, { "name": "pdfmirror_md5pool", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -64085,7 +66344,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -64096,7 +66355,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64104,10 +66363,10 @@ { "Field": "checksum", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64126,10 +66385,10 @@ { "Field": "table_name", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64137,10 +66396,10 @@ { "Field": "bearbeiter", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64171,6 +66430,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -64179,6 +66440,7 @@ }, { "name": "permissionhistory", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -64187,7 +66449,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -64198,18 +66460,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "granting_user_name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64220,40 +66482,40 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "receiving_user_name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "module", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "action", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64264,7 +66526,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64284,6 +66546,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -64292,6 +66556,7 @@ }, { "name": "pinwand", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -64300,7 +66565,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -64308,10 +66573,10 @@ { "Field": "name", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64331,6 +66596,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -64339,6 +66606,7 @@ }, { "name": "pinwand_user", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -64347,7 +66615,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -64378,12 +66646,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "pinwand", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "pinwand", "user" @@ -64393,6 +66665,7 @@ }, { "name": "pos_abschluss", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -64401,7 +66674,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -64412,7 +66685,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64434,7 +66707,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64445,7 +66718,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64454,6 +66727,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -64462,6 +66737,7 @@ }, { "name": "pos_kassierer", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -64470,7 +66746,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -64500,10 +66776,10 @@ { "Field": "kassenkennung", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64523,6 +66799,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -64531,6 +66809,7 @@ }, { "name": "pos_order", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -64539,7 +66818,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -64616,7 +66895,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64624,10 +66903,10 @@ { "Field": "zahlungsweise", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64646,10 +66925,10 @@ { "Field": "lager", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64671,7 +66950,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64682,7 +66961,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64712,10 +66991,10 @@ { "Field": "tip_konto", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64724,12 +67003,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "projekt", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "projekt" ] @@ -64738,6 +67021,7 @@ }, { "name": "pos_rksv", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -64746,7 +67030,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -64757,7 +67041,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64768,7 +67052,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64853,10 +67137,10 @@ { "Field": "umsatzzaehler_aes", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64864,10 +67148,10 @@ { "Field": "signatur", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64875,10 +67159,10 @@ { "Field": "jwscompact", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64886,10 +67170,10 @@ { "Field": "belegart", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64900,7 +67184,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64909,6 +67193,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -64917,6 +67203,7 @@ }, { "name": "pos_sessions", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -64925,7 +67212,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -64944,7 +67231,7 @@ { "Field": "kassierer", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'0'", @@ -64955,10 +67242,10 @@ { "Field": "sesssionbezeichnung", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64966,10 +67253,10 @@ { "Field": "data", "Type": "longtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64980,7 +67267,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65000,6 +67287,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -65008,6 +67297,7 @@ }, { "name": "pos_tagesabschluss", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -65016,7 +67306,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -65060,7 +67350,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65068,10 +67358,10 @@ { "Field": "nummer", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65080,18 +67370,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "datum", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "datum" ] }, { "Key_name": "projekt", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "projekt" ] @@ -65100,6 +67396,7 @@ }, { "name": "pos_zaehlungen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -65108,7 +67405,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -65325,10 +67622,10 @@ { "Field": "kommentar", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65336,10 +67633,10 @@ { "Field": "bearbeiter", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65359,6 +67656,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -65367,6 +67666,7 @@ }, { "name": "preisanfrage", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -65375,7 +67675,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -65386,51 +67686,51 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "projekt", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "belegnr", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "auftrag", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65441,7 +67741,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65449,21 +67749,21 @@ { "Field": "freitext", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "status", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65474,7 +67774,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65485,194 +67785,194 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "abteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "unterabteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "strasse", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "adresszusatz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ansprechpartner", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "plz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ort", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "land", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ustid", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "email", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "telefon", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "telefax", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "betreff", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferantennummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versandart", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versand", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65683,7 +67983,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65694,7 +67994,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65705,29 +68005,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versendet_per", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versendet_durch", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65738,7 +68038,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65760,29 +68060,29 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "reservierart", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "auslagerart", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "'sammel'", + "Default": "''sammel''", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65804,7 +68104,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65815,7 +68115,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65833,22 +68133,22 @@ }, { "Field": "internebezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "anschreiben", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65859,7 +68159,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65932,22 +68232,22 @@ }, { "Field": "waehrung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "'EUR'", + "Default": "''EUR''", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "typ", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "'firma'", + "Default": "''firma''", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65958,7 +68258,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65977,10 +68277,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65988,10 +68288,10 @@ { "Field": "sprache", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65999,10 +68299,10 @@ { "Field": "bodyzusatz", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66010,10 +68310,10 @@ { "Field": "lieferbedingung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66021,10 +68321,10 @@ { "Field": "titel", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66032,10 +68332,10 @@ { "Field": "bundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66055,6 +68355,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -66063,6 +68365,7 @@ }, { "name": "preisanfrage_position", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -66071,7 +68374,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -66082,7 +68385,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66093,7 +68396,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66104,29 +68407,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "nummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66134,10 +68437,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66145,10 +68448,10 @@ { "Field": "internerkommentar", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66159,7 +68462,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66170,7 +68473,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66178,10 +68481,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66192,7 +68495,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66203,29 +68506,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "vpe", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "einheit", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66236,7 +68539,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66266,10 +68569,10 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66277,10 +68580,10 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66288,10 +68591,10 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66299,10 +68602,10 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66310,10 +68613,10 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66321,10 +68624,10 @@ { "Field": "freifeld6", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66332,10 +68635,10 @@ { "Field": "freifeld7", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66343,10 +68646,10 @@ { "Field": "freifeld8", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66354,10 +68657,10 @@ { "Field": "freifeld9", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66365,10 +68668,10 @@ { "Field": "freifeld10", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66376,10 +68679,10 @@ { "Field": "freifeld11", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66387,10 +68690,10 @@ { "Field": "freifeld12", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66398,10 +68701,10 @@ { "Field": "freifeld13", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66409,10 +68712,10 @@ { "Field": "freifeld14", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66420,10 +68723,10 @@ { "Field": "freifeld15", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66431,10 +68734,10 @@ { "Field": "freifeld16", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66442,10 +68745,10 @@ { "Field": "freifeld17", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66453,10 +68756,10 @@ { "Field": "freifeld18", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66464,10 +68767,10 @@ { "Field": "freifeld19", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66475,10 +68778,10 @@ { "Field": "freifeld20", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66486,10 +68789,10 @@ { "Field": "freifeld21", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66497,10 +68800,10 @@ { "Field": "freifeld22", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66508,10 +68811,10 @@ { "Field": "freifeld23", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66519,10 +68822,10 @@ { "Field": "freifeld24", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66530,10 +68833,10 @@ { "Field": "freifeld25", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66541,10 +68844,10 @@ { "Field": "freifeld26", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66552,10 +68855,10 @@ { "Field": "freifeld27", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66563,10 +68866,10 @@ { "Field": "freifeld28", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66574,10 +68877,10 @@ { "Field": "freifeld29", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66585,10 +68888,10 @@ { "Field": "freifeld30", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66596,10 +68899,10 @@ { "Field": "freifeld31", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66607,10 +68910,10 @@ { "Field": "freifeld32", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66618,10 +68921,10 @@ { "Field": "freifeld33", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66629,10 +68932,10 @@ { "Field": "freifeld34", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66640,10 +68943,10 @@ { "Field": "freifeld35", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66651,10 +68954,10 @@ { "Field": "freifeld36", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66662,10 +68965,10 @@ { "Field": "freifeld37", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66673,10 +68976,10 @@ { "Field": "freifeld38", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66684,10 +68987,10 @@ { "Field": "freifeld39", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66695,10 +68998,10 @@ { "Field": "freifeld40", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66707,12 +69010,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "preisanfrage", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "preisanfrage" ] @@ -66721,6 +69028,7 @@ }, { "name": "preisanfrage_protokoll", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -66729,7 +69037,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -66740,7 +69048,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66751,29 +69059,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "grund", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66782,6 +69090,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -66790,6 +69100,7 @@ }, { "name": "presta_image_association", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -66798,7 +69109,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -66809,7 +69120,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66820,7 +69131,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66831,7 +69142,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66840,6 +69151,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -66848,6 +69161,7 @@ }, { "name": "presta_matrix_association", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -66856,7 +69170,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -66867,7 +69181,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66878,7 +69192,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66889,7 +69203,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66898,6 +69212,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -66906,6 +69222,7 @@ }, { "name": "produktion", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -66914,7 +69231,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -66925,18 +69242,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "art", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66944,54 +69261,54 @@ { "Field": "projekt", "Type": "varchar(222)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "belegnr", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "internet", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "angebot", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66999,10 +69316,10 @@ { "Field": "freitext", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67010,10 +69327,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67021,7 +69338,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'angelegt'", @@ -67035,73 +69352,73 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "abteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "unterabteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "strasse", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "adresszusatz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ansprechpartner", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67109,21 +69426,21 @@ { "Field": "plz", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ort", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67131,10 +69448,10 @@ { "Field": "land", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67142,10 +69459,10 @@ { "Field": "ustid", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67156,7 +69473,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67167,95 +69484,95 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "email", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "telefon", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "telefax", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "betreff", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kundennummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versandart", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "vertrieb", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "zahlungsweise", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67266,7 +69583,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67277,7 +69594,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67288,117 +69605,117 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bank_inhaber", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bank_institut", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bank_blz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bank_konto", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kreditkarte_typ", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kreditkarte_inhaber", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kreditkarte_nummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kreditkarte_pruefnummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kreditkarte_monat", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kreditkarte_jahr", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67409,7 +69726,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67420,7 +69737,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67431,29 +69748,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versendet_per", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versendet_durch", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67464,7 +69781,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67475,7 +69792,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67486,7 +69803,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67497,40 +69814,40 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "liefername", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferabteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferunterabteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67538,32 +69855,32 @@ { "Field": "lieferland", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferstrasse", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferort", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67571,65 +69888,65 @@ { "Field": "lieferplz", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferadresszusatz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferansprechpartner", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "packstation_inhaber", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "packstation_station", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "packstation_ident", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67637,21 +69954,21 @@ { "Field": "packstation_plz", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "packstation_ort", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67662,7 +69979,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67673,7 +69990,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67684,7 +70001,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67706,7 +70023,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67717,7 +70034,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67728,7 +70045,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67739,7 +70056,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67750,7 +70067,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67761,7 +70078,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67772,7 +70089,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67783,7 +70100,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67794,7 +70111,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67805,7 +70122,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67816,7 +70133,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67827,7 +70144,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67838,7 +70155,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67849,7 +70166,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67860,7 +70177,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67871,40 +70188,40 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "stornogrund", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "stornosonstiges", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "stornorueckzahlung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67922,44 +70239,44 @@ }, { "Field": "stornobankinhaber", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "stornobankkonto", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "stornobankblz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "stornobankbank", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67970,18 +70287,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "stornogutschriftbeleg", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67992,18 +70309,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "stornomanuellebearbeitung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68011,21 +70328,21 @@ { "Field": "stornokommentar", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "stornobezahlt", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68036,18 +70353,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "stornobezahltvon", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68058,18 +70375,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "stornorueckzahlungper", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68080,7 +70397,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68091,7 +70408,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68102,18 +70419,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kennen", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68131,11 +70448,11 @@ }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68146,18 +70463,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "anschreiben", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68168,7 +70485,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68241,11 +70558,11 @@ }, { "Field": "waehrung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "'EUR'", + "Default": "''EUR''", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68285,33 +70602,33 @@ }, { "Field": "typ", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "'firma'", + "Default": "''firma''", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "reservierart", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "auslagerart", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "'sammel'", + "Default": "''sammel''", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68333,7 +70650,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68344,7 +70661,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68362,11 +70679,11 @@ }, { "Field": "charge", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68388,7 +70705,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68399,7 +70716,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68410,7 +70727,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68428,11 +70745,11 @@ }, { "Field": "internebezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68498,7 +70815,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68528,10 +70845,10 @@ { "Field": "abschlussbemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68586,7 +70903,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68606,18 +70923,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "adresse", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "adresse" ] }, { "Key_name": "auftragid", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "auftragid" ] @@ -68626,6 +70949,7 @@ }, { "name": "produktion_arbeitsanweisung", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -68634,7 +70958,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -68674,11 +70998,11 @@ }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68686,10 +71010,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68700,7 +71024,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68718,11 +71042,11 @@ }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68763,10 +71087,10 @@ { "Field": "status", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68775,12 +71099,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "produktion", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "produktion" ] @@ -68789,6 +71117,7 @@ }, { "name": "produktion_arbeitsanweisung_batch", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -68797,7 +71126,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -68830,7 +71159,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68841,7 +71170,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68860,21 +71189,21 @@ { "Field": "batch", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68894,18 +71223,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "produktion_arbeitsanweisung", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "produktion_arbeitsanweisung" ] }, { "Key_name": "produktion", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "produktion" ] @@ -68914,6 +71249,7 @@ }, { "name": "produktion_baugruppen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -68922,7 +71258,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -68962,44 +71298,44 @@ }, { "Field": "baugruppennr", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "seriennummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "pruefer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kommentar", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69063,12 +71399,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "produktion", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "produktion" ] @@ -69077,6 +71417,7 @@ }, { "name": "produktion_baugruppen_charge", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -69085,7 +71426,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -69126,10 +71467,10 @@ { "Field": "chargennummer", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69140,18 +71481,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69171,24 +71512,32 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "produktion", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "produktion" ] }, { "Key_name": "baugruppe", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "baugruppe" ] }, { "Key_name": "charge", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "charge" ] @@ -69197,6 +71546,7 @@ }, { "name": "produktion_charge", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -69205,7 +71555,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -69234,11 +71584,11 @@ }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69246,21 +71596,21 @@ { "Field": "kommentar", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69268,10 +71618,10 @@ { "Field": "chargennummer", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69282,7 +71632,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69290,10 +71640,10 @@ { "Field": "typ", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69324,18 +71674,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "produktion", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "produktion" ] }, { "Key_name": "artikel", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "artikel" ] @@ -69344,6 +71700,7 @@ }, { "name": "produktion_etiketten", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -69352,7 +71709,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -69427,12 +71784,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "produktion", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "produktion" ] @@ -69441,6 +71802,7 @@ }, { "name": "produktion_funktionsprotokoll", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -69449,7 +71811,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -69489,11 +71851,11 @@ }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69501,10 +71863,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69515,62 +71877,62 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "typ", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "'frage'", + "Default": "''frage''", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "widget", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "klassen", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "beschreibung_textfeld1", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "beschreibung_textfeld2", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69600,10 +71962,10 @@ { "Field": "config", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69643,11 +72005,11 @@ }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69656,12 +72018,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "produktion", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "produktion" ] @@ -69670,6 +72036,7 @@ }, { "name": "produktion_funktionsprotokoll_position", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -69678,7 +72045,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -69708,10 +72075,10 @@ { "Field": "textfeld1", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69719,10 +72086,10 @@ { "Field": "textfeld2", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69730,10 +72097,10 @@ { "Field": "eingabejson", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69741,10 +72108,10 @@ { "Field": "eingabehtml", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69752,10 +72119,10 @@ { "Field": "ausgabejson", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69763,10 +72130,10 @@ { "Field": "ausgabehtml", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69795,11 +72162,11 @@ }, { "Field": "klasse", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69807,21 +72174,21 @@ { "Field": "kommentar", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69852,12 +72219,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "funktionsprotokoll", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "funktionsprotokoll" ] @@ -69866,6 +72237,7 @@ }, { "name": "produktion_position", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -69874,7 +72246,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -69885,7 +72257,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69896,7 +72268,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69907,18 +72279,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69926,10 +72298,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69937,21 +72309,21 @@ { "Field": "internerkommentar", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "nummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69962,7 +72334,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69973,18 +72345,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "waehrung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69995,18 +72367,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "vpe", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70017,7 +72389,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70025,21 +72397,21 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "umsatzsteuer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70047,10 +72419,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70061,7 +72433,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70072,7 +72444,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70083,7 +72455,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70094,7 +72466,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70116,7 +72488,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70145,11 +72517,11 @@ }, { "Field": "einheit", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70160,7 +72532,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70168,10 +72540,10 @@ { "Field": "steuertext", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70179,10 +72551,10 @@ { "Field": "erloese", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70201,10 +72573,10 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70212,10 +72584,10 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70223,10 +72595,10 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70234,10 +72606,10 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70245,10 +72617,10 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70256,10 +72628,10 @@ { "Field": "freifeld6", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70267,10 +72639,10 @@ { "Field": "freifeld7", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70278,10 +72650,10 @@ { "Field": "freifeld8", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70289,10 +72661,10 @@ { "Field": "freifeld9", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70300,10 +72672,10 @@ { "Field": "freifeld10", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70311,10 +72683,10 @@ { "Field": "freifeld11", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70322,10 +72694,10 @@ { "Field": "freifeld12", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70333,10 +72705,10 @@ { "Field": "freifeld13", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70344,10 +72716,10 @@ { "Field": "freifeld14", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70355,10 +72727,10 @@ { "Field": "freifeld15", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70366,10 +72738,10 @@ { "Field": "freifeld16", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70377,10 +72749,10 @@ { "Field": "freifeld17", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70388,10 +72760,10 @@ { "Field": "freifeld18", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70399,10 +72771,10 @@ { "Field": "freifeld19", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70410,10 +72782,10 @@ { "Field": "freifeld20", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70421,10 +72793,10 @@ { "Field": "freifeld21", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70432,10 +72804,10 @@ { "Field": "freifeld22", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70443,10 +72815,10 @@ { "Field": "freifeld23", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70454,10 +72826,10 @@ { "Field": "freifeld24", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70465,10 +72837,10 @@ { "Field": "freifeld25", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70476,10 +72848,10 @@ { "Field": "freifeld26", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70487,10 +72859,10 @@ { "Field": "freifeld27", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70498,10 +72870,10 @@ { "Field": "freifeld28", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70509,10 +72881,10 @@ { "Field": "freifeld29", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70520,10 +72892,10 @@ { "Field": "freifeld30", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70531,10 +72903,10 @@ { "Field": "freifeld31", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70542,10 +72914,10 @@ { "Field": "freifeld32", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70553,10 +72925,10 @@ { "Field": "freifeld33", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70564,10 +72936,10 @@ { "Field": "freifeld34", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70575,10 +72947,10 @@ { "Field": "freifeld35", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70586,10 +72958,10 @@ { "Field": "freifeld36", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70597,10 +72969,10 @@ { "Field": "freifeld37", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70608,10 +72980,10 @@ { "Field": "freifeld38", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70619,10 +72991,10 @@ { "Field": "freifeld39", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70630,10 +73002,10 @@ { "Field": "freifeld40", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70664,24 +73036,32 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "produktion", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "produktion" ] }, { "Key_name": "artikel", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "artikel" ] }, { "Key_name": "explodiert_parent", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "explodiert_parent" ] @@ -70690,6 +73070,7 @@ }, { "name": "produktion_protokoll", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -70698,7 +73079,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -70720,29 +73101,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "grund", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70751,12 +73132,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "produktion", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "produktion" ] @@ -70765,6 +73150,7 @@ }, { "name": "produktion_unterseriennummern", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -70773,7 +73159,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -70813,22 +73199,22 @@ }, { "Field": "seriennummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70857,11 +73243,11 @@ }, { "Field": "kommentar", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70870,12 +73256,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "baugruppe", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "baugruppe" ] @@ -70884,6 +73274,7 @@ }, { "name": "produktionslager", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -70892,7 +73283,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -70903,7 +73294,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70914,18 +73305,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bemerkung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70933,10 +73324,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70947,18 +73338,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "vpe", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70969,29 +73360,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "produzent", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71002,7 +73393,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71022,6 +73413,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -71030,6 +73423,7 @@ }, { "name": "proformarechnung", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -71038,7 +73432,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -71049,7 +73443,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71060,7 +73454,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71068,43 +73462,43 @@ { "Field": "projekt", "Type": "varchar(222)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "anlegeart", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "belegnr", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "auftrag", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71115,18 +73509,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71134,10 +73528,10 @@ { "Field": "freitext", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71145,10 +73539,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71156,10 +73550,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71170,117 +73564,117 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "abteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "unterabteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "strasse", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "adresszusatz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ansprechpartner", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "plz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ort", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "land", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ustid", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71291,7 +73685,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71302,7 +73696,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71313,7 +73707,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71324,51 +73718,51 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "email", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "telefon", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "telefax", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "betreff", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71376,10 +73770,10 @@ { "Field": "kundennummer", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71390,18 +73784,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versandart", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71412,40 +73806,40 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "buchhaltung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "zahlungsweise", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "zahlungsstatus", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71478,7 +73872,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71489,7 +73883,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71500,7 +73894,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71511,7 +73905,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71522,7 +73916,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71533,7 +73927,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71544,29 +73938,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versendet_per", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versendet_durch", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71577,18 +73971,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "mahnwesen", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71599,7 +73993,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71610,7 +74004,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71618,10 +74012,10 @@ { "Field": "mahnwesen_internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71632,7 +74026,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71643,7 +74037,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71665,7 +74059,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71830,7 +74224,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71838,21 +74232,21 @@ { "Field": "aktion", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "vertrieb", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71863,7 +74257,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71874,7 +74268,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71896,7 +74290,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71907,7 +74301,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71918,29 +74312,29 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ihrebestellnummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "anschreiben", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71951,7 +74345,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71973,7 +74367,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71984,7 +74378,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71995,7 +74389,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72006,7 +74400,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72017,7 +74411,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72028,7 +74422,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72039,7 +74433,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72050,7 +74444,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72061,7 +74455,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72072,7 +74466,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72134,11 +74528,11 @@ }, { "Field": "waehrung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "'EUR'", + "Default": "''EUR''", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72149,7 +74543,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72189,11 +74583,11 @@ }, { "Field": "typ", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "'firma'", + "Default": "''firma''", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72204,7 +74598,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72234,10 +74628,10 @@ { "Field": "systemfreitext", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72266,11 +74660,11 @@ }, { "Field": "internebezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72281,7 +74675,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72303,7 +74697,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72311,10 +74705,10 @@ { "Field": "sprache", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72325,18 +74719,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "titel", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72347,7 +74741,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72355,10 +74749,10 @@ { "Field": "bodyzusatz", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72366,43 +74760,43 @@ { "Field": "lieferbedingung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "liefername", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferabteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferunterabteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72410,32 +74804,32 @@ { "Field": "lieferland", "Type": "varchar(2)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferstrasse", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferort", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72443,43 +74837,43 @@ { "Field": "lieferplz", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferadresszusatz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferansprechpartner", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "liefertitel", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72487,10 +74881,10 @@ { "Field": "liefergln", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72501,7 +74895,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72520,43 +74914,43 @@ { "Field": "verzollinformationen", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "verzollungname", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "verzollungabteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "verzollungunterabteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72564,32 +74958,32 @@ { "Field": "verzollungland", "Type": "varchar(2)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "verzollungstrasse", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "verzollungort", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72597,54 +74991,54 @@ { "Field": "verzollungplz", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "verzollungadresszusatz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "verzollungansprechpartner", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "verzollungtitel", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "formelmenge", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72663,10 +75057,10 @@ { "Field": "bundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72674,10 +75068,10 @@ { "Field": "lieferbundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72686,6 +75080,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -72694,6 +75090,7 @@ }, { "name": "proformarechnung_lieferschein", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -72702,7 +75099,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -72755,6 +75152,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -72763,6 +75162,7 @@ }, { "name": "proformarechnung_position", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -72771,7 +75171,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -72782,7 +75182,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72793,7 +75193,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72804,18 +75204,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72823,10 +75223,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72834,21 +75234,21 @@ { "Field": "internerkommentar", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "nummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72859,7 +75259,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72877,11 +75277,11 @@ }, { "Field": "waehrung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72892,18 +75292,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "vpe", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72914,7 +75314,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72922,21 +75322,21 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "umsatzsteuer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72944,10 +75344,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72980,7 +75380,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72991,7 +75391,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73002,7 +75402,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73013,7 +75413,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73024,7 +75424,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73035,7 +75435,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73046,7 +75446,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73057,7 +75457,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73068,7 +75468,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73079,7 +75479,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73090,7 +75490,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73101,18 +75501,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "einheit", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73123,7 +75523,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73131,7 +75531,7 @@ { "Field": "zolltarifnummer", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'0'", @@ -73142,7 +75542,7 @@ { "Field": "herkunftsland", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'0'", @@ -73153,10 +75553,10 @@ { "Field": "artikelnummerkunde", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73197,10 +75597,10 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73208,10 +75608,10 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73219,10 +75619,10 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73230,10 +75630,10 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73241,10 +75641,10 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73252,10 +75652,10 @@ { "Field": "freifeld6", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73263,10 +75663,10 @@ { "Field": "freifeld7", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73274,10 +75674,10 @@ { "Field": "freifeld8", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73285,10 +75685,10 @@ { "Field": "freifeld9", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73296,10 +75696,10 @@ { "Field": "freifeld10", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73310,18 +75710,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "steuertext", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73329,10 +75729,10 @@ { "Field": "erloese", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73340,10 +75740,10 @@ { "Field": "kostenstelle", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73362,10 +75762,10 @@ { "Field": "freifeld11", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73373,10 +75773,10 @@ { "Field": "freifeld12", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73384,10 +75784,10 @@ { "Field": "freifeld13", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73395,10 +75795,10 @@ { "Field": "freifeld14", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73406,10 +75806,10 @@ { "Field": "freifeld15", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73417,10 +75817,10 @@ { "Field": "freifeld16", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73428,10 +75828,10 @@ { "Field": "freifeld17", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73439,10 +75839,10 @@ { "Field": "freifeld18", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73450,10 +75850,10 @@ { "Field": "freifeld19", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73461,10 +75861,10 @@ { "Field": "freifeld20", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73472,10 +75872,10 @@ { "Field": "freifeld21", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73483,10 +75883,10 @@ { "Field": "freifeld22", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73494,10 +75894,10 @@ { "Field": "freifeld23", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73505,10 +75905,10 @@ { "Field": "freifeld24", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73516,10 +75916,10 @@ { "Field": "freifeld25", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73527,10 +75927,10 @@ { "Field": "freifeld26", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73538,10 +75938,10 @@ { "Field": "freifeld27", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73549,10 +75949,10 @@ { "Field": "freifeld28", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73560,10 +75960,10 @@ { "Field": "freifeld29", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73571,10 +75971,10 @@ { "Field": "freifeld30", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73582,10 +75982,10 @@ { "Field": "freifeld31", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73593,10 +75993,10 @@ { "Field": "freifeld32", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73604,10 +76004,10 @@ { "Field": "freifeld33", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73615,10 +76015,10 @@ { "Field": "freifeld34", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73626,10 +76026,10 @@ { "Field": "freifeld35", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73637,10 +76037,10 @@ { "Field": "freifeld36", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73648,10 +76048,10 @@ { "Field": "freifeld37", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73659,10 +76059,10 @@ { "Field": "freifeld38", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73670,10 +76070,10 @@ { "Field": "freifeld39", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73681,32 +76081,32 @@ { "Field": "freifeld40", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "formelmenge", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "formelpreis", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73717,7 +76117,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73726,12 +76126,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "proformarechnung", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "proformarechnung" ] @@ -73740,6 +76144,7 @@ }, { "name": "proformarechnung_protokoll", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -73748,7 +76153,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -73759,7 +76164,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73770,29 +76175,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "grund", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73801,6 +76206,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -73809,6 +76216,7 @@ }, { "name": "projekt", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -73817,7 +76225,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -73825,10 +76233,10 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73836,10 +76244,10 @@ { "Field": "abkuerzung", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73847,10 +76255,10 @@ { "Field": "verantwortlicher", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73858,10 +76266,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73869,10 +76277,10 @@ { "Field": "sonstiges", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73880,10 +76288,10 @@ { "Field": "aktiv", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73891,10 +76299,10 @@ { "Field": "farbe", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73905,7 +76313,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73916,7 +76324,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73927,7 +76335,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73938,7 +76346,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73946,10 +76354,10 @@ { "Field": "checkname", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73960,7 +76368,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73968,10 +76376,10 @@ { "Field": "zahlungsmailbedinungen", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73982,7 +76390,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73993,7 +76401,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74004,7 +76412,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74015,7 +76423,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74026,7 +76434,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74037,7 +76445,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74048,7 +76456,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74059,7 +76467,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74070,7 +76478,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74078,10 +76486,10 @@ { "Field": "logdatei", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74144,7 +76552,7 @@ { "Field": "waehrung", "Type": "varchar(3)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'EUR'", @@ -74213,7 +76621,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74224,7 +76632,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74257,7 +76665,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74265,10 +76673,10 @@ { "Field": "dpdkundennr", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74276,10 +76684,10 @@ { "Field": "dhlkundennr", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74287,10 +76695,10 @@ { "Field": "dhlformat", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74298,10 +76706,10 @@ { "Field": "dpdformat", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74312,7 +76720,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74320,10 +76728,10 @@ { "Field": "dpdpfad", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74331,10 +76739,10 @@ { "Field": "dhlpfad", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74342,7 +76750,7 @@ { "Field": "upspfad", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'0'", @@ -74397,10 +76805,10 @@ { "Field": "intraship_user", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74408,10 +76816,10 @@ { "Field": "intraship_signature", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74419,10 +76827,10 @@ { "Field": "intraship_ekp", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74430,10 +76838,10 @@ { "Field": "intraship_api_user", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74441,10 +76849,10 @@ { "Field": "intraship_api_password", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74452,10 +76860,10 @@ { "Field": "intraship_company_name", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74463,10 +76871,10 @@ { "Field": "intraship_street_name", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74474,10 +76882,10 @@ { "Field": "intraship_street_number", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74485,10 +76893,10 @@ { "Field": "intraship_zip", "Type": "varchar(12)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74496,7 +76904,7 @@ { "Field": "intraship_country", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'germany'", @@ -74507,10 +76915,10 @@ { "Field": "intraship_city", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74518,10 +76926,10 @@ { "Field": "intraship_email", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74529,10 +76937,10 @@ { "Field": "intraship_phone", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74540,10 +76948,10 @@ { "Field": "intraship_internet", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74551,10 +76959,10 @@ { "Field": "intraship_contact_person", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74562,10 +76970,10 @@ { "Field": "intraship_account_owner", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74573,10 +76981,10 @@ { "Field": "intraship_account_number", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74584,10 +76992,10 @@ { "Field": "intraship_bank_code", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74595,10 +77003,10 @@ { "Field": "intraship_bank_name", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74606,10 +77014,10 @@ { "Field": "intraship_iban", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74617,10 +77025,10 @@ { "Field": "intraship_bic", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74672,7 +77080,7 @@ { "Field": "intraship_PackageType", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'pl'", @@ -74683,10 +77091,10 @@ { "Field": "abrechnungsart", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74694,10 +77102,10 @@ { "Field": "kommissionierverfahren", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74708,7 +77116,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74719,7 +77127,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74727,10 +77135,10 @@ { "Field": "absendeadresse", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74738,10 +77146,10 @@ { "Field": "absendename", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74749,10 +77157,10 @@ { "Field": "absendesignatur", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74763,7 +77171,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74774,7 +77182,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74785,7 +77193,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74796,7 +77204,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74807,7 +77215,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74818,7 +77226,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74829,7 +77237,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74840,7 +77248,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74906,7 +77314,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74914,10 +77322,10 @@ { "Field": "next_angebot", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74925,10 +77333,10 @@ { "Field": "next_auftrag", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74936,10 +77344,10 @@ { "Field": "next_rechnung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74947,10 +77355,10 @@ { "Field": "next_lieferschein", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74958,10 +77366,10 @@ { "Field": "next_arbeitsnachweis", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74969,10 +77377,10 @@ { "Field": "next_reisekosten", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74980,10 +77388,10 @@ { "Field": "next_bestellung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74991,10 +77399,10 @@ { "Field": "next_gutschrift", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75002,10 +77410,10 @@ { "Field": "next_kundennummer", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75013,10 +77421,10 @@ { "Field": "next_lieferantennummer", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75024,10 +77432,10 @@ { "Field": "next_mitarbeiternummer", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75035,10 +77443,10 @@ { "Field": "next_waren", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75046,10 +77454,10 @@ { "Field": "next_produktion", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75057,10 +77465,10 @@ { "Field": "next_sonstiges", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75068,10 +77476,10 @@ { "Field": "next_anfrage", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75079,10 +77487,10 @@ { "Field": "next_artikelnummer", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75093,7 +77501,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75104,7 +77512,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75112,10 +77520,10 @@ { "Field": "dhlzahlungmandant", "Type": "varchar(3)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75126,7 +77534,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75134,7 +77542,7 @@ { "Field": "land", "Type": "varchar(2)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'de'", @@ -75222,10 +77630,10 @@ { "Field": "kasse_lagerprozess", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75233,10 +77641,10 @@ { "Field": "kasse_belegausgabe", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75254,22 +77662,22 @@ }, { "Field": "kasse_text_bemerkung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "'interne bemerkung'", + "Default": "''interne bemerkung''", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kasse_text_freitext", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "'text auf beleg'", + "Default": "''text auf beleg''", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75530,7 +77938,7 @@ { "Field": "kasse_vorauswahl_anrede", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'herr'", @@ -75596,7 +78004,7 @@ { "Field": "dpdendung", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'.csv'", @@ -75607,7 +78015,7 @@ { "Field": "dhlendung", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'.csv'", @@ -75662,10 +78070,10 @@ { "Field": "go_apiurl_prefix", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75673,10 +78081,10 @@ { "Field": "go_apiurl_postfix", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75684,10 +78092,10 @@ { "Field": "go_apiurl_user", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75695,10 +78103,10 @@ { "Field": "go_username", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75706,10 +78114,10 @@ { "Field": "go_password", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75717,10 +78125,10 @@ { "Field": "go_ax4nr", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75728,10 +78136,10 @@ { "Field": "go_name1", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75739,10 +78147,10 @@ { "Field": "go_name2", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75750,10 +78158,10 @@ { "Field": "go_abteilung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75761,10 +78169,10 @@ { "Field": "go_strasse1", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75772,10 +78180,10 @@ { "Field": "go_strasse2", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75783,10 +78191,10 @@ { "Field": "go_hausnummer", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75794,10 +78202,10 @@ { "Field": "go_plz", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75805,10 +78213,10 @@ { "Field": "go_ort", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75816,10 +78224,10 @@ { "Field": "go_land", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75830,7 +78238,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75838,10 +78246,10 @@ { "Field": "go_format", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75849,10 +78257,10 @@ { "Field": "go_ausgabe", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75860,10 +78268,10 @@ { "Field": "intraship_exportgrund", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75871,10 +78279,10 @@ { "Field": "billsafe_merchantId", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75882,10 +78290,10 @@ { "Field": "billsafe_merchantLicenseSandbox", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75893,10 +78301,10 @@ { "Field": "billsafe_merchantLicenseLive", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75904,10 +78312,10 @@ { "Field": "billsafe_applicationSignature", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75915,10 +78323,10 @@ { "Field": "billsafe_applicationVersion", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75926,10 +78334,10 @@ { "Field": "secupay_apikey", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75937,10 +78345,10 @@ { "Field": "secupay_url", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75970,7 +78378,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'gestartet'", @@ -76013,11 +78421,11 @@ }, { "Field": "kasse_bon_zeile1", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "'xentral store'", + "Default": "''xentral store''", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76025,10 +78433,10 @@ { "Field": "kasse_bon_zeile2", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76036,10 +78444,10 @@ { "Field": "kasse_bon_zeile3", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76190,7 +78598,7 @@ { "Field": "intraship_partnerid", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'01'", @@ -76212,10 +78620,10 @@ { "Field": "intraship_retourenaccount", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76223,10 +78631,10 @@ { "Field": "absendegrussformel", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76245,10 +78653,10 @@ { "Field": "intraship_partnerid_welt", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76256,10 +78664,10 @@ { "Field": "next_kalkulation", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76267,10 +78675,10 @@ { "Field": "next_preisanfrage", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76278,10 +78686,10 @@ { "Field": "next_proformarechnung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76289,10 +78697,10 @@ { "Field": "next_verbindlichkeit", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76300,10 +78708,10 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76311,10 +78719,10 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76322,10 +78730,10 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76333,10 +78741,10 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76344,10 +78752,10 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76355,10 +78763,10 @@ { "Field": "freifeld6", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76366,10 +78774,10 @@ { "Field": "freifeld7", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76377,10 +78785,10 @@ { "Field": "freifeld8", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76388,10 +78796,10 @@ { "Field": "freifeld9", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76399,10 +78807,10 @@ { "Field": "freifeld10", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76410,10 +78818,10 @@ { "Field": "mahnwesen_abweichender_versender", "Type": "varchar(40)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76564,10 +78972,10 @@ { "Field": "kasse_rksv_tool", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76575,10 +78983,10 @@ { "Field": "kasse_rksv_kartenleser", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76586,10 +78994,10 @@ { "Field": "kasse_rksv_karteseriennummer", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76597,10 +79005,10 @@ { "Field": "kasse_rksv_kartepin", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76608,10 +79016,10 @@ { "Field": "kasse_rksv_aeskey", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76619,10 +79027,10 @@ { "Field": "kasse_rksv_publiczertifikat", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76630,10 +79038,10 @@ { "Field": "kasse_rksv_publiczertifikatkette", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76641,10 +79049,10 @@ { "Field": "kasse_rksv_kassenid", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76795,10 +79203,10 @@ { "Field": "steuernummer", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76817,10 +79225,10 @@ { "Field": "orderpicking_sort", "Type": "varchar(26)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76861,10 +79269,10 @@ { "Field": "zahlungsweise", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76872,10 +79280,10 @@ { "Field": "zahlungsweiselieferant", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76883,10 +79291,10 @@ { "Field": "versandart", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76894,10 +79302,10 @@ { "Field": "ups_api_user", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76905,10 +79313,10 @@ { "Field": "ups_api_password", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76916,10 +79324,10 @@ { "Field": "ups_api_key", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76927,10 +79335,10 @@ { "Field": "ups_accountnumber", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76938,10 +79346,10 @@ { "Field": "ups_company_name", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76949,10 +79357,10 @@ { "Field": "ups_street_name", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76960,10 +79368,10 @@ { "Field": "ups_street_number", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76971,10 +79379,10 @@ { "Field": "ups_zip", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76982,10 +79390,10 @@ { "Field": "ups_country", "Type": "varchar(2)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76993,10 +79401,10 @@ { "Field": "ups_city", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77004,10 +79412,10 @@ { "Field": "ups_email", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77015,10 +79423,10 @@ { "Field": "ups_phone", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77026,10 +79434,10 @@ { "Field": "ups_internet", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77037,10 +79445,10 @@ { "Field": "ups_contact_person", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77051,7 +79459,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77062,7 +79470,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77073,7 +79481,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77084,7 +79492,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77103,7 +79511,7 @@ { "Field": "ups_ausgabe", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'gif'", @@ -77114,7 +79522,7 @@ { "Field": "ups_package_code", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'02'", @@ -77124,11 +79532,11 @@ }, { "Field": "ups_package_description", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "'customer supplied'", + "Default": "''customer supplied''", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77136,7 +79544,7 @@ { "Field": "ups_service_code", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'11'", @@ -77146,11 +79554,11 @@ }, { "Field": "ups_service_description", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "'ups standard'", + "Default": "''ups standard''", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77158,10 +79566,10 @@ { "Field": "email_html_template", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77172,7 +79580,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77183,7 +79591,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77191,10 +79599,10 @@ { "Field": "next_retoure", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77202,10 +79610,10 @@ { "Field": "next_goodspostingdocument", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77257,10 +79665,10 @@ { "Field": "steuer_erloese_inland_normal", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77268,10 +79676,10 @@ { "Field": "steuer_aufwendung_inland_normal", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77279,10 +79687,10 @@ { "Field": "steuer_erloese_inland_ermaessigt", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77290,10 +79698,10 @@ { "Field": "steuer_aufwendung_inland_ermaessigt", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77301,10 +79709,10 @@ { "Field": "steuer_erloese_inland_nichtsteuerbar", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77312,10 +79720,10 @@ { "Field": "steuer_aufwendung_inland_nichtsteuerbar", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77323,10 +79731,10 @@ { "Field": "steuer_erloese_inland_innergemeinschaftlich", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77334,10 +79742,10 @@ { "Field": "steuer_aufwendung_inland_innergemeinschaftlich", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77345,10 +79753,10 @@ { "Field": "steuer_erloese_inland_eunormal", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77356,10 +79764,10 @@ { "Field": "steuer_aufwendung_inland_eunormal", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77367,10 +79775,10 @@ { "Field": "steuer_erloese_inland_euermaessigt", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77378,10 +79786,10 @@ { "Field": "steuer_aufwendung_inland_euermaessigt", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77389,10 +79797,10 @@ { "Field": "steuer_erloese_inland_export", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77400,10 +79808,10 @@ { "Field": "steuer_aufwendung_inland_import", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77532,10 +79940,10 @@ { "Field": "klarna_merchantid", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77543,10 +79951,10 @@ { "Field": "klarna_sharedsecret", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77708,10 +80116,10 @@ { "Field": "zvt100url", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77719,10 +80127,10 @@ { "Field": "zvt100port", "Type": "varchar(5)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77782,24 +80190,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", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77815,10 +80212,21 @@ "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": "buchhaltung_berater", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -77829,7 +80237,7 @@ { "Field": "buchhaltung_mandant", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -77840,7 +80248,7 @@ { "Field": "buchhaltung_wj_beginn", "Type": "varchar(4)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'0101'", @@ -77863,18 +80271,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "abkuerzung", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "abkuerzung" ] }, { "Key_name": "kunde", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "kunde" ] @@ -77883,6 +80297,7 @@ }, { "name": "projekt_artikel", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -77891,7 +80306,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -77957,7 +80372,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77968,7 +80383,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77979,7 +80394,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77990,7 +80405,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78001,7 +80416,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78012,7 +80427,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78023,7 +80438,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78034,7 +80449,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78045,7 +80460,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78075,7 +80490,7 @@ { "Field": "kalkulationbasis", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'prostueck'", @@ -78086,10 +80501,10 @@ { "Field": "nr", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78100,7 +80515,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78111,7 +80526,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78122,7 +80537,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78144,7 +80559,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78152,10 +80567,10 @@ { "Field": "kommentar", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78175,6 +80590,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -78183,6 +80600,7 @@ }, { "name": "projekt_inventar", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -78191,7 +80609,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -78202,7 +80620,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78213,7 +80631,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78224,7 +80642,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78235,7 +80653,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78246,29 +80664,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "mitarbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "vpe", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78279,7 +80697,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78299,6 +80717,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -78307,6 +80727,7 @@ }, { "name": "protokoll", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -78315,7 +80736,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -78323,10 +80744,10 @@ { "Field": "meldung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78334,10 +80755,10 @@ { "Field": "dump", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78345,10 +80766,10 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78356,10 +80777,10 @@ { "Field": "action", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78367,10 +80788,10 @@ { "Field": "bearbeiter", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78378,10 +80799,10 @@ { "Field": "funktionsname", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78392,7 +80813,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78411,10 +80832,10 @@ { "Field": "argumente", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78423,6 +80844,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -78431,6 +80854,7 @@ }, { "name": "provision_regeln", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -78439,7 +80863,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -78447,10 +80871,10 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78458,10 +80882,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78516,7 +80940,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78527,7 +80951,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78535,10 +80959,10 @@ { "Field": "typ", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78579,10 +81003,10 @@ { "Field": "belegtyp", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78602,24 +81026,32 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "gruppe", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "gruppe" ] }, { "Key_name": "artikel", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "artikel" ] }, { "Key_name": "adresse", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "adresse" ] @@ -78628,6 +81060,7 @@ }, { "name": "provisionenartikel_abrechnungen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -78636,7 +81069,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -78647,7 +81080,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78658,7 +81091,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78666,10 +81099,10 @@ { "Field": "angelegt_von", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78733,12 +81166,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "userid", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "userid" ] @@ -78747,6 +81184,7 @@ }, { "name": "provisionenartikel_abrechnungen_provisionen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -78755,7 +81193,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -78784,11 +81222,11 @@ }, { "Field": "artikelkategorie", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78807,10 +81245,10 @@ { "Field": "waehrung", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78843,7 +81281,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78960,22 +81398,22 @@ }, { "Field": "nummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name_de", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78984,6 +81422,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -78992,6 +81432,7 @@ }, { "name": "provisionenartikel_provision", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -79000,7 +81441,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -79055,7 +81496,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79066,7 +81507,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79074,10 +81515,10 @@ { "Field": "provisiontyp", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79108,6 +81549,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -79116,6 +81559,7 @@ }, { "name": "prozessstarter", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -79124,40 +81568,40 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bedingung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "art", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79168,7 +81612,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79179,40 +81623,40 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "periode", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "'1440'", + "Default": "''1440''", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "typ", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "parameter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79223,7 +81667,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79234,7 +81678,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79245,7 +81689,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79256,7 +81700,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79264,21 +81708,21 @@ { "Field": "art_filter", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "status", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79309,12 +81753,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "parameter", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "parameter" ] @@ -79323,6 +81771,7 @@ }, { "name": "pseudostorage_shop", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -79331,7 +81780,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -79350,10 +81799,10 @@ { "Field": "formula", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79362,12 +81811,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "shop_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "shop_id" ] @@ -79376,6 +81829,7 @@ }, { "name": "real_article_mapping", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -79384,7 +81838,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -79395,7 +81849,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79406,7 +81860,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79424,55 +81878,55 @@ }, { "Field": "ext_sku", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ext_ean", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ext_name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ext_item_id", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ext_unit_id", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79481,6 +81935,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -79489,6 +81945,7 @@ }, { "name": "real_kategoriespezifisch", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -79497,7 +81954,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -79508,7 +81965,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79519,7 +81976,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79530,7 +81987,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79548,33 +82005,33 @@ }, { "Field": "specwert", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "specbezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "specname", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79592,22 +82049,22 @@ }, { "Field": "type", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "typevalue", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79616,6 +82073,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -79624,6 +82083,7 @@ }, { "name": "real_kategorievorschlag", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -79632,7 +82092,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -79643,7 +82103,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79654,7 +82114,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79665,7 +82125,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79676,51 +82136,51 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "vorschlagbezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "vorschlagparentid", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "level", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferkategorie", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "'0'", + "Default": "''0''", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79729,6 +82189,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -79737,6 +82199,7 @@ }, { "name": "real_versandgruppen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -79745,7 +82208,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -79756,18 +82219,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79787,6 +82250,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -79795,6 +82260,7 @@ }, { "name": "receiptdocument", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -79803,7 +82269,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -79866,10 +82332,10 @@ { "Field": "status", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79877,21 +82343,21 @@ { "Field": "status_qs", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "updated_by", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79899,10 +82365,10 @@ { "Field": "document_number", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79955,6 +82421,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -79963,6 +82431,7 @@ }, { "name": "receiptdocument_log", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -79971,7 +82440,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -79989,22 +82458,22 @@ }, { "Field": "log", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "created_by", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80024,12 +82493,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "receiptdocument_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "receiptdocument_id" ] @@ -80038,6 +82511,7 @@ }, { "name": "receiptdocument_position", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -80046,7 +82520,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -80120,21 +82594,21 @@ { "Field": "type", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "doctype", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80165,12 +82639,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "receiptdocument_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "receiptdocument_id" ] @@ -80179,6 +82657,7 @@ }, { "name": "rechnung", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -80187,7 +82666,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -80198,7 +82677,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80209,7 +82688,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80217,43 +82696,43 @@ { "Field": "projekt", "Type": "varchar(222)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "anlegeart", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "belegnr", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "auftrag", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80264,18 +82743,18 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80283,10 +82762,10 @@ { "Field": "freitext", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80294,10 +82773,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80305,10 +82784,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80319,117 +82798,117 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "abteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "unterabteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "strasse", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "adresszusatz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ansprechpartner", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "plz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ort", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "land", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ustid", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80440,7 +82919,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80451,7 +82930,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80462,7 +82941,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80473,51 +82952,51 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "email", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "telefon", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "telefax", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "betreff", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80525,10 +83004,10 @@ { "Field": "kundennummer", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80539,18 +83018,18 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versandart", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80561,40 +83040,40 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "buchhaltung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "zahlungsweise", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "zahlungsstatus", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80627,7 +83106,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80638,7 +83117,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80649,7 +83128,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80660,7 +83139,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80671,7 +83150,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80682,7 +83161,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80693,29 +83172,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versendet_per", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versendet_durch", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80726,18 +83205,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "mahnwesen", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80748,7 +83227,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80759,7 +83238,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80767,10 +83246,10 @@ { "Field": "mahnwesen_internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80781,7 +83260,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80792,7 +83271,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80814,7 +83293,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80979,7 +83458,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80987,21 +83466,21 @@ { "Field": "aktion", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "vertrieb", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81012,7 +83491,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81023,7 +83502,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81045,7 +83524,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81056,7 +83535,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81067,29 +83546,29 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ihrebestellnummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "anschreiben", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81100,7 +83579,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81122,7 +83601,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81133,7 +83612,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81144,7 +83623,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81155,7 +83634,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81166,7 +83645,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81177,7 +83656,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81188,7 +83667,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81199,7 +83678,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81210,7 +83689,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81221,7 +83700,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81283,11 +83762,11 @@ }, { "Field": "waehrung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "'EUR'", + "Default": "''EUR''", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81298,7 +83777,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81338,11 +83817,11 @@ }, { "Field": "typ", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "'firma'", + "Default": "''firma''", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81353,7 +83832,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81383,10 +83862,10 @@ { "Field": "systemfreitext", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81415,11 +83894,11 @@ }, { "Field": "internebezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81430,7 +83909,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81452,7 +83931,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81460,10 +83939,10 @@ { "Field": "sprache", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81471,10 +83950,10 @@ { "Field": "bundesland", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81482,10 +83961,10 @@ { "Field": "gln", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81493,10 +83972,10 @@ { "Field": "deliverythresholdvatid", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81507,7 +83986,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81529,7 +84008,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81548,10 +84027,10 @@ { "Field": "kostenstelle", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81559,10 +84038,10 @@ { "Field": "bodyzusatz", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81570,10 +84049,10 @@ { "Field": "lieferbedingung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81581,10 +84060,10 @@ { "Field": "titel", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81595,7 +84074,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81636,10 +84115,10 @@ { "Field": "bundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81647,10 +84126,10 @@ { "Field": "kundennummer_buchhaltung", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81658,10 +84137,10 @@ { "Field": "storage_country", "Type": "varchar(3)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81670,72 +84149,96 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "projekt", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "projekt" ] }, { "Key_name": "adresse", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "adresse" ] }, { "Key_name": "auftragid", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "auftragid" ] }, { "Key_name": "status", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "status" ] }, { "Key_name": "datum", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "datum" ] }, { "Key_name": "belegnr", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "belegnr" ] }, { "Key_name": "soll", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "soll" ] }, { "Key_name": "zahlungsstatus", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "zahlungsstatus" ] }, { "Key_name": "provdatum", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "provdatum" ] }, { "Key_name": "lieferschein", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "lieferschein" ] }, { "Key_name": "versandart", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "versandart" ] @@ -81744,6 +84247,7 @@ }, { "name": "rechnung_position", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -81752,7 +84256,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -81763,7 +84267,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81774,7 +84278,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81785,18 +84289,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81804,10 +84308,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81815,21 +84319,21 @@ { "Field": "internerkommentar", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "nummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81840,7 +84344,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81858,11 +84362,11 @@ }, { "Field": "waehrung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81873,18 +84377,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "vpe", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81895,7 +84399,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81903,21 +84407,21 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "umsatzsteuer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81925,10 +84429,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81961,7 +84465,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81972,7 +84476,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81983,7 +84487,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81994,7 +84498,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82005,7 +84509,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82016,7 +84520,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82027,7 +84531,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82038,7 +84542,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82049,7 +84553,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82060,7 +84564,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82071,7 +84575,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82082,18 +84586,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "einheit", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82104,7 +84608,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82112,7 +84616,7 @@ { "Field": "zolltarifnummer", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'0'", @@ -82123,7 +84627,7 @@ { "Field": "herkunftsland", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'0'", @@ -82134,10 +84638,10 @@ { "Field": "artikelnummerkunde", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82145,10 +84649,10 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82156,10 +84660,10 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82167,10 +84671,10 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82178,10 +84682,10 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82189,10 +84693,10 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82200,10 +84704,10 @@ { "Field": "freifeld6", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82211,10 +84715,10 @@ { "Field": "freifeld7", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82222,10 +84726,10 @@ { "Field": "freifeld8", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82233,10 +84737,10 @@ { "Field": "freifeld9", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82244,10 +84748,10 @@ { "Field": "freifeld10", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82288,10 +84792,10 @@ { "Field": "kostenstelle", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82302,7 +84806,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82310,10 +84814,10 @@ { "Field": "steuertext", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82321,10 +84825,10 @@ { "Field": "erloese", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82343,10 +84847,10 @@ { "Field": "einkaufspreiswaehrung", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82387,10 +84891,10 @@ { "Field": "ekwaehrung", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82409,10 +84913,10 @@ { "Field": "freifeld11", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82420,10 +84924,10 @@ { "Field": "freifeld12", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82431,10 +84935,10 @@ { "Field": "freifeld13", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82442,10 +84946,10 @@ { "Field": "freifeld14", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82453,10 +84957,10 @@ { "Field": "freifeld15", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82464,10 +84968,10 @@ { "Field": "freifeld16", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82475,10 +84979,10 @@ { "Field": "freifeld17", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82486,10 +84990,10 @@ { "Field": "freifeld18", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82497,10 +85001,10 @@ { "Field": "freifeld19", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82508,10 +85012,10 @@ { "Field": "freifeld20", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82519,10 +85023,10 @@ { "Field": "freifeld21", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82530,10 +85034,10 @@ { "Field": "freifeld22", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82541,10 +85045,10 @@ { "Field": "freifeld23", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82552,10 +85056,10 @@ { "Field": "freifeld24", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82563,10 +85067,10 @@ { "Field": "freifeld25", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82574,10 +85078,10 @@ { "Field": "freifeld26", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82585,10 +85089,10 @@ { "Field": "freifeld27", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82596,10 +85100,10 @@ { "Field": "freifeld28", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82607,10 +85111,10 @@ { "Field": "freifeld29", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82618,10 +85122,10 @@ { "Field": "freifeld30", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82629,10 +85133,10 @@ { "Field": "freifeld31", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82640,10 +85144,10 @@ { "Field": "freifeld32", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82651,10 +85155,10 @@ { "Field": "freifeld33", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82662,10 +85166,10 @@ { "Field": "freifeld34", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82673,10 +85177,10 @@ { "Field": "freifeld35", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82684,10 +85188,10 @@ { "Field": "freifeld36", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82695,10 +85199,10 @@ { "Field": "freifeld37", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82706,10 +85210,10 @@ { "Field": "freifeld38", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82717,10 +85221,10 @@ { "Field": "freifeld39", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82728,32 +85232,32 @@ { "Field": "freifeld40", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "formelmenge", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "formelpreis", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82775,7 +85279,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82786,7 +85290,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82797,7 +85301,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82808,7 +85312,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82819,7 +85323,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82830,7 +85334,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82863,7 +85367,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82874,7 +85378,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82885,7 +85389,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82896,7 +85400,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82905,24 +85409,32 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "rechnung", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "rechnung" ] }, { "Key_name": "artikel", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "artikel" ] }, { "Key_name": "auftrag_position_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "auftrag_position_id" ] @@ -82931,6 +85443,7 @@ }, { "name": "rechnung_protokoll", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -82939,7 +85452,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -82950,7 +85463,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82961,29 +85474,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "grund", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82992,12 +85505,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "rechnung", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "rechnung" ] @@ -83006,6 +85523,7 @@ }, { "name": "reisekosten", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -83014,7 +85532,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -83025,7 +85543,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83033,10 +85551,10 @@ { "Field": "projekt", "Type": "varchar(222)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83047,7 +85565,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83055,54 +85573,54 @@ { "Field": "prefix", "Type": "varchar(222)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "reisekostenart", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "belegnr", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "auftrag", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83113,7 +85631,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83121,21 +85639,21 @@ { "Field": "freitext", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "status", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83146,7 +85664,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83157,194 +85675,194 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "abteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "unterabteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "strasse", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "adresszusatz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ansprechpartner", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "plz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ort", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "land", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ustid", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "email", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "telefon", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "telefax", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "betreff", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kundennummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versandart", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versand", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83355,7 +85873,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83366,7 +85884,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83377,29 +85895,29 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versendet_per", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versendet_durch", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83410,7 +85928,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83432,7 +85950,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83443,7 +85961,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83454,7 +85972,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83527,11 +86045,11 @@ }, { "Field": "waehrung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "'EUR'", + "Default": "''EUR''", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83539,10 +86057,10 @@ { "Field": "anlass", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83550,10 +86068,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83564,7 +86082,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83575,29 +86093,29 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "von_zeit", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bis_zeit", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83637,11 +86155,11 @@ }, { "Field": "typ", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "'firma'", + "Default": "''firma''", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83650,6 +86168,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -83658,6 +86178,7 @@ }, { "name": "reisekosten_position", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -83666,7 +86187,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -83677,29 +86198,29 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "reisekostenart", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "artikel", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83710,18 +86231,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83729,10 +86250,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83740,10 +86261,10 @@ { "Field": "ort", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83751,32 +86272,32 @@ { "Field": "internerkommentar", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "nummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "verrechnungsart", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83787,7 +86308,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83798,7 +86319,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83809,29 +86330,29 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "von", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bis", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83842,18 +86363,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "status", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83861,32 +86382,32 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezahlt_wie", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "uststeuersatz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83897,7 +86418,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83919,7 +86440,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83930,18 +86451,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "abgerechnet_objekt", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83952,7 +86473,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83963,7 +86484,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83974,7 +86495,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84016,12 +86537,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "reisekosten", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "reisekosten" ] @@ -84030,6 +86555,7 @@ }, { "name": "reisekosten_protokoll", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -84038,7 +86564,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -84049,7 +86575,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84060,29 +86586,29 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "grund", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84091,12 +86617,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "reisekosten", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "reisekosten" ] @@ -84105,6 +86635,7 @@ }, { "name": "reisekostenart", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -84113,7 +86644,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -84121,10 +86652,10 @@ { "Field": "nummer", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84132,10 +86663,10 @@ { "Field": "beschreibung", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84143,10 +86674,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84155,6 +86686,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -84163,6 +86696,7 @@ }, { "name": "report", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -84171,18 +86705,18 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84190,10 +86724,10 @@ { "Field": "description", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84212,10 +86746,10 @@ { "Field": "sql_query", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84223,21 +86757,21 @@ { "Field": "remark", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "category", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84256,10 +86790,10 @@ { "Field": "csv_delimiter", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84267,10 +86801,10 @@ { "Field": "csv_enclosure", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84279,6 +86813,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -84287,6 +86823,7 @@ }, { "name": "report_column", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -84295,7 +86832,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -84313,44 +86850,44 @@ }, { "Field": "key_name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "title", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "width", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "alignment", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84379,11 +86916,11 @@ }, { "Field": "sorting", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84391,21 +86928,21 @@ { "Field": "format_type", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "format_statement", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84414,6 +86951,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -84422,6 +86961,7 @@ }, { "name": "report_favorite", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -84430,7 +86970,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -84461,6 +87001,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -84469,6 +87011,7 @@ }, { "name": "report_parameter", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -84477,7 +87020,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -84495,66 +87038,66 @@ }, { "Field": "varname", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "displayname", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "description", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "default_value", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "options", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "control_type", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84572,11 +87115,11 @@ }, { "Field": "variable_extern", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84585,6 +87128,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -84593,6 +87138,7 @@ }, { "name": "report_share", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -84601,7 +87147,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -84630,66 +87176,66 @@ }, { "Field": "chart_axislabel", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "chart_type", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "chart_x_column", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "data_columns", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "chart_group_column", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "chart_dateformat", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84707,11 +87253,11 @@ }, { "Field": "chart_interval_mode", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84773,33 +87319,33 @@ }, { "Field": "menu_doctype", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "menu_label", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "menu_format", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84817,44 +87363,44 @@ }, { "Field": "tab_module", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "tab_action", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "tab_label", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "tab_position", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84863,6 +87409,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -84871,6 +87419,7 @@ }, { "name": "report_transfer", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -84879,7 +87428,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -84908,77 +87457,77 @@ }, { "Field": "ftp_type", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ftp_host", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ftp_port", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ftp_user", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ftp_password", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ftp_interval_mode", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ftp_interval_value", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84989,29 +87538,29 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ftp_format", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ftp_filename", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85022,18 +87571,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": "" @@ -85052,43 +87590,43 @@ { "Field": "email_recipient", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "email_subject", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "email_interval_mode", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "email_interval_value", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85099,29 +87637,29 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "email_format", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "email_filename", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85132,18 +87670,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "url_format", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85154,7 +87692,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85165,7 +87703,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85173,10 +87711,10 @@ { "Field": "url_address", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85184,10 +87722,10 @@ { "Field": "url_token", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85216,11 +87754,22 @@ }, { "Field": "api_format", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_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": "" @@ -85229,6 +87778,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -85237,6 +87788,7 @@ }, { "name": "report_user", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -85245,7 +87797,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -85274,11 +87826,11 @@ }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85331,6 +87883,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -85339,6 +87893,7 @@ }, { "name": "retoure", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -85347,7 +87902,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -85358,7 +87913,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85366,43 +87921,43 @@ { "Field": "projekt", "Type": "varchar(222)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "belegnr", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferschein", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85413,18 +87968,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "auftrag", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85435,7 +87990,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85443,10 +87998,10 @@ { "Field": "freitext", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85454,10 +88009,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85468,106 +88023,106 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "abteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "unterabteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "strasse", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "adresszusatz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ansprechpartner", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "plz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ort", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "land", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85585,154 +88140,154 @@ }, { "Field": "liefername", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferabteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferunterabteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferstrasse", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferadresszusatz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferansprechpartner", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferplz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferort", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferland", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ustid", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "email", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "telefon", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "telefax", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "betreff", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85740,32 +88295,32 @@ { "Field": "kundennummer", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versandart", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versand", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85776,7 +88331,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85787,7 +88342,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85798,29 +88353,29 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versendet_per", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versendet_durch", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85831,7 +88386,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85853,18 +88408,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "vertrieb", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85875,29 +88430,29 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ihrebestellnummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "anschreiben", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85908,7 +88463,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85938,10 +88493,10 @@ { "Field": "lieferantenretoureinfo", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85992,11 +88547,11 @@ }, { "Field": "typ", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "'firma'", + "Default": "''firma''", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86004,10 +88559,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86018,7 +88573,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86080,11 +88635,11 @@ }, { "Field": "internebezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86095,7 +88650,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86114,10 +88669,10 @@ { "Field": "sprache", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86125,10 +88680,10 @@ { "Field": "bundesland", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86136,10 +88691,10 @@ { "Field": "gln", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86161,7 +88716,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86183,7 +88738,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86202,10 +88757,10 @@ { "Field": "bodyzusatz", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86213,10 +88768,10 @@ { "Field": "lieferbedingung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86224,10 +88779,10 @@ { "Field": "titel", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86257,10 +88812,10 @@ { "Field": "bundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86301,10 +88856,10 @@ { "Field": "fortschritt", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86335,24 +88890,32 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "adresse", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "adresse" ] }, { "Key_name": "status", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "status" ] }, { "Key_name": "versandart", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "versandart" ] @@ -86361,6 +88924,7 @@ }, { "name": "retoure_position", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -86369,7 +88933,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -86380,7 +88944,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86391,7 +88955,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86402,18 +88966,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86421,10 +88985,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86432,32 +88996,32 @@ { "Field": "internerkommentar", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "nummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "seriennummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86468,7 +89032,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86479,18 +89043,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "vpe", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86501,7 +89065,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86509,10 +89073,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86520,10 +89084,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86534,7 +89098,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86545,7 +89109,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86574,11 +89138,11 @@ }, { "Field": "einheit", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86586,7 +89150,7 @@ { "Field": "zolltarifnummer", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", "Default": "'0'", @@ -86597,7 +89161,7 @@ { "Field": "herkunftsland", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", "Default": "'0'", @@ -86608,10 +89172,10 @@ { "Field": "artikelnummerkunde", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86619,10 +89183,10 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86630,10 +89194,10 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86641,10 +89205,10 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86652,10 +89216,10 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86663,10 +89227,10 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86674,10 +89238,10 @@ { "Field": "freifeld6", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86685,10 +89249,10 @@ { "Field": "freifeld7", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86696,10 +89260,10 @@ { "Field": "freifeld8", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86707,10 +89271,10 @@ { "Field": "freifeld9", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86718,10 +89282,10 @@ { "Field": "freifeld10", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86729,10 +89293,10 @@ { "Field": "freifeld11", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86740,10 +89304,10 @@ { "Field": "freifeld12", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86751,10 +89315,10 @@ { "Field": "freifeld13", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86762,10 +89326,10 @@ { "Field": "freifeld14", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86773,10 +89337,10 @@ { "Field": "freifeld15", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86784,10 +89348,10 @@ { "Field": "freifeld16", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86795,10 +89359,10 @@ { "Field": "freifeld17", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86806,10 +89370,10 @@ { "Field": "freifeld18", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86817,10 +89381,10 @@ { "Field": "freifeld19", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86828,10 +89392,10 @@ { "Field": "freifeld20", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86839,10 +89403,10 @@ { "Field": "freifeld21", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86850,10 +89414,10 @@ { "Field": "freifeld22", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86861,10 +89425,10 @@ { "Field": "freifeld23", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86872,10 +89436,10 @@ { "Field": "freifeld24", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86883,10 +89447,10 @@ { "Field": "freifeld25", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86894,10 +89458,10 @@ { "Field": "freifeld26", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86905,10 +89469,10 @@ { "Field": "freifeld27", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86916,10 +89480,10 @@ { "Field": "freifeld28", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86927,10 +89491,10 @@ { "Field": "freifeld29", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86938,10 +89502,10 @@ { "Field": "freifeld30", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86949,10 +89513,10 @@ { "Field": "freifeld31", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86960,10 +89524,10 @@ { "Field": "freifeld32", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86971,10 +89535,10 @@ { "Field": "freifeld33", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86982,10 +89546,10 @@ { "Field": "freifeld34", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86993,10 +89557,10 @@ { "Field": "freifeld35", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87004,10 +89568,10 @@ { "Field": "freifeld36", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87015,10 +89579,10 @@ { "Field": "freifeld37", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87026,10 +89590,10 @@ { "Field": "freifeld38", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87037,10 +89601,10 @@ { "Field": "freifeld39", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87048,10 +89612,10 @@ { "Field": "freifeld40", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87102,11 +89666,11 @@ }, { "Field": "lagertext", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87146,11 +89710,11 @@ }, { "Field": "grund", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87158,21 +89722,21 @@ { "Field": "grundbeschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "aktion", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87180,10 +89744,10 @@ { "Field": "aktionbeschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87225,12 +89789,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "retoure", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "retoure" ] @@ -87239,6 +89807,7 @@ }, { "name": "retoure_protokoll", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -87247,7 +89816,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -87258,7 +89827,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87269,29 +89838,29 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "grund", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87300,12 +89869,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "retoure", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "retoure" ] @@ -87314,6 +89887,7 @@ }, { "name": "returnorder_quantity", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -87322,7 +89896,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -87344,40 +89918,40 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "serialnumber", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "batch", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bestbefore", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87386,12 +89960,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "delivery_note_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "delivery_note_id" ] @@ -87400,6 +89978,7 @@ }, { "name": "rma", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -87408,7 +89987,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -87419,7 +89998,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87427,10 +90006,10 @@ { "Field": "projekt", "Type": "varchar(222)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87441,18 +90020,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87463,7 +90042,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87471,10 +90050,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87485,73 +90064,73 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "vorname", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "abteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "unterabteilung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "strasse", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "adresszusatz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87559,21 +90138,21 @@ { "Field": "plz", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ort", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87581,87 +90160,87 @@ { "Field": "ustid", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "email", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "telefon", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "telefax", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "betreff", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kundennummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lieferantennummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "zahlungsweise", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87672,18 +90251,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versandart", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87694,18 +90273,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "freitext", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87716,7 +90295,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87727,7 +90306,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87738,7 +90317,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87749,18 +90328,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "einkaeufer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87771,7 +90350,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87791,6 +90370,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -87799,6 +90380,7 @@ }, { "name": "rma_artikel", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -87807,7 +90389,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -87818,7 +90400,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87829,18 +90411,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87851,7 +90433,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87862,18 +90444,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "wunsch", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87881,10 +90463,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87895,7 +90477,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87903,10 +90485,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87917,7 +90499,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87936,10 +90518,10 @@ { "Field": "techniker", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87947,10 +90529,10 @@ { "Field": "buchhaltung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87961,7 +90543,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87972,7 +90554,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87980,10 +90562,10 @@ { "Field": "seriennummer", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87992,12 +90574,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "adresse", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "adresse" ] @@ -88006,6 +90592,7 @@ }, { "name": "rma_position", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -88014,7 +90601,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -88032,11 +90619,11 @@ }, { "Field": "status", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "'offen'", + "Default": "''offen''", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88065,11 +90652,11 @@ }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88089,6 +90676,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -88097,6 +90686,7 @@ }, { "name": "rma_protokoll", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -88105,7 +90695,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -88134,22 +90724,22 @@ }, { "Field": "kommentar", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "link", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88157,10 +90747,10 @@ { "Field": "interngrund", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88168,21 +90758,21 @@ { "Field": "externgrund", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88202,6 +90792,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -88210,6 +90802,7 @@ }, { "name": "rma_vorlagen_grund", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -88218,18 +90811,18 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88237,10 +90830,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88248,10 +90841,10 @@ { "Field": "sprache", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88304,12 +90897,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "rmakategorie", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "rmakategorie" ] @@ -88318,6 +90915,7 @@ }, { "name": "rma_vorlagen_kategorien", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -88326,18 +90924,18 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88345,21 +90943,21 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "aktion", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88368,6 +90966,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -88376,6 +90976,7 @@ }, { "name": "rohstoffe", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -88384,7 +90985,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -88395,7 +90996,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88447,10 +91048,10 @@ { "Field": "referenz", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88458,7 +91059,7 @@ { "Field": "art", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'material'", @@ -88470,6 +91071,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -88478,6 +91081,7 @@ }, { "name": "sammelrechnung_position", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -88486,7 +91090,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -88583,24 +91187,32 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "lieferschein_position_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "lieferschein_position_id" ] }, { "Key_name": "auftrag_position_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "auftrag_position_id" ] }, { "Key_name": "rechnung", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "rechnung" ] @@ -88609,6 +91221,7 @@ }, { "name": "scheck_checked", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -88617,7 +91230,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -88628,7 +91241,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88639,7 +91252,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88648,6 +91261,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -88656,6 +91271,7 @@ }, { "name": "scheck_druck", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -88664,7 +91280,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -88682,11 +91298,11 @@ }, { "Field": "kommentar", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88728,6 +91344,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -88736,6 +91354,7 @@ }, { "name": "scheck_gutschrift", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -88744,7 +91363,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -88775,6 +91394,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -88783,6 +91404,7 @@ }, { "name": "seriennummern", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -88791,18 +91413,18 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "seriennummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88813,7 +91435,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88824,18 +91446,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "beschreibung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88846,7 +91468,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88857,7 +91479,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88868,18 +91490,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88890,7 +91512,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88899,6 +91521,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -88907,6 +91531,7 @@ }, { "name": "seriennummern_log", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -88915,7 +91540,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -88956,10 +91581,10 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88967,10 +91592,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88981,7 +91606,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89022,10 +91647,10 @@ { "Field": "doctype", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89047,18 +91672,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "batch", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89078,6 +91703,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -89086,6 +91713,7 @@ }, { "name": "service", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -89094,7 +91722,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -89123,11 +91751,11 @@ }, { "Field": "ansprechpartner", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89135,10 +91763,10 @@ { "Field": "nummer", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "UNI", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89146,7 +91774,7 @@ { "Field": "prio", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'niedrig'", @@ -89157,10 +91785,10 @@ { "Field": "eingangart", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89171,7 +91799,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89182,18 +91810,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "betreff", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89201,10 +91829,10 @@ { "Field": "beschreibung_html", "Type": "longtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89212,10 +91840,10 @@ { "Field": "internebemerkung", "Type": "longtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89223,10 +91851,10 @@ { "Field": "antwortankunden", "Type": "longtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89245,7 +91873,7 @@ { "Field": "status", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'angelegt'", @@ -89266,11 +91894,11 @@ }, { "Field": "seriennummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89314,7 +91942,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89344,10 +91972,10 @@ { "Field": "art", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89355,10 +91983,10 @@ { "Field": "bereich", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89366,10 +91994,10 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89377,10 +92005,10 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89388,10 +92016,10 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89399,10 +92027,10 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89410,10 +92038,10 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89421,10 +92049,10 @@ { "Field": "version", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89432,10 +92060,10 @@ { "Field": "antwortankundenempfaenger", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89443,10 +92071,10 @@ { "Field": "antwortankundenkopie", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89454,10 +92082,10 @@ { "Field": "antwortankundenblindkopie", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89465,10 +92093,10 @@ { "Field": "antwortankundenbetreff", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89477,12 +92105,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "nummer", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "nummer" ] @@ -89491,6 +92123,7 @@ }, { "name": "sevensenders_shipment", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -89499,7 +92132,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -89521,7 +92154,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89529,10 +92162,10 @@ { "Field": "carrier", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89540,10 +92173,10 @@ { "Field": "shipment_id", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89551,10 +92184,10 @@ { "Field": "shipment_reference", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89562,10 +92195,10 @@ { "Field": "tracking", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89574,6 +92207,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -89582,6 +92217,7 @@ }, { "name": "shopexport", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -89590,73 +92226,73 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "typ", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "url", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "passwort", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "token", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "challenge", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89667,7 +92303,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89678,7 +92314,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89689,7 +92325,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89905,11 +92541,11 @@ }, { "Field": "ab_nummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90126,10 +92762,10 @@ { "Field": "debitorennummer", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90159,10 +92795,10 @@ { "Field": "api_account_token", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90184,7 +92820,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90291,10 +92927,10 @@ { "Field": "json", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90302,10 +92938,10 @@ { "Field": "freitext", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90334,11 +92970,11 @@ }, { "Field": "autoversandoption", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "'standard'", + "Default": "''standard''", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90357,10 +92993,10 @@ { "Field": "shoptyp", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90368,10 +93004,10 @@ { "Field": "modulename", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90379,10 +93015,10 @@ { "Field": "einstellungen_json", "Type": "mediumtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90481,7 +93117,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90622,6 +93258,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -90630,6 +93268,7 @@ }, { "name": "shopexport_adressenuebertragen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -90638,7 +93277,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -90649,7 +93288,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90660,7 +93299,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90669,6 +93308,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -90677,6 +93318,7 @@ }, { "name": "shopexport_archiv", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -90685,7 +93327,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -90725,33 +93367,33 @@ }, { "Field": "status", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "letzteabgeholtenummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "type", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90780,22 +93422,22 @@ }, { "Field": "nummervon", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "nummerbis", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90846,11 +93488,11 @@ }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90881,12 +93523,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "shop", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "shop" ] @@ -90895,6 +93541,7 @@ }, { "name": "shopexport_artikel", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -90903,7 +93550,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -90932,11 +93579,11 @@ }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90944,21 +93591,21 @@ { "Field": "wert", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90978,12 +93625,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "shopid", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "shopid", "artikel" @@ -90993,6 +93644,7 @@ }, { "name": "shopexport_artikeluebertragen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -91001,7 +93653,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -91012,7 +93664,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91023,7 +93675,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91043,6 +93695,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -91051,6 +93705,7 @@ }, { "name": "shopexport_artikeluebertragen_check", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -91059,7 +93714,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -91070,7 +93725,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91081,7 +93736,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91090,6 +93745,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -91098,6 +93755,7 @@ }, { "name": "shopexport_change_log", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -91106,7 +93764,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -91117,18 +93775,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "username", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91136,10 +93794,10 @@ { "Field": "diff", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91157,22 +93815,22 @@ }, { "Field": "message", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "plaindiff", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91181,6 +93839,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -91189,6 +93849,7 @@ }, { "name": "shopexport_freifelder", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -91197,7 +93858,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -91208,29 +93869,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "freifeld_wawi", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "freifeld_shop", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91263,18 +93924,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "updatedby", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91283,6 +93944,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -91291,6 +93954,7 @@ }, { "name": "shopexport_getarticles", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -91299,7 +93963,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -91310,18 +93974,18 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "nummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91330,12 +93994,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "shop", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "shop" ] @@ -91344,6 +94012,7 @@ }, { "name": "shopexport_kampange", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -91352,18 +94021,18 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91374,7 +94043,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91385,7 +94054,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91396,7 +94065,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91407,7 +94076,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91415,10 +94084,10 @@ { "Field": "link", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91429,7 +94098,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91440,7 +94109,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91451,7 +94120,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91462,7 +94131,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91473,29 +94142,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "artikel", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "aktion", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91506,7 +94175,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91515,6 +94184,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -91523,6 +94194,7 @@ }, { "name": "shopexport_kategorien", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -91531,7 +94203,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -91571,33 +94243,33 @@ }, { "Field": "extid", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "extparent", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "extname", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91630,18 +94302,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "updatedby", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91650,18 +94322,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "shop", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "shop" ] }, { "Key_name": "kategorie", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "kategorie" ] @@ -91670,6 +94348,7 @@ }, { "name": "shopexport_kundengruppen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -91678,7 +94357,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -91718,22 +94397,22 @@ }, { "Field": "type", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "'mitglied'", + "Default": "''mitglied''", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "extgruppename", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91777,18 +94456,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "updatedby", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91797,6 +94476,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -91805,6 +94486,7 @@ }, { "name": "shopexport_log", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -91813,7 +94495,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -91832,10 +94514,10 @@ { "Field": "typ", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91843,10 +94525,10 @@ { "Field": "parameter1", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91854,10 +94536,10 @@ { "Field": "parameter2", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91865,10 +94547,10 @@ { "Field": "bearbeiter", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91887,10 +94569,10 @@ { "Field": "parameter3", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91898,10 +94580,10 @@ { "Field": "parameter4", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91910,12 +94592,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "shopid", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "shopid", "typ", @@ -91927,6 +94613,7 @@ }, { "name": "shopexport_mapping", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -91935,7 +94622,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -91954,10 +94641,10 @@ { "Field": "tabelle", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91986,11 +94673,11 @@ }, { "Field": "extid", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92010,24 +94697,32 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "shop", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "shop" ] }, { "Key_name": "tabelle", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "tabelle" ] }, { "Key_name": "intid", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "intid" ] @@ -92036,6 +94731,7 @@ }, { "name": "shopexport_sprachen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -92044,7 +94740,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -92063,21 +94759,21 @@ { "Field": "land", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "sprache", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92121,18 +94817,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "updatedby", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92141,6 +94837,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -92149,6 +94847,7 @@ }, { "name": "shopexport_status", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -92157,7 +94856,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -92168,18 +94867,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92190,7 +94889,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92198,10 +94897,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92209,10 +94908,10 @@ { "Field": "befehl", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92221,6 +94920,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -92229,6 +94930,7 @@ }, { "name": "shopexport_subshop", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -92237,7 +94939,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -92248,7 +94950,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92259,18 +94961,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "subshopkennung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92278,10 +94980,10 @@ { "Field": "sprache", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92314,18 +95016,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "updatedby", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92334,6 +95036,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -92342,6 +95046,7 @@ }, { "name": "shopexport_versandarten", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -92350,7 +95055,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -92361,29 +95066,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versandart_shop", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versandart_wawision", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92402,10 +95107,10 @@ { "Field": "land", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92423,11 +95128,11 @@ }, { "Field": "versandart_ausgehend", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92449,18 +95154,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "updatedby", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92480,6 +95185,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -92488,6 +95195,7 @@ }, { "name": "shopexport_voucher_cache", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -92496,7 +95204,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -92507,7 +95215,7 @@ "Collation": null, "Null": "NO", "Key": "UNI", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92538,12 +95246,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "voucher_id", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "voucher_id" ] @@ -92552,6 +95264,7 @@ }, { "name": "shopexport_zahlungsstatus", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -92560,7 +95273,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -92579,21 +95292,21 @@ { "Field": "auftrag", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "status", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92613,18 +95326,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "shop", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "shop" ] }, { "Key_name": "auftrag", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "auftrag" ] @@ -92633,6 +95352,7 @@ }, { "name": "shopexport_zahlweisen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -92641,7 +95361,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -92652,29 +95372,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "zahlweise_shop", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "zahlweise_wawision", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92736,11 +95456,11 @@ }, { "Field": "updatedby", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92760,6 +95480,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -92768,6 +95490,7 @@ }, { "name": "shopimport_amazon_aufrufe", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -92776,7 +95499,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -92784,10 +95507,10 @@ { "Field": "shop", "Type": "varchar(100)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92795,10 +95518,10 @@ { "Field": "funktion", "Type": "varchar(100)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92806,10 +95529,10 @@ { "Field": "daten", "Type": "mediumtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92831,7 +95554,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92842,7 +95565,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92853,7 +95576,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92875,7 +95598,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92883,10 +95606,10 @@ { "Field": "apifunktion", "Type": "varchar(100)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92894,10 +95617,10 @@ { "Field": "feedid", "Type": "varchar(50)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92908,7 +95631,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92927,10 +95650,10 @@ { "Field": "fehlertext", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92961,6 +95684,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -92969,6 +95694,7 @@ }, { "name": "shopimport_amazon_gotorders", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -92977,7 +95703,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -92985,10 +95711,10 @@ { "Field": "orderid", "Type": "varchar(30)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92996,10 +95722,10 @@ { "Field": "orderitemid", "Type": "varchar(30)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93007,10 +95733,10 @@ { "Field": "nextordertoken", "Type": "varchar(30)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93018,10 +95744,10 @@ { "Field": "nextitemtoken", "Type": "varchar(30)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93032,7 +95758,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93040,10 +95766,10 @@ { "Field": "tracking", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93117,10 +95843,10 @@ { "Field": "marketplace", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93129,12 +95855,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "orderid", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "orderid" ] @@ -93143,6 +95873,7 @@ }, { "name": "shopimport_amazon_throttling", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -93151,7 +95882,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -93159,10 +95890,10 @@ { "Field": "apifunktion", "Type": "varchar(100)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93170,10 +95901,10 @@ { "Field": "shop", "Type": "varchar(100)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93181,10 +95912,10 @@ { "Field": "typ", "Type": "varchar(50)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93195,7 +95926,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93206,7 +95937,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93217,7 +95948,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93228,7 +95959,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93239,7 +95970,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93250,7 +95981,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93261,7 +95992,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93272,7 +96003,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93283,7 +96014,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93294,7 +96025,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93316,7 +96047,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93336,12 +96067,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "shopid", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "shopid" ] @@ -93350,6 +96085,7 @@ }, { "name": "shopimport_auftraege", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -93358,7 +96094,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -93376,22 +96112,22 @@ }, { "Field": "extid", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "sessionid", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93399,10 +96135,10 @@ { "Field": "warenkorb", "Type": "mediumtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93413,7 +96149,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93424,7 +96160,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93435,18 +96171,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93457,18 +96193,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bestellnummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93488,6 +96224,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -93496,6 +96234,7 @@ }, { "name": "shopimport_checkorder", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -93504,7 +96243,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -93533,11 +96272,11 @@ }, { "Field": "ext_order", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "'0'", + "Default": "''0''", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93555,11 +96294,11 @@ }, { "Field": "status", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "'unpaid'", + "Default": "''unpaid''", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93590,6 +96329,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -93598,6 +96339,7 @@ }, { "name": "shopimporter_amazon_attachedoffers", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -93606,7 +96348,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -93647,32 +96389,32 @@ { "Field": "marketplace", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "title", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "merchantgroup", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93680,7 +96422,7 @@ { "Field": "condition", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'new'", @@ -93691,10 +96433,10 @@ { "Field": "sku", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93702,10 +96444,10 @@ { "Field": "asin", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93713,10 +96455,10 @@ { "Field": "status", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93724,10 +96466,10 @@ { "Field": "currency", "Type": "varchar(4)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93790,10 +96532,10 @@ { "Field": "feed_submission_id", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93801,10 +96543,10 @@ { "Field": "feed_submission_id_price", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93812,10 +96554,10 @@ { "Field": "feed_submission_id_storage", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93823,10 +96565,10 @@ { "Field": "feed_submission_id_flat", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93834,10 +96576,10 @@ { "Field": "error_code", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93845,10 +96587,10 @@ { "Field": "error_message", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93857,30 +96599,40 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "shop_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "shop_id" ] }, { "Key_name": "article_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "article_id" ] }, { "Key_name": "sku", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "sku" ] }, { "Key_name": "asin", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "asin" ] @@ -93889,6 +96641,7 @@ }, { "name": "shopimporter_amazon_browsetree", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -93897,7 +96650,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -93905,10 +96658,10 @@ { "Field": "browsenodeid", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93916,10 +96669,10 @@ { "Field": "marketplace", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93937,22 +96690,22 @@ }, { "Field": "browseNodename", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "browseNodestorecontextname", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93960,10 +96713,10 @@ { "Field": "browsepathbyid", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93971,10 +96724,10 @@ { "Field": "browsepathbyname", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93992,11 +96745,11 @@ }, { "Field": "producttypedefinitions", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94038,18 +96791,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "browsenodeid", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "browsenodeid" ] }, { "Key_name": "parent_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "parent_id" ] @@ -94058,6 +96817,7 @@ }, { "name": "shopimporter_amazon_categorie", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -94066,7 +96826,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -94074,10 +96834,10 @@ { "Field": "root_node", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94085,10 +96845,10 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94096,10 +96856,10 @@ { "Field": "node_de", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94107,10 +96867,10 @@ { "Field": "node_uk", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94118,10 +96878,10 @@ { "Field": "node_fr", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94129,10 +96889,10 @@ { "Field": "node_it", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94140,10 +96900,10 @@ { "Field": "node_es", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94152,18 +96912,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "name", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "name" ] }, { "Key_name": "node_de", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "node_de" ] @@ -94172,6 +96938,7 @@ }, { "name": "shopimporter_amazon_creditnotes_adjustmentid", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -94180,7 +96947,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -94232,10 +96999,10 @@ { "Field": "adjustmentid", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94255,18 +97022,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "shop_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "shop_id" ] }, { "Key_name": "creditnote_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "creditnote_id" ] @@ -94275,6 +97048,7 @@ }, { "name": "shopimporter_amazon_feedsubmission", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -94283,7 +97057,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -94302,10 +97076,10 @@ { "Field": "feed_submission_id", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94313,10 +97087,10 @@ { "Field": "feed_type", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94324,10 +97098,10 @@ { "Field": "feed_processing_status", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94335,10 +97109,10 @@ { "Field": "parameter", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94349,7 +97123,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94360,7 +97134,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94371,7 +97145,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94382,7 +97156,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94391,12 +97165,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "shop_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "shop_id", "feed_submission_id" @@ -94406,6 +97184,7 @@ }, { "name": "shopimporter_amazon_flatfile_article", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -94414,7 +97193,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -94454,22 +97233,22 @@ }, { "Field": "sku", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "status", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94477,21 +97256,21 @@ { "Field": "marketplace", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "feedsubmissionid", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94499,10 +97278,10 @@ { "Field": "error_message", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94522,12 +97301,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "shop_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "shop_id" ] @@ -94536,6 +97319,7 @@ }, { "name": "shopimporter_amazon_flatfile_article_image", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -94544,7 +97328,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -94573,22 +97357,22 @@ }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "url", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94608,18 +97392,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "shopimporter_amazon_flatfile_article_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "shopimporter_amazon_flatfile_article_id" ] }, { "Key_name": "file_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "file_id" ] @@ -94628,6 +97418,7 @@ }, { "name": "shopimporter_amazon_flatfile_article_value", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -94636,7 +97427,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -94654,22 +97445,22 @@ }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "value", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94678,12 +97469,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "shopimporter_amazon_flatfile_article_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "shopimporter_amazon_flatfile_article_id" ] @@ -94692,6 +97487,7 @@ }, { "name": "shopimporter_amazon_flatfiledefinition", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -94700,7 +97496,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -94708,10 +97504,10 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "UNI", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94719,10 +97515,10 @@ { "Field": "country", "Type": "varchar(2)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94730,10 +97526,10 @@ { "Field": "csv", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94741,10 +97537,10 @@ { "Field": "definitions_json", "Type": "mediumtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94752,10 +97548,10 @@ { "Field": "requirements_json", "Type": "mediumtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94763,10 +97559,10 @@ { "Field": "allowed_values_json", "Type": "mediumtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94775,12 +97571,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "name", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "name" ] @@ -94789,6 +97589,7 @@ }, { "name": "shopimporter_amazon_flatfilefields", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -94797,18 +97598,18 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "fieldname", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "UNI", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94817,12 +97618,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "fieldname", + "Index_type": "HASH", + "Non_unique": "", "columns": [ "fieldname" ] @@ -94831,6 +97636,7 @@ }, { "name": "shopimporter_amazon_invoice_address", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -94839,7 +97645,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -94858,76 +97664,76 @@ { "Field": "orderid", "Type": "varchar(19)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "addressfieldone", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "addressfieldtwo", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "addressfieldthree", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "city", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "region", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94935,10 +97741,10 @@ { "Field": "postalcode", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94946,32 +97752,32 @@ { "Field": "countrycode", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "email", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "phonenumber", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94980,12 +97786,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "orderid", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "orderid" ] @@ -94994,6 +97804,7 @@ }, { "name": "shopimporter_amazon_invoice_upload", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -95002,7 +97813,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -95065,10 +97876,10 @@ { "Field": "orderid", "Type": "varchar(19)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95076,10 +97887,10 @@ { "Field": "shippingid", "Type": "varchar(19)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95109,10 +97920,10 @@ { "Field": "report", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95120,10 +97931,10 @@ { "Field": "marketplace", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95131,10 +97942,10 @@ { "Field": "status", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95142,10 +97953,10 @@ { "Field": "error_code", "Type": "varchar(5)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95153,10 +97964,10 @@ { "Field": "error_message", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95164,10 +97975,10 @@ { "Field": "invoice_number", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95196,11 +98007,11 @@ }, { "Field": "transaction_id", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95220,18 +98031,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "shop_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "shop_id" ] }, { "Key_name": "orderid", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "orderid" ] @@ -95240,6 +98057,7 @@ }, { "name": "shopimporter_amazon_listing", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -95248,7 +98066,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -95267,10 +98085,10 @@ { "Field": "marketplace_request", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95281,7 +98099,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95292,7 +98110,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95300,10 +98118,10 @@ { "Field": "seller_sku", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95311,10 +98129,10 @@ { "Field": "item_name", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95332,11 +98150,11 @@ }, { "Field": "listing_id", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95344,10 +98162,10 @@ { "Field": "item_description", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95358,7 +98176,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95369,7 +98187,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95380,18 +98198,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "image_url", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95399,10 +98217,10 @@ { "Field": "item_is_marketplace", "Type": "varchar(1)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95413,7 +98231,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95424,18 +98242,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "item_note", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95446,40 +98264,40 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "zshop_category1", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "zshop_browse_path", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "zshop_storefron_feature", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95487,10 +98305,10 @@ { "Field": "asin", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95498,10 +98316,10 @@ { "Field": "asin2", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95509,10 +98327,10 @@ { "Field": "asin3", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95520,10 +98338,10 @@ { "Field": "will_ship_internationally", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95531,10 +98349,10 @@ { "Field": "expedited_shipping", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95542,43 +98360,43 @@ { "Field": "zshop_boldface", "Type": "varchar(1)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "product_id", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bid_for_fetatured_placement", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "add_delete", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95589,18 +98407,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "fulfillment_channel", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95611,18 +98429,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "quantity_price_type", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95633,7 +98451,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95644,7 +98462,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95655,7 +98473,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95666,7 +98484,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95677,7 +98495,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95688,7 +98506,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95699,7 +98517,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95710,7 +98528,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95721,7 +98539,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95732,18 +98550,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "merchant_shipping_group", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95751,10 +98569,10 @@ { "Field": "status", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95776,7 +98594,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95796,18 +98614,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "article_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "article_id" ] }, { "Key_name": "seller_sku", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "seller_sku" ] @@ -95816,6 +98640,7 @@ }, { "name": "shopimporter_amazon_merchantgroup", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -95824,7 +98649,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -95842,11 +98667,11 @@ }, { "Field": "groupname", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95866,12 +98691,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "shop_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "shop_id" ] @@ -95880,6 +98709,7 @@ }, { "name": "shopimporter_amazon_order_status", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -95888,7 +98718,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -95907,10 +98737,10 @@ { "Field": "orderid", "Type": "varchar(19)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95918,10 +98748,10 @@ { "Field": "status", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95941,12 +98771,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "shop_id", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "shop_id", "orderid", @@ -95957,6 +98791,7 @@ }, { "name": "shopimporter_amazon_orderadjustment", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -95965,7 +98800,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -95995,10 +98830,10 @@ { "Field": "submitfeedid", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96006,10 +98841,10 @@ { "Field": "status", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96029,18 +98864,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "shop_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "shop_id" ] }, { "Key_name": "status", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "status" ] @@ -96049,6 +98890,7 @@ }, { "name": "shopimporter_amazon_orderinfo", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -96057,7 +98899,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -96076,10 +98918,10 @@ { "Field": "orderid", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96132,12 +98974,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "orderid", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "orderid" ] @@ -96146,6 +98992,7 @@ }, { "name": "shopimporter_amazon_recommendation", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -96154,7 +99001,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -96172,88 +99019,88 @@ }, { "Field": "recommendationtype", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "itemname", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "defectgroup", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "recommendationid", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "recommendationreason", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "defectattribute", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "asin", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "sku", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96273,18 +99120,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "shop_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "shop_id" ] }, { "Key_name": "recommendationid", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "recommendationid" ] @@ -96293,6 +99146,7 @@ }, { "name": "shopimporter_amazon_report_scheduler", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -96301,7 +99155,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -96323,7 +99177,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96342,10 +99196,10 @@ { "Field": "marketplace_request", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96353,10 +99207,10 @@ { "Field": "report_type", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96364,10 +99218,10 @@ { "Field": "last_reportrequestid", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96375,10 +99229,10 @@ { "Field": "last_generatedreportid", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96386,10 +99240,10 @@ { "Field": "last_report_status", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96409,12 +99263,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "shop_id", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "shop_id", "report_type", @@ -96425,6 +99283,7 @@ }, { "name": "shopimporter_amazon_requestinfo", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -96433,7 +99292,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -96452,10 +99311,10 @@ { "Field": "type", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96463,10 +99322,10 @@ { "Field": "doctype", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96474,10 +99333,10 @@ { "Field": "parameter", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96485,10 +99344,10 @@ { "Field": "parameter2", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96496,10 +99355,10 @@ { "Field": "status", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96518,10 +99377,10 @@ { "Field": "error", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96541,12 +99400,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "shop_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "shop_id", "type" @@ -96554,12 +99417,16 @@ }, { "Key_name": "shopimporter_amazon_aufrufe_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "shopimporter_amazon_aufrufe_id" ] }, { "Key_name": "status", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "status" ] @@ -96568,6 +99435,7 @@ }, { "name": "shopimporter_amazon_service_status", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -96576,7 +99444,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -96595,10 +99463,10 @@ { "Field": "status", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96618,18 +99486,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "shop_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "shop_id" ] }, { "Key_name": "updated_at", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "updated_at" ] @@ -96638,6 +99512,7 @@ }, { "name": "shopimporter_amazon_small_and_light", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -96646,7 +99521,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -96665,10 +99540,10 @@ { "Field": "marketplace_request", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96679,18 +99554,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "sku", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96698,10 +99573,10 @@ { "Field": "fnsku", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96709,10 +99584,10 @@ { "Field": "asin", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96720,10 +99595,10 @@ { "Field": "protuct_name", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96731,10 +99606,10 @@ { "Field": "enrolled_in_snl", "Type": "varchar(3)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96742,10 +99617,10 @@ { "Field": "marketplace", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96756,7 +99631,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96767,7 +99642,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96778,7 +99653,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96787,12 +99662,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "shop_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "shop_id" ] @@ -96801,6 +99680,7 @@ }, { "name": "shopimporter_amazon_token", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -96809,7 +99689,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -96827,11 +99707,11 @@ }, { "Field": "type", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96839,10 +99719,10 @@ { "Field": "token", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96862,12 +99742,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "shop_id", + "Index_type": "HASH", + "Non_unique": "", "columns": [ "shop_id", "type" @@ -96877,6 +99761,7 @@ }, { "name": "shopimporter_amazon_xsd_enumerations", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -96885,29 +99770,29 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "parent_name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "direct_parent", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96915,21 +99800,21 @@ { "Field": "element_name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "element_value", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96937,32 +99822,32 @@ { "Field": "enumeration_type", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "restriction", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "file", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96982,18 +99867,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "enumeration_type", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "enumeration_type" ] }, { "Key_name": "element_name", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "element_name" ] @@ -97002,6 +99893,7 @@ }, { "name": "shopimporter_shopify_auftraege", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -97010,7 +99902,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -97029,10 +99921,10 @@ { "Field": "extid", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97051,10 +99943,10 @@ { "Field": "bearbeiter", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97073,10 +99965,10 @@ { "Field": "transaction_id", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97084,10 +99976,10 @@ { "Field": "zahlungsweise", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97096,18 +99988,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "shop", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "shop" ] }, { "Key_name": "extid", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "extid" ] @@ -97116,6 +100014,7 @@ }, { "name": "shopnavigation", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -97124,18 +100023,18 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97146,7 +100045,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97157,40 +100056,40 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung_en", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "plugin", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "pluginparameter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97201,18 +100100,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "target", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97221,6 +100120,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -97229,6 +100130,7 @@ }, { "name": "singleshipment_order", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -97237,7 +100139,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -97248,7 +100150,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97259,7 +100161,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97270,40 +100172,40 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "status", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "trackingnumber", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "quality", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97312,6 +100214,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -97320,6 +100224,7 @@ }, { "name": "snapaddy_address", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -97328,7 +100233,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -97336,10 +100241,10 @@ { "Field": "address_id", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97347,10 +100252,10 @@ { "Field": "contact_list", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97358,10 +100263,10 @@ { "Field": "firstName", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97369,10 +100274,10 @@ { "Field": "lastName", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97380,10 +100285,10 @@ { "Field": "phone", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97391,10 +100296,10 @@ { "Field": "email", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97402,10 +100307,10 @@ { "Field": "city", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97413,10 +100318,10 @@ { "Field": "website", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97424,10 +100329,10 @@ { "Field": "zip", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97446,10 +100351,10 @@ { "Field": "snap_created", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97457,10 +100362,10 @@ { "Field": "snap_hash", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "UNI", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97468,10 +100373,10 @@ { "Field": "address", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97480,12 +100385,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "snap_hash", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "snap_hash" ] @@ -97494,6 +100403,7 @@ }, { "name": "snapaddy_log", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -97502,7 +100412,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -97510,10 +100420,10 @@ { "Field": "lvl", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97521,10 +100431,10 @@ { "Field": "msg", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97544,6 +100454,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -97552,6 +100464,7 @@ }, { "name": "sprachen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -97560,7 +100473,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -97568,43 +100481,43 @@ { "Field": "iso", "Type": "varchar(2)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung_de", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung_en", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "alias", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97624,6 +100537,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -97632,6 +100547,7 @@ }, { "name": "spryker_data", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -97640,7 +100556,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -97651,7 +100567,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97669,22 +100585,22 @@ }, { "Field": "reference", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "type", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97704,12 +100620,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "shop_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "shop_id" ] @@ -97718,6 +100638,7 @@ }, { "name": "spryker_online_number", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -97726,7 +100647,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -97734,10 +100655,10 @@ { "Field": "order_reference", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97745,10 +100666,10 @@ { "Field": "order_shipment", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97759,7 +100680,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97768,18 +100689,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "order_reference", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "order_reference" ] }, { "Key_name": "order_shipment", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "order_shipment" ] @@ -97788,6 +100715,7 @@ }, { "name": "spryker_order_reference", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -97796,7 +100724,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -97807,40 +100735,40 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "order_reference", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "shipment_id", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "order_item_reference", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97860,12 +100788,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "shop_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "shop_id" ] @@ -97874,6 +100806,7 @@ }, { "name": "sqlcache", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -97882,7 +100815,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -97890,10 +100823,10 @@ { "Field": "abfrage", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97901,21 +100834,21 @@ { "Field": "ergebnis", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "shortcode", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97946,6 +100879,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -97954,6 +100889,7 @@ }, { "name": "standardpackage", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -97962,29 +100898,29 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "description", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98047,10 +100983,10 @@ { "Field": "color", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98059,6 +100995,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -98067,6 +101005,7 @@ }, { "name": "stechuhr", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -98075,7 +101014,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -98086,7 +101025,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98138,10 +101077,10 @@ { "Field": "status", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98161,12 +101100,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "datum", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "datum" ] @@ -98175,6 +101118,7 @@ }, { "name": "stechuhrdevice", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -98183,18 +101127,18 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "url", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98258,6 +101202,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -98266,6 +101212,7 @@ }, { "name": "steuersaetze", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -98274,7 +101221,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -98282,10 +101229,10 @@ { "Field": "bezeichnung", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98315,10 +101262,10 @@ { "Field": "bearbeiter", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98351,7 +101298,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98362,7 +101309,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98370,10 +101317,10 @@ { "Field": "type", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98381,10 +101328,10 @@ { "Field": "country_code", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98404,6 +101351,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -98412,6 +101361,7 @@ }, { "name": "stock_replenishment_list", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -98420,7 +101370,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -98528,12 +101478,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "article_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "article_id", "is_replenishment" @@ -98543,6 +101497,7 @@ }, { "name": "stueckliste", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -98551,7 +101506,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -98562,7 +101517,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98573,7 +101528,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98581,32 +101536,32 @@ { "Field": "referenz", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "place", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "layer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98617,7 +101572,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98639,7 +101594,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98647,10 +101602,10 @@ { "Field": "wert", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98658,10 +101613,10 @@ { "Field": "bauform", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98680,10 +101635,10 @@ { "Field": "zachse", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98691,10 +101646,10 @@ { "Field": "xpos", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98702,10 +101657,10 @@ { "Field": "ypos", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98713,10 +101668,10 @@ { "Field": "art", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98725,12 +101680,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "stuecklistevonartikel", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "stuecklistevonartikel" ] @@ -98739,6 +101698,7 @@ }, { "name": "stundensatz", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -98747,7 +101707,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -98758,7 +101718,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98769,18 +101729,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "typ", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98791,7 +101751,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98802,7 +101762,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98811,6 +101771,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -98818,7 +101780,8 @@ ] }, { - "name": "supersearch_index_group", + "name": "subscription_cycle_job", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -98827,7 +101790,98 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, + "Extra": "auto_increment", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "address_id", + "Type": "int(11)", + "Collation": null, + "Null": "NO", + "Key": "MUL", + "Default": null, + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "document_type", + "Type": "varchar(32)", + "Collation": "utf8mb3_general_ci", + "Null": "NO", + "Key": "", + "Default": null, + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "job_type", + "Type": "varchar(32)", + "Collation": "utf8mb3_general_ci", + "Null": "YES", + "Key": "", + "Default": null, + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "printer_id", + "Type": "int(11)", + "Collation": null, + "Null": "YES", + "Key": "", + "Default": null, + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "created_at", + "Type": "timestamp", + "Collation": null, + "Null": "NO", + "Key": "", + "Default": "current_timestamp()", + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + } + ], + "keys": [ + { + "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", + "columns": [ + "id" + ] + }, + { + "Key_name": "address", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", + "columns": [ + "address_id" + ] + } + ] + }, + { + "name": "supersearch_index_group", + "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": "" @@ -98835,10 +101889,10 @@ { "Field": "name", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "UNI", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98846,10 +101900,10 @@ { "Field": "title", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98857,10 +101911,10 @@ { "Field": "module", "Type": "varchar(38)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98882,7 +101936,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98893,7 +101947,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98902,12 +101956,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "name", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "name" ] @@ -98916,6 +101974,7 @@ }, { "name": "supersearch_index_item", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -98924,7 +101983,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -98932,10 +101991,10 @@ { "Field": "index_name", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98943,10 +102002,10 @@ { "Field": "index_id", "Type": "varchar(38)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98965,10 +102024,10 @@ { "Field": "title", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98976,21 +102035,21 @@ { "Field": "subtitle", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "additional_infos", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98998,21 +102057,21 @@ { "Field": "link", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "search_words", - "Type": "text", - "Collation": "utf8mb3_general_ci", + "Type": "varchar(255)", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99045,7 +102104,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99054,12 +102113,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "index_identifier", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "index_name", "index_id" @@ -99067,12 +102130,16 @@ }, { "Key_name": "project_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "project_id" ] }, { "Key_name": "FullText", + "Index_type": "FULLTEXT", + "Non_unique": "UNIQUE", "columns": [ "search_words" ] @@ -99081,6 +102148,7 @@ }, { "name": "supportapp", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -99089,7 +102157,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -99122,7 +102190,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99141,10 +102209,10 @@ { "Field": "version", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99152,10 +102220,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99163,10 +102231,10 @@ { "Field": "status", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99174,10 +102242,10 @@ { "Field": "phase", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99197,6 +102265,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -99205,6 +102275,7 @@ }, { "name": "supportapp_artikel", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -99213,7 +102284,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -99244,6 +102315,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -99252,6 +102325,7 @@ }, { "name": "supportapp_auftrag_check", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -99260,7 +102334,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -99271,7 +102345,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99282,7 +102356,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99293,7 +102367,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99304,7 +102378,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99324,6 +102398,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -99332,6 +102408,7 @@ }, { "name": "supportapp_gruppen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -99340,7 +102417,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -99351,18 +102428,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99382,6 +102459,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -99390,6 +102469,7 @@ }, { "name": "supportapp_log", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -99398,7 +102478,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -99431,18 +102511,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "details", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99451,6 +102531,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -99459,6 +102541,7 @@ }, { "name": "supportapp_schritte", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -99467,18 +102550,18 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "'0'", + "Default": "''0''", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99497,10 +102580,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99553,6 +102636,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -99561,6 +102646,7 @@ }, { "name": "supportapp_vorlagen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -99569,29 +102655,29 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "taetigkeit", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99599,10 +102685,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99611,6 +102697,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -99619,6 +102707,7 @@ }, { "name": "survey", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -99627,18 +102716,18 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99668,10 +102757,10 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99679,10 +102768,10 @@ { "Field": "action", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99691,6 +102780,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -99699,6 +102790,7 @@ }, { "name": "survey_user", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -99707,7 +102799,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -99737,10 +102829,10 @@ { "Field": "data", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99760,18 +102852,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "survey_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "survey_id" ] }, { "Key_name": "user_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "user_id" ] @@ -99780,6 +102878,7 @@ }, { "name": "system_disk_free", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -99788,7 +102887,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -99799,7 +102898,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99810,7 +102909,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99821,7 +102920,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99832,7 +102931,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99852,12 +102951,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "created_at", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "created_at" ] @@ -99866,6 +102969,7 @@ }, { "name": "systemhealth", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -99874,7 +102978,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -99893,10 +102997,10 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99904,10 +103008,10 @@ { "Field": "description", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99915,21 +103019,21 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "message", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99951,7 +103055,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99973,7 +103077,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99982,18 +103086,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "systemhealth_category_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "systemhealth_category_id" ] }, { "Key_name": "name", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "name" ] @@ -100002,6 +103112,7 @@ }, { "name": "systemhealth_category", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -100010,7 +103121,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -100018,10 +103129,10 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100029,10 +103140,10 @@ { "Field": "description", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100052,12 +103163,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "name", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "name" ] @@ -100066,6 +103181,7 @@ }, { "name": "systemhealth_custom_error_lvl", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -100074,7 +103190,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -100093,10 +103209,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100105,12 +103221,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "systemhealth_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "systemhealth_id" ] @@ -100119,6 +103239,7 @@ }, { "name": "systemhealth_event", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -100127,7 +103248,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -100157,10 +103278,10 @@ { "Field": "doctype", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100179,21 +103300,21 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "message", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100202,18 +103323,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "systemhealth_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "systemhealth_id" ] }, { "Key_name": "created_at", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "created_at" ] @@ -100222,6 +103349,7 @@ }, { "name": "systemhealth_notification", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -100230,7 +103358,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -100238,21 +103366,21 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "email", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100261,6 +103389,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -100269,6 +103399,7 @@ }, { "name": "systemhealth_notification_item", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -100277,7 +103408,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -100307,21 +103438,21 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "email", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100330,6 +103461,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -100338,6 +103471,7 @@ }, { "name": "systemlog", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -100346,7 +103480,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -100354,10 +103488,10 @@ { "Field": "meldung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100365,10 +103499,10 @@ { "Field": "dump", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100376,10 +103510,10 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100387,10 +103521,10 @@ { "Field": "action", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100398,10 +103532,10 @@ { "Field": "bearbeiter", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100409,10 +103543,10 @@ { "Field": "funktionsname", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100423,7 +103557,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100442,10 +103576,10 @@ { "Field": "argumente", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100465,6 +103599,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -100473,6 +103609,7 @@ }, { "name": "systemtemplates", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -100481,7 +103618,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -100489,10 +103626,10 @@ { "Field": "filename", "Type": "varchar(200)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100500,10 +103637,10 @@ { "Field": "footer_icons", "Type": "varchar(200)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100511,10 +103648,10 @@ { "Field": "category", "Type": "varchar(100)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100522,10 +103659,10 @@ { "Field": "title", "Type": "varchar(100)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100533,10 +103670,10 @@ { "Field": "description", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100567,12 +103704,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "system_pkey", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "id", "hidden" @@ -100582,6 +103723,7 @@ }, { "name": "task_subscription", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -100590,7 +103732,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -100601,7 +103743,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100612,7 +103754,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100621,12 +103763,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "task_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "task_id" ] @@ -100635,6 +103781,7 @@ }, { "name": "task_timeline", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -100643,7 +103790,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -100654,7 +103801,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100665,7 +103812,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100684,10 +103831,10 @@ { "Field": "content", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100696,12 +103843,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "task_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "task_id" ] @@ -100710,6 +103861,7 @@ }, { "name": "teilprojekt_geplante_zeiten", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -100718,7 +103870,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -100758,11 +103910,11 @@ }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100793,6 +103945,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -100801,6 +103955,7 @@ }, { "name": "telefonrueckruf", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -100809,7 +103964,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -100820,7 +103975,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100831,7 +103986,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100849,22 +104004,22 @@ }, { "Field": "adressetext", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "grund", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100904,11 +104059,11 @@ }, { "Field": "telefonnummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100916,10 +104071,10 @@ { "Field": "kommentar", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100939,12 +104094,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "rueckrufvon", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "rueckrufvon" ] @@ -100953,6 +104112,7 @@ }, { "name": "telefonrueckruf_versuche", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -100961,7 +104121,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -100983,7 +104143,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100994,7 +104154,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101013,10 +104173,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101025,12 +104185,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "telefonrueckruf", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "telefonrueckruf" ] @@ -101039,6 +104203,7 @@ }, { "name": "templatemessage", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -101047,7 +104212,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -101066,10 +104231,10 @@ { "Field": "message", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101089,12 +104254,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "user", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "user" ] @@ -101103,6 +104272,7 @@ }, { "name": "textvorlagen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -101111,18 +104281,18 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101130,32 +104300,32 @@ { "Field": "text", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "stichwoerter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "projekt", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101164,6 +104334,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -101172,6 +104344,7 @@ }, { "name": "ticket", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -101180,7 +104353,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -101188,10 +104361,10 @@ { "Field": "schluessel", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101209,33 +104382,33 @@ }, { "Field": "projekt", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "quelle", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101243,10 +104416,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101257,18 +104430,18 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kunde", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101276,21 +104449,21 @@ { "Field": "warteschlange", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "mailadresse", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101301,18 +104474,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "betreff", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101323,7 +104496,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101334,18 +104507,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "inbearbeitung_user", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101356,7 +104529,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101364,10 +104537,10 @@ { "Field": "notiz", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101397,10 +104570,10 @@ { "Field": "kommentar", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101430,10 +104603,10 @@ { "Field": "tags", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101444,7 +104617,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101453,30 +104626,40 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "schluessel", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "schluessel" ] }, { "Key_name": "service", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "service" ] }, { "Key_name": "adresse", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "adresse" ] }, { "Key_name": "warteschlange", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "warteschlange" ] @@ -101485,6 +104668,7 @@ }, { "name": "ticket_category", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -101493,18 +104677,18 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101546,6 +104730,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -101554,6 +104740,7 @@ }, { "name": "ticket_header", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -101562,7 +104749,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -101573,18 +104760,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "type", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101592,10 +104779,10 @@ { "Field": "value", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101604,6 +104791,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -101612,6 +104801,7 @@ }, { "name": "ticket_nachricht", + "collation": "utf8mb4_unicode_ci", "type": "BASE TABLE", "columns": [ { @@ -101620,7 +104810,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -101628,10 +104818,10 @@ { "Field": "ticket", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101639,10 +104829,10 @@ { "Field": "verfasser", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101650,10 +104840,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101661,10 +104851,10 @@ { "Field": "mail", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101675,7 +104865,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101686,7 +104876,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101694,10 +104884,10 @@ { "Field": "text", "Type": "longtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101705,10 +104895,10 @@ { "Field": "textausgang", "Type": "longtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101716,10 +104906,10 @@ { "Field": "betreff", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101727,10 +104917,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101738,10 +104928,10 @@ { "Field": "medium", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101749,10 +104939,10 @@ { "Field": "versendet", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101760,10 +104950,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101771,10 +104961,10 @@ { "Field": "mail_cc", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101782,10 +104972,10 @@ { "Field": "verfasser_replyto", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101793,10 +104983,10 @@ { "Field": "mail_replyto", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101805,12 +104995,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "ticket", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "ticket" ] @@ -101818,6 +105012,7 @@ { "Key_name": "FullText", "Index_type": "FULLTEXT", + "Non_unique": "UNIQUE", "columns": [ "betreff", "verfasser", @@ -101828,6 +105023,7 @@ }, { "name": "ticket_regeln", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -101836,51 +105032,51 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "empfaenger_email", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "sender_email", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "betreff", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101932,10 +105128,10 @@ { "Field": "warteschlange", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101955,6 +105151,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -101963,6 +105161,7 @@ }, { "name": "ticket_vorlage", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -101971,7 +105170,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -101982,18 +105181,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "vorlagenname", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102001,10 +105200,10 @@ { "Field": "vorlage", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102015,7 +105214,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102026,7 +105225,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102057,12 +105256,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "ticket_category_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "ticket_category_id" ] @@ -102071,6 +105274,7 @@ }, { "name": "transfer_account_label", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -102079,7 +105283,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -102098,10 +105302,10 @@ { "Field": "filter_type", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102110,6 +105314,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -102118,6 +105324,7 @@ }, { "name": "transfer_sellingreport_job", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -102126,7 +105333,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -102148,7 +105355,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102159,7 +105366,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102167,7 +105374,7 @@ { "Field": "status", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'created'", @@ -102190,6 +105397,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -102198,6 +105407,7 @@ }, { "name": "uebersetzung", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -102206,7 +105416,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -102214,10 +105424,10 @@ { "Field": "label", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102225,10 +105435,10 @@ { "Field": "beschriftung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102236,10 +105446,10 @@ { "Field": "sprache", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102247,10 +105457,10 @@ { "Field": "original", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102259,18 +105469,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "sprache", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "sprache" ] }, { "Key_name": "label", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "label" ] @@ -102279,6 +105495,7 @@ }, { "name": "uebertragungen_account", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -102287,7 +105504,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -102295,10 +105512,10 @@ { "Field": "bezeichnung", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102306,10 +105523,10 @@ { "Field": "typ", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102338,121 +105555,121 @@ }, { "Field": "server", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "port", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "username", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "passwort", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "parameter1", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "parameter2", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "parameter3", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "parameter4", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "authmethod", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "publickeyfile", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "privatekeyfile", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102460,10 +105677,10 @@ { "Field": "publickey", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102471,10 +105688,10 @@ { "Field": "privatekey", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102515,10 +105732,10 @@ { "Field": "bearbeiter", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102547,11 +105764,11 @@ }, { "Field": "letzter_status", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102581,7 +105798,7 @@ { "Field": "xml_pdf", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'xml'", @@ -102592,10 +105809,10 @@ { "Field": "belegtyp", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102603,10 +105820,10 @@ { "Field": "documenttype_incoming", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102614,10 +105831,10 @@ { "Field": "belegstatus", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102669,10 +105886,10 @@ { "Field": "emailbody", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102691,10 +105908,10 @@ { "Field": "xml_zusatz", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102779,10 +105996,10 @@ { "Field": "csv_codierung", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102790,10 +106007,10 @@ { "Field": "csv_trennzeichen", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102801,10 +106018,10 @@ { "Field": "csv_tracking", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102812,10 +106029,10 @@ { "Field": "csv_lagerzahl", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102823,10 +106040,10 @@ { "Field": "csv_lieferschein", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102834,10 +106051,10 @@ { "Field": "csv_auftrag", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102845,10 +106062,10 @@ { "Field": "csv_bestellung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102881,7 +106098,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102892,7 +106109,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102903,7 +106120,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102914,7 +106131,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102925,7 +106142,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103075,11 +106292,11 @@ }, { "Field": "dateianhangtyp", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "'datei'", + "Default": "''datei''", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103087,10 +106304,10 @@ { "Field": "csvheader_lagerzahlen", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103098,10 +106315,10 @@ { "Field": "csvheader_tracking", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103164,10 +106381,10 @@ { "Field": "einstellungen_json", "Type": "mediumtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103208,10 +106425,10 @@ { "Field": "sales_report_type", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103274,7 +106491,7 @@ { "Field": "csvseparator", "Type": "varchar(4)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "';'", @@ -103285,10 +106502,10 @@ { "Field": "coding", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103297,6 +106514,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -103305,6 +106524,7 @@ }, { "name": "uebertragungen_account_oauth", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -103313,7 +106533,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -103324,7 +106544,7 @@ "Collation": null, "Null": "NO", "Key": "UNI", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103332,10 +106552,10 @@ { "Field": "client_id", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103343,10 +106563,10 @@ { "Field": "client_secret", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103354,10 +106574,10 @@ { "Field": "url", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103365,10 +106585,10 @@ { "Field": "access_token", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103379,7 +106599,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103388,12 +106608,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "uebertragungen_account_id", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "uebertragungen_account_id" ] @@ -103402,6 +106626,7 @@ }, { "name": "uebertragungen_artikel", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -103410,7 +106635,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -103439,22 +106664,22 @@ }, { "Field": "status", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103474,12 +106699,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "uebertragungen_account", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "uebertragungen_account", "artikel" @@ -103489,6 +106718,7 @@ }, { "name": "uebertragungen_dateien", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -103497,7 +106727,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -103516,21 +106746,21 @@ { "Field": "datei", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "datei_wawi", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103538,10 +106768,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103605,12 +106835,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "uebertragung_account", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "uebertragung_account", "datei" @@ -103620,6 +106854,7 @@ }, { "name": "uebertragungen_event", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -103628,7 +106863,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -103647,10 +106882,10 @@ { "Field": "eventname", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103658,10 +106893,10 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103669,21 +106904,21 @@ { "Field": "action", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "parameter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103712,11 +106947,11 @@ }, { "Field": "kommentar", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103725,12 +106960,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "uebertragung_account", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "uebertragung_account" ] @@ -103739,6 +106978,7 @@ }, { "name": "uebertragungen_event_einstellungen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -103747,7 +106987,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -103766,10 +107006,10 @@ { "Field": "eventname", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103800,12 +107040,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "uebertragung_account", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "uebertragung_account", "eventname" @@ -103815,6 +107059,7 @@ }, { "name": "uebertragungen_fileconvert_log", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -103823,7 +107068,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -103841,55 +107086,55 @@ }, { "Field": "status", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "datei", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "typ", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "parameter1", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "parameter2", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103897,10 +107142,10 @@ { "Field": "wert", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103920,6 +107165,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -103928,6 +107175,7 @@ }, { "name": "uebertragungen_lagercache", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -103936,7 +107184,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -103947,7 +107195,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103958,7 +107206,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103980,7 +107228,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103989,6 +107237,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -103997,6 +107247,7 @@ }, { "name": "uebertragungen_log", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -104005,7 +107256,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -104023,55 +107274,55 @@ }, { "Field": "status", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "datei", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "typ", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "parameter1", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "parameter2", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104079,10 +107330,10 @@ { "Field": "wert", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104102,12 +107353,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "uebertragungen_account", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "uebertragungen_account" ] @@ -104116,6 +107371,7 @@ }, { "name": "uebertragungen_monitor", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -104124,7 +107380,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -104164,55 +107420,55 @@ }, { "Field": "status", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "nachricht", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "element1", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "element2", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "element3", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104230,11 +107486,11 @@ }, { "Field": "doctype", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104265,12 +107521,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "uebertragungen_account", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "uebertragungen_account", "datei", @@ -104282,6 +107542,7 @@ }, { "name": "uebertragungen_trackingnummern", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -104290,7 +107551,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -104301,7 +107562,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104312,7 +107573,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104321,6 +107582,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -104329,6 +107592,7 @@ }, { "name": "umsatzstatistik", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -104337,7 +107601,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -104367,10 +107631,10 @@ { "Field": "objekt", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104378,10 +107642,10 @@ { "Field": "belegnr", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104389,10 +107653,10 @@ { "Field": "kundennummer", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104400,10 +107664,10 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104469,7 +107733,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104477,7 +107741,7 @@ { "Field": "waehrung", "Type": "varchar(3)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'EUR'", @@ -104511,6 +107775,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -104519,6 +107785,7 @@ }, { "name": "unterprojekt", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -104527,7 +107794,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -104538,40 +107805,40 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "verantwortlicher", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "aktiv", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104582,7 +107849,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104602,6 +107869,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -104610,6 +107879,7 @@ }, { "name": "ups", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -104618,7 +107888,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -104636,22 +107906,22 @@ }, { "Field": "account_nummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bemerkung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104682,6 +107952,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -104690,6 +107962,7 @@ }, { "name": "user", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -104698,7 +107971,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -104706,21 +107979,21 @@ { "Field": "username", "Type": "varchar(100)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "password", - "Type": "varchar(255)", + "Type": "text", "Collation": "utf8mb3_bin", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104731,18 +108004,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "description", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104750,10 +108023,10 @@ { "Field": "settings", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104764,7 +108037,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104783,10 +108056,10 @@ { "Field": "type", "Type": "varchar(100)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104797,7 +108070,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104808,7 +108081,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104819,7 +108092,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104830,7 +108103,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104849,10 +108122,10 @@ { "Field": "startseite", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104863,18 +108136,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "hwkey", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104885,40 +108158,40 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "motppin", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "motpsecret", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "passwordmd5", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104929,7 +108202,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104970,32 +108243,32 @@ { "Field": "rfidtag", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "vorlage", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kalender_passwort", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105017,7 +108290,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105028,7 +108301,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105057,22 +108330,22 @@ }, { "Field": "internebezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "hwdatablock", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105091,10 +108364,10 @@ { "Field": "passwordsha512", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105102,10 +108375,10 @@ { "Field": "salt", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105123,22 +108396,22 @@ }, { "Field": "sprachebevorzugen", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "vergessencode", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105149,7 +108422,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105168,10 +108441,10 @@ { "Field": "defaultcolor", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105179,10 +108452,10 @@ { "Field": "passwordhash", "Type": "char(60)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105201,10 +108474,10 @@ { "Field": "docscan_passwort", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105222,22 +108495,22 @@ }, { "Field": "stechuhrdevice", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "role", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105246,12 +108519,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "adresse", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "adresse" ] @@ -105260,6 +108537,7 @@ }, { "name": "user_totp", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -105268,7 +108546,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -105279,7 +108557,7 @@ "Collation": null, "Null": "NO", "Key": "UNI", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105298,10 +108576,10 @@ { "Field": "secret", "Type": "varchar(100)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105332,12 +108610,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "user_id", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "user_id" ] @@ -105346,6 +108628,7 @@ }, { "name": "userkonfiguration", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -105354,7 +108637,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -105373,10 +108656,10 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105384,10 +108667,10 @@ { "Field": "value", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105396,18 +108679,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "user", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "user" ] }, { "Key_name": "name", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "name" ] @@ -105416,6 +108705,7 @@ }, { "name": "useronline", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -105443,10 +108733,10 @@ { "Field": "sessionid", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105454,10 +108744,10 @@ { "Field": "ip", "Type": "varchar(200)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105488,6 +108778,8 @@ "keys": [ { "Key_name": "sessionid", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "sessionid" ] @@ -105496,6 +108788,7 @@ }, { "name": "userrights", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -105504,7 +108797,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -105515,7 +108808,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105523,10 +108816,10 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105534,10 +108827,10 @@ { "Field": "action", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105548,7 +108841,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105557,12 +108850,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "user", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "user" ] @@ -105571,6 +108868,7 @@ }, { "name": "uservorlage", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -105579,18 +108877,18 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105598,10 +108896,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105610,6 +108908,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -105618,6 +108918,7 @@ }, { "name": "uservorlagerights", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -105626,7 +108927,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -105637,7 +108938,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105645,10 +108946,10 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105656,10 +108957,10 @@ { "Field": "action", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105670,7 +108971,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105679,6 +108980,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -105687,6 +108990,7 @@ }, { "name": "ustprf", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -105695,95 +108999,95 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "adresse", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ustid", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "land", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ort", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "plz", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "rechtsform", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "strasse", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105791,10 +109095,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105805,7 +109109,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105816,18 +109120,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105838,7 +109142,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105860,7 +109164,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105869,6 +109173,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -105877,6 +109183,7 @@ }, { "name": "ustprf_protokoll", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -105885,7 +109192,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -105896,7 +109203,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105907,29 +109214,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bemerkung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105940,7 +109247,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105948,10 +109255,10 @@ { "Field": "daten", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105960,6 +109267,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -105968,6 +109277,7 @@ }, { "name": "verbindlichkeit", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -105976,18 +109286,18 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "belegnr", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105995,10 +109305,10 @@ { "Field": "status_beleg", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106016,11 +109326,11 @@ }, { "Field": "rechnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106031,7 +109341,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106042,18 +109352,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "umsatzsteuer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106061,10 +109371,10 @@ { "Field": "ustid", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106075,7 +109385,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106086,7 +109396,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106097,7 +109407,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106108,7 +109418,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106116,10 +109426,10 @@ { "Field": "steuersatzname3", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106127,10 +109437,10 @@ { "Field": "steuersatzname4", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106141,7 +109451,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106152,7 +109462,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106174,18 +109484,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "freigabemitarbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106196,7 +109506,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106207,7 +109517,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106218,7 +109528,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106229,7 +109539,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106240,7 +109550,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106248,10 +109558,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106262,7 +109572,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106273,7 +109583,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106284,7 +109594,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106324,11 +109634,11 @@ }, { "Field": "bestellung1bemerkung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106347,10 +109657,10 @@ { "Field": "bestellung1kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106358,10 +109668,10 @@ { "Field": "bestellung1auftrag", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106390,11 +109700,11 @@ }, { "Field": "bestellung2bemerkung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106402,10 +109712,10 @@ { "Field": "bestellung2kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106413,10 +109723,10 @@ { "Field": "bestellung2auftrag", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106456,11 +109766,11 @@ }, { "Field": "bestellung3bemerkung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106468,10 +109778,10 @@ { "Field": "bestellung3kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106479,10 +109789,10 @@ { "Field": "bestellung3auftrag", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106522,11 +109832,11 @@ }, { "Field": "bestellung4bemerkung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106534,10 +109844,10 @@ { "Field": "bestellung4kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106545,10 +109855,10 @@ { "Field": "bestellung4auftrag", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106588,11 +109898,11 @@ }, { "Field": "bestellung5bemerkung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106600,10 +109910,10 @@ { "Field": "bestellung5kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106611,10 +109921,10 @@ { "Field": "bestellung5auftrag", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106654,11 +109964,11 @@ }, { "Field": "bestellung6bemerkung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106666,10 +109976,10 @@ { "Field": "bestellung6kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106677,10 +109987,10 @@ { "Field": "bestellung6auftrag", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106720,11 +110030,11 @@ }, { "Field": "bestellung7bemerkung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106732,10 +110042,10 @@ { "Field": "bestellung7kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106743,10 +110053,10 @@ { "Field": "bestellung7auftrag", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106786,11 +110096,11 @@ }, { "Field": "bestellung8bemerkung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106798,10 +110108,10 @@ { "Field": "bestellung8kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106809,10 +110119,10 @@ { "Field": "bestellung8auftrag", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106852,11 +110162,11 @@ }, { "Field": "bestellung9bemerkung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106864,10 +110174,10 @@ { "Field": "bestellung9kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106875,10 +110185,10 @@ { "Field": "bestellung9auftrag", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106918,11 +110228,11 @@ }, { "Field": "bestellung10bemerkung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106930,10 +110240,10 @@ { "Field": "bestellung10kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106941,10 +110251,10 @@ { "Field": "bestellung10auftrag", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106984,11 +110294,11 @@ }, { "Field": "bestellung11bemerkung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106996,10 +110306,10 @@ { "Field": "bestellung11kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107007,10 +110317,10 @@ { "Field": "bestellung11auftrag", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107050,11 +110360,11 @@ }, { "Field": "bestellung12bemerkung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107073,10 +110383,10 @@ { "Field": "bestellung12kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107084,10 +110394,10 @@ { "Field": "bestellung12auftrag", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107116,11 +110426,11 @@ }, { "Field": "bestellung13bemerkung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107128,10 +110438,10 @@ { "Field": "bestellung13kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107139,10 +110449,10 @@ { "Field": "bestellung13auftrag", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107182,11 +110492,11 @@ }, { "Field": "bestellung14bemerkung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107194,10 +110504,10 @@ { "Field": "bestellung14kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107205,10 +110515,10 @@ { "Field": "bestellung14auftrag", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107248,11 +110558,11 @@ }, { "Field": "bestellung15bemerkung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107260,10 +110570,10 @@ { "Field": "bestellung15kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107271,10 +110581,10 @@ { "Field": "bestellung15auftrag", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107293,7 +110603,7 @@ { "Field": "waehrung", "Type": "varchar(3)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'EUR'", @@ -107303,11 +110613,11 @@ }, { "Field": "zahlungsweise", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107318,7 +110628,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107326,10 +110636,10 @@ { "Field": "buha_konto1", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107337,10 +110647,10 @@ { "Field": "buha_belegfeld1", "Type": "varchar(200)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107359,10 +110669,10 @@ { "Field": "buha_konto2", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107370,10 +110680,10 @@ { "Field": "buha_belegfeld2", "Type": "varchar(200)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107392,10 +110702,10 @@ { "Field": "buha_konto3", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107403,10 +110713,10 @@ { "Field": "buha_belegfeld3", "Type": "varchar(200)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107425,10 +110735,10 @@ { "Field": "buha_konto4", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107436,10 +110746,10 @@ { "Field": "buha_belegfeld4", "Type": "varchar(200)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107458,10 +110768,10 @@ { "Field": "buha_konto5", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107469,10 +110779,10 @@ { "Field": "buha_belegfeld5", "Type": "varchar(200)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107494,7 +110804,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107512,22 +110822,22 @@ }, { "Field": "kostenstelle", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "beschreibung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107535,10 +110845,10 @@ { "Field": "sachkonto", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107546,21 +110856,21 @@ { "Field": "art", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "verwendungszweck", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107590,10 +110900,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107604,7 +110914,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107615,7 +110925,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107626,7 +110936,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107637,7 +110947,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107659,7 +110969,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107677,11 +110987,11 @@ }, { "Field": "klaergrund", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107711,10 +111021,10 @@ { "Field": "sprache", "Type": "varchar(25)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107723,18 +111033,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "adresse", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "adresse" ] }, { "Key_name": "bestellung", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "bestellung" ] @@ -107743,6 +111059,7 @@ }, { "name": "verbindlichkeit_bestellungen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -107751,7 +111068,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -107846,11 +111163,11 @@ }, { "Field": "bestellung_bemerkung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107859,12 +111176,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "verbindlichkeit", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "verbindlichkeit" ] @@ -107873,6 +111194,7 @@ }, { "name": "verbindlichkeit_kontierung", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -107881,7 +111203,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -107910,33 +111232,33 @@ }, { "Field": "belegfeld", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "buchungstext", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "gegenkonto", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107944,10 +111266,10 @@ { "Field": "waehrung", "Type": "varchar(3)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107958,7 +111280,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107966,10 +111288,10 @@ { "Field": "kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107978,12 +111300,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "verbindlichkeit", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "verbindlichkeit" ] @@ -107992,6 +111318,7 @@ }, { "name": "verbindlichkeit_ocr", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -108000,7 +111327,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -108019,10 +111346,10 @@ { "Field": "property", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108030,10 +111357,10 @@ { "Field": "search_term", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108041,7 +111368,7 @@ { "Field": "search_direction", "Type": "varchar(5)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'right'", @@ -108053,6 +111380,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -108061,6 +111390,7 @@ }, { "name": "verbindlichkeit_position", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -108069,7 +111399,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -108131,88 +111461,88 @@ }, { "Field": "nummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bestellnummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "waehrung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "einheit", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "vpe", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "umsatzsteuer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "status", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108220,10 +111550,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108234,7 +111564,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108245,7 +111575,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108253,10 +111583,10 @@ { "Field": "steuertext", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108264,10 +111594,10 @@ { "Field": "kostenstelle", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108298,12 +111628,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "verbindlichkeit", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "verbindlichkeit" ] @@ -108312,6 +111646,7 @@ }, { "name": "verbindlichkeit_protokoll", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -108320,7 +111655,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -108342,29 +111677,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "grund", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108373,12 +111708,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "verbindlichkeit", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "verbindlichkeit" ] @@ -108387,6 +111726,7 @@ }, { "name": "verbindlichkeit_regelmaessig", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -108395,7 +111735,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -108406,7 +111746,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108424,132 +111764,132 @@ }, { "Field": "typ", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "'0'", + "Default": "''0''", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "filter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "soll", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "haben", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "gebuehr", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "waehrung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "art", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "wert", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "rechnungnr", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "verwendungszweck", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kostenstelle", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "zahlungsweise", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108557,10 +111897,10 @@ { "Field": "gegenkonto", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108571,7 +111911,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108582,7 +111922,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108591,6 +111931,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -108599,6 +111941,7 @@ }, { "name": "verbindlichkeit_regelmaessig_beleg", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -108607,7 +111950,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -108640,7 +111983,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108649,12 +111992,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "verbindlichkeit_regelmaessig", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "verbindlichkeit_regelmaessig" ] @@ -108663,6 +112010,7 @@ }, { "name": "verkaufspreise", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -108671,7 +112019,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -108682,40 +112030,40 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "objekt", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "projekt", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "adresse", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108733,11 +112081,11 @@ }, { "Field": "waehrung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108756,7 +112104,7 @@ { "Field": "vpe", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'1'", @@ -108781,7 +112129,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108792,7 +112140,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108800,21 +112148,21 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108836,7 +112184,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108847,7 +112195,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108855,21 +112203,21 @@ { "Field": "kundenartikelnummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "art", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "'kunde'", + "Default": "''kunde''", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108880,7 +112228,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108946,7 +112294,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108955,30 +112303,40 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "artikel", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "artikel" ] }, { "Key_name": "adresse", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "adresse" ] }, { "Key_name": "projekt", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "projekt" ] }, { "Key_name": "kundenartikelnummer", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "kundenartikelnummer" ] @@ -108987,6 +112345,7 @@ }, { "name": "verkaufszahlen_chart", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -108995,7 +112354,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -109035,22 +112394,22 @@ }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109081,6 +112440,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -109089,6 +112450,7 @@ }, { "name": "verkaufszahlen_chart_projekt", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -109097,7 +112459,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -109139,12 +112501,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "chart", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "chart", "projekt" @@ -109154,6 +112520,7 @@ }, { "name": "verrechnungsart", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -109162,7 +112529,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -109170,10 +112537,10 @@ { "Field": "nummer", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109181,10 +112548,10 @@ { "Field": "beschreibung", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109192,10 +112559,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109204,6 +112571,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -109212,6 +112581,7 @@ }, { "name": "versand", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -109220,7 +112590,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -109231,7 +112601,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109242,7 +112612,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109253,18 +112623,18 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versandart", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109275,18 +112645,18 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "gewicht", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109297,29 +112667,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versender", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109330,7 +112700,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109341,29 +112711,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versandunternehmen", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "tracking", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109374,7 +112744,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109385,7 +112755,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109396,7 +112766,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109407,7 +112777,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109418,7 +112788,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109558,10 +112928,10 @@ { "Field": "tracking_link", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109601,11 +112971,11 @@ }, { "Field": "klaergrund", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109613,10 +112983,10 @@ { "Field": "bundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109625,24 +112995,32 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "lieferschein", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "lieferschein" ] }, { "Key_name": "projekt", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "projekt" ] }, { "Key_name": "cronjob", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "cronjob" ] @@ -109651,6 +113029,7 @@ }, { "name": "versandarten", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -109659,29 +113038,29 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "type", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109722,10 +113101,10 @@ { "Field": "modul", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109766,10 +113145,10 @@ { "Field": "einstellungen_json", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109811,6 +113190,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -109819,6 +113200,7 @@ }, { "name": "versandpakete", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -109827,7 +113209,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -109856,22 +113238,22 @@ }, { "Field": "tracking", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "versender", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109879,10 +113261,10 @@ { "Field": "gewicht", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109890,10 +113272,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109902,6 +113284,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -109910,6 +113294,7 @@ }, { "name": "versandzentrum_log", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -109918,7 +113303,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -109929,29 +113314,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "aktion", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "wert", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109962,7 +113347,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109982,6 +113367,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -109990,6 +113377,7 @@ }, { "name": "vertreterumsatz", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -109998,7 +113386,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -110039,10 +113427,10 @@ { "Field": "objekt", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110050,10 +113438,10 @@ { "Field": "belegnr", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110061,10 +113449,10 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110130,7 +113518,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110138,7 +113526,7 @@ { "Field": "waehrung", "Type": "varchar(3)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'EUR'", @@ -110194,6 +113582,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -110202,6 +113592,7 @@ }, { "name": "vorlage", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -110210,18 +113601,18 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110243,7 +113634,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110251,10 +113642,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110274,6 +113665,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -110282,6 +113675,7 @@ }, { "name": "waage_artikel", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -110290,7 +113684,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -110319,11 +113713,11 @@ }, { "Field": "beschriftung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110378,7 +113772,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110387,6 +113781,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -110395,6 +113791,7 @@ }, { "name": "waehrung_umrechnung", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -110403,29 +113800,29 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "waehrung_von", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "waehrung_nach", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110447,7 +113844,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110465,22 +113862,22 @@ }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kommentar", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110489,6 +113886,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -110497,6 +113896,7 @@ }, { "name": "warteschlangen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -110505,29 +113905,29 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "warteschlange", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "label", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110538,7 +113938,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110549,7 +113949,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110558,12 +113958,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "adresse", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "adresse" ] @@ -110572,6 +113976,7 @@ }, { "name": "wawision_uebersetzung", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -110580,7 +113985,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -110599,10 +114004,10 @@ { "Field": "sprache", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110610,10 +114015,10 @@ { "Field": "typ", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110621,10 +114026,10 @@ { "Field": "original", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110632,32 +114037,32 @@ { "Field": "uebersetzung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "typ1", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "typ2", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110666,12 +114071,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "user", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "user", "sprache" @@ -110681,6 +114090,7 @@ }, { "name": "webmail", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -110689,7 +114099,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -110700,40 +114110,40 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "benutzername", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "passwort", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "server", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110742,6 +114152,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -110750,6 +114162,7 @@ }, { "name": "webmail_mails", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -110758,7 +114171,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -110769,62 +114182,62 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "subject", - "Type": "varchar(255)", - "Collation": "utf8mb3_unicode_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "sender", - "Type": "varchar(255)", - "Collation": "utf8mb3_unicode_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "cc", - "Type": "varchar(255)", - "Collation": "utf8mb3_unicode_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bcc", - "Type": "varchar(255)", - "Collation": "utf8mb3_unicode_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "replyto", - "Type": "varchar(255)", - "Collation": "utf8mb3_unicode_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110832,10 +114245,10 @@ { "Field": "plaintext", "Type": "text", - "Collation": "utf8mb3_unicode_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110843,10 +114256,10 @@ { "Field": "htmltext", "Type": "text", - "Collation": "utf8mb3_unicode_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110857,7 +114270,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110868,7 +114281,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110879,7 +114292,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110887,10 +114300,10 @@ { "Field": "checksum", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110899,6 +114312,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -110907,6 +114322,7 @@ }, { "name": "webmail_zuordnungen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -110915,7 +114331,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -110926,18 +114342,18 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "zuordnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110948,7 +114364,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110957,6 +114373,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -110965,6 +114383,7 @@ }, { "name": "wiedervorlage", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -110973,7 +114392,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -111013,11 +114432,11 @@ }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111025,10 +114444,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111036,10 +114455,10 @@ { "Field": "ergebnis", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111050,7 +114469,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111061,7 +114480,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111072,7 +114491,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111080,10 +114499,10 @@ { "Field": "erinnerung_empfaenger", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111091,32 +114510,32 @@ { "Field": "link", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "module", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "action", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111124,10 +114543,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111160,7 +114579,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111171,7 +114590,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111182,7 +114601,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111193,7 +114612,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111259,7 +114678,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111270,7 +114689,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111281,7 +114700,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111311,7 +114730,7 @@ { "Field": "color", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'#a2d624'", @@ -111323,18 +114742,24 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "adresse", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "adresse" ] }, { "Key_name": "adresse_mitarbeiter", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "adresse_mitarbeiter" ] @@ -111343,6 +114768,7 @@ }, { "name": "wiedervorlage_aufgabe", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -111351,7 +114777,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -111362,7 +114788,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111373,7 +114799,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111393,12 +114819,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "resubmission_task", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "resubmission_id", "task_id" @@ -111408,6 +114838,7 @@ }, { "name": "wiedervorlage_aufgabe_vorlage", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -111416,7 +114847,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -111478,11 +114909,11 @@ }, { "Field": "title", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111504,7 +114935,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111512,10 +114943,10 @@ { "Field": "state", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111523,10 +114954,10 @@ { "Field": "priority", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111534,10 +114965,10 @@ { "Field": "description", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111546,6 +114977,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -111554,6 +114987,7 @@ }, { "name": "wiedervorlage_board_member", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -111562,7 +114996,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -111573,7 +115007,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111584,7 +115018,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111593,6 +115027,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -111601,6 +115037,7 @@ }, { "name": "wiedervorlage_freifeld_inhalt", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -111609,7 +115046,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -111620,7 +115057,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111629,12 +115066,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "resubmission_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "resubmission_id" ] @@ -111643,6 +115084,7 @@ }, { "name": "wiedervorlage_freifeld_konfiguration", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -111651,7 +115093,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -111659,10 +115101,10 @@ { "Field": "title", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111728,7 +115170,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111737,6 +115179,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -111745,6 +115189,7 @@ }, { "name": "wiedervorlage_protokoll", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -111753,7 +115198,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -111764,7 +115209,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111775,7 +115220,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111797,7 +115242,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111808,18 +115253,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111827,10 +115272,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111838,10 +115283,10 @@ { "Field": "ergebnis", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111861,12 +115306,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "wiedervorlageid", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "wiedervorlageid" ] @@ -111875,6 +115324,7 @@ }, { "name": "wiedervorlage_stages", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -111883,7 +115333,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -111891,10 +115341,10 @@ { "Field": "kurzbezeichnung", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111902,10 +115352,10 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111913,7 +115363,7 @@ { "Field": "hexcolor", "Type": "varchar(7)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'#a2d624'", @@ -111927,7 +115377,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111938,7 +115388,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111949,7 +115399,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111971,7 +115421,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111980,6 +115430,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -111988,6 +115440,7 @@ }, { "name": "wiedervorlage_timeline", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -111996,7 +115449,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -112007,7 +115460,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112018,7 +115471,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112037,10 +115490,10 @@ { "Field": "content", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112048,10 +115501,10 @@ { "Field": "css", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112059,10 +115512,10 @@ { "Field": "color", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112073,7 +115526,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112103,10 +115556,10 @@ { "Field": "leadtype", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112115,6 +115568,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -112123,6 +115578,7 @@ }, { "name": "wiedervorlage_view", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -112131,18 +115587,18 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "name", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112150,10 +115606,10 @@ { "Field": "shortname", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112195,6 +115651,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -112203,6 +115661,7 @@ }, { "name": "wiedervorlage_zu_aufgabe_vorlage", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -112211,7 +115670,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -112242,6 +115701,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -112250,6 +115711,7 @@ }, { "name": "wiki", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -112258,7 +115720,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -112266,10 +115728,10 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112277,10 +115739,10 @@ { "Field": "content", "Type": "longtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112288,10 +115750,10 @@ { "Field": "lastcontent", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112321,10 +115783,10 @@ { "Field": "language", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112333,12 +115795,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "name", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "name" ] @@ -112347,6 +115813,7 @@ }, { "name": "wiki_changelog", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -112355,7 +115822,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -112373,22 +115840,22 @@ }, { "Field": "comment", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "created_by", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112407,10 +115874,10 @@ { "Field": "content", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112430,12 +115897,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "wiki_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "wiki_id" ] @@ -112444,6 +115915,7 @@ }, { "name": "wiki_faq", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -112452,7 +115924,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -112471,10 +115943,10 @@ { "Field": "question", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112482,21 +115954,21 @@ { "Field": "answer", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "created_by", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112527,12 +115999,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "wiki_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "wiki_id" ] @@ -112541,6 +116017,7 @@ }, { "name": "wiki_subscription", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -112549,7 +116026,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -112591,12 +116068,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "wiki_id", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "wiki_id" ] @@ -112605,6 +116086,7 @@ }, { "name": "wiki_workspace", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -112613,7 +116095,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -112621,21 +116103,21 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "UNI", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "foldername", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112643,10 +116125,10 @@ { "Field": "description", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112654,10 +116136,10 @@ { "Field": "savein", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112677,12 +116159,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "name", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "name" ] @@ -112691,6 +116177,7 @@ }, { "name": "wizard", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -112699,7 +116186,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -112718,10 +116205,10 @@ { "Field": "key", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112729,10 +116216,10 @@ { "Field": "title", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112740,10 +116227,10 @@ { "Field": "skip_link_text", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112751,10 +116238,10 @@ { "Field": "params", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112762,10 +116249,10 @@ { "Field": "options", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112796,12 +116283,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "user_id", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "user_id", "key" @@ -112811,6 +116302,7 @@ }, { "name": "wizard_step", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -112819,7 +116311,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -112838,21 +116330,21 @@ { "Field": "key", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "link", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112860,21 +116352,21 @@ { "Field": "title", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "caption", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112882,10 +116374,10 @@ { "Field": "description", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112893,10 +116385,10 @@ { "Field": "options", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112938,12 +116430,16 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "wizard_id", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "wizard_id", "key" @@ -112953,6 +116449,7 @@ }, { "name": "zahlungsavis", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -112961,7 +116458,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -112972,7 +116469,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113005,7 +116502,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113013,10 +116510,10 @@ { "Field": "versendet_per", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113024,10 +116521,10 @@ { "Field": "ersteller", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113035,10 +116532,10 @@ { "Field": "bic", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113046,10 +116543,10 @@ { "Field": "iban", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113067,11 +116564,11 @@ }, { "Field": "bemerkung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113102,6 +116599,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -113110,6 +116609,7 @@ }, { "name": "zahlungsavis_gutschrift", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -113118,7 +116618,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -113149,6 +116649,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -113157,6 +116659,7 @@ }, { "name": "zahlungsavis_mailausgang", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -113165,7 +116668,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -113176,7 +116679,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113218,6 +116721,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -113226,6 +116731,7 @@ }, { "name": "zahlungsavis_rechnung", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -113234,7 +116740,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -113265,6 +116771,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -113273,6 +116781,7 @@ }, { "name": "zahlungsweisen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -113281,29 +116790,29 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "type", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bezeichnung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113311,10 +116820,10 @@ { "Field": "freitext", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113388,7 +116897,7 @@ { "Field": "verhalten", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": "'vorkasse'", @@ -113399,10 +116908,10 @@ { "Field": "modul", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113410,10 +116919,10 @@ { "Field": "einstellungen_json", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113422,6 +116931,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -113430,6 +116941,7 @@ }, { "name": "zeiterfassung", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -113438,7 +116950,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -113446,10 +116958,10 @@ { "Field": "art", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113460,7 +116972,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113471,7 +116983,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113489,11 +117001,11 @@ }, { "Field": "aufgabe", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113501,10 +117013,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_unicode_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113515,29 +117027,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "buchungsart", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kostenstelle", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113559,7 +117071,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113570,7 +117082,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113578,10 +117090,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113589,10 +117101,10 @@ { "Field": "gps", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113614,7 +117126,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113625,7 +117137,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113636,7 +117148,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113647,7 +117159,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113655,10 +117167,10 @@ { "Field": "ort", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113666,10 +117178,10 @@ { "Field": "abrechnung_dokument", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113680,18 +117192,18 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "verrechnungsart", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113702,7 +117214,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113710,10 +117222,10 @@ { "Field": "internerkommentar", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113810,30 +117322,40 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] }, { "Key_name": "adresse_abrechnung", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "adresse_abrechnung" ] }, { "Key_name": "abgerechnet", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "abgerechnet" ] }, { "Key_name": "abrechnen", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "abrechnen" ] }, { "Key_name": "adresse", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "adresse" ] @@ -113842,6 +117364,7 @@ }, { "name": "zeiterfassungvorlage", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -113850,18 +117373,18 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "vorlage", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113880,21 +117403,21 @@ { "Field": "vorlagedetail", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "art", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113947,6 +117470,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -113955,6 +117480,7 @@ }, { "name": "zertifikatgenerator", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -113963,7 +117489,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -113982,10 +117508,10 @@ { "Field": "beschreibung_deutsch", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113993,10 +117519,10 @@ { "Field": "beschreibung_englisch", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114004,10 +117530,10 @@ { "Field": "bestell_anmerkung_deutsch", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114015,10 +117541,10 @@ { "Field": "bestell_anmerkung_englisch", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114026,10 +117552,10 @@ { "Field": "interne_anmerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114092,10 +117618,10 @@ { "Field": "typ_text", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114114,10 +117640,10 @@ { "Field": "adresse_absender", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114147,10 +117673,10 @@ { "Field": "preis_eur", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114158,10 +117684,10 @@ { "Field": "preis_usd", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114172,7 +117698,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114180,10 +117706,10 @@ { "Field": "bearbeiter", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114191,10 +117717,10 @@ { "Field": "preis_eur_retail", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114214,6 +117740,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -114222,6 +117750,7 @@ }, { "name": "zolltarifnummer", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -114230,18 +117759,18 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "nummer", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114249,10 +117778,10 @@ { "Field": "beschreibung", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114260,10 +117789,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114272,6 +117801,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -114280,6 +117811,7 @@ }, { "name": "zwischenlager", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -114288,18 +117820,18 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "bearbeiter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114310,7 +117842,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114321,7 +117853,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114332,62 +117864,62 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "vpe", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "grund", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lager_von", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "lager_nach", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "richtung", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114398,29 +117930,29 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "objekt", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "parameter", - "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Type": "text", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114431,7 +117963,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114442,7 +117974,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114453,7 +117985,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114462,6 +117994,8 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", + "Non_unique": "", "columns": [ "id" ] @@ -114486,14 +118020,14 @@ "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", + "name": "fakt_umsatz", "type": "VIEW", - "Create": "CREATE VIEW `fibu_buchungen_alle` AS select `fb`.`buchungsart` AS `buchungsart`,`fb`.`typ` AS `typ`,`fb`.`id` AS `id`,if(`fibu_objekte`.`datum` <> '',`fibu_objekte`.`datum`,`fb`.`datum`) AS `datum`,`fb`.`gegen_typ` collate utf8mb3_general_ci AS `doc_typ`,`fb`.`gegen_id` AS `doc_id`,`fibu_objekte`.`info` AS `doc_belegnr`,`fb`.`soll` AS `betrag`,`fb`.`waehrung` AS `waehrung`,`fb`.`edit_module` collate utf8mb4_general_ci 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 `- ``openxe``.``gutschrift``.``soll```,`gutschrift`.`waehrung` AS `waehrung`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`datum` AS `datum`,'gutschrift' AS `edit_module`,`gutschrift`.`id` AS `edit_id` from `gutschrift` where `gutschrift`.`belegnr` <> '' union select 'abbuchung' AS `abbuchung`,'gutschrift' AS `rechnung`,`gutschrift`.`id` AS `id`,`gutschrift`.`soll` AS `- ``openxe``.``gutschrift``.``soll```,`gutschrift`.`waehrung` AS `waehrung`,'rechnung' AS `gutschrift`,`gutschrift`.`rechnungid` AS `rechnungid`,`gutschrift`.`datum` AS `datum`,'gutschrift' AS `edit_module`,`gutschrift`.`id` AS `edit_id` from `gutschrift` where `gutschrift`.`rechnungid` > 0 and `gutschrift`.`belegnr` <> '' union select 'abbuchung' AS `abbuchung`,'rechnung' AS `rechnung`,`gutschrift`.`rechnungid` AS `rechnungid`,-`gutschrift`.`soll` AS `- ``openxe``.``gutschrift``.``soll```,`gutschrift`.`waehrung` AS `waehrung`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`datum` AS `datum`,'gutschrift' AS `edit_module`,`gutschrift`.`id` AS `edit_id` from `gutschrift` where `gutschrift`.`rechnungid` > 0 and `gutschrift`.`belegnr` <> '' union select 'aufwand' AS `aufwand`,'verbindlichkeit' AS `verbindlichkeit`,`verbindlichkeit`.`id` AS `id`,-`verbindlichkeit`.`betrag` AS `- ``openxe``.``verbindlichkeit``.``betrag```,`verbindlichkeit`.`waehrung` AS `waehrung`,'verbindlichkeit' AS `verbindlichkeit`,`verbindlichkeit`.`id` AS `id`,`verbindlichkeit`.`rechnungsdatum` AS `rechnungsdatum`,'verbindlichkeit' AS `edit_module`,`verbindlichkeit`.`id` AS `edit_id` from `verbindlichkeit` where `verbindlichkeit`.`belegnr` <> '' union select 'zahlung' AS `zahlung`,'kontoauszuege' AS `kontoauszuege`,`kontoauszuege`.`id` AS `id`,-`kontoauszuege`.`soll` AS `- ``openxe``.``kontoauszuege``.``soll```,`kontoauszuege`.`waehrung` AS `waehrung`,'kontoauszuege' AS `kontoauszuege`,`kontoauszuege`.`id` AS `id`,`kontoauszuege`.`buchung` AS `buchung`,'kontoauszuege' AS `edit_module`,`kontoauszuege`.`id` AS `edit_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 `- ``openxe``.``fibu_buchungen``.``betrag```,`fibu_buchungen`.`waehrung` AS `waehrung`,`fibu_buchungen`.`nach_typ` AS `nach_typ`,`fibu_buchungen`.`nach_id` AS `nach_id`,`fibu_buchungen`.`zeit` AS `zeit`,'fibu_buchungen' AS `edit_module`,`fibu_buchungen`.`id` AS `edit_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 `betrag`,`fibu_buchungen`.`waehrung` AS `waehrung`,`fibu_buchungen`.`von_typ` AS `von_typ`,`fibu_buchungen`.`von_id` AS `von_id`,`fibu_buchungen`.`zeit` AS `zeit`,'fibu_buchungen' AS `edit_module`,`fibu_buchungen`.`id` AS `edit_id` from `fibu_buchungen`) `fb` left join `fibu_objekte` on(`fb`.`gegen_typ` = `fibu_objekte`.`typ` and `fb`.`gegen_id` = `fibu_objekte`.`id`))" - }, + "Create": "CREATE VIEW `fakt_umsatz` AS select `rechnungen`.`Datum` AS `Datum`,`rechnungen`.`Jahr` AS `Jahr`,`rechnungen`.`Monat` AS `Monat`,`rechnungen`.`Mitarbeiter_Adresse_ID` AS `Mitarbeiter_Adresse_ID`,`rechnungen`.`Adresse_ID` AS `Adresse_ID`,`rechnungen`.`Artikel_ID` AS `Artikel_ID`,`rechnungen`.`Belegnummer` AS `Belegnummer`,`rechnungen`.`Menge` AS `Menge`,`rechnungen`.`Preis` AS `Preis`,`rechnungen`.`Einkaufspreis` AS `Einkaufspreis`,`rechnungen`.`EK_manuell` AS `EK_manuell` from (select `rechnung`.`datum` AS `Datum`,date_format(`rechnung`.`datum`,'%Y') AS `Jahr`,date_format(`rechnung`.`datum`,'%m') AS `Monat`,`adresse`.`vertrieb` AS `Mitarbeiter_Adresse_ID`,`adresse`.`id` AS `Adresse_ID`,`artikel`.`id` AS `Artikel_ID`,`rechnung`.`belegnr` AS `Belegnummer`,round(sum(`rechnung_position`.`menge`),0) AS `Menge`,round(sum(`rechnung_position`.`preis`),2) AS `Preis`,case when `artikel`.`verwendeberechneterek` = 1 then round(`artikel`.`berechneterek`,2) else round((select min(`einkaufspreise`.`preis`) from `einkaufspreise` where `einkaufspreise`.`artikel` = `artikel`.`id` and `einkaufspreise`.`gueltig_bis` = '0000-00-00'),2) end AS `Einkaufspreis`,case when `artikel`.`verwendeberechneterek` = 1 then 1 else 0 end AS `EK_manuell` from (((`rechnung` join `rechnung_position` on(`rechnung_position`.`rechnung` = `rechnung`.`id`)) join `artikel` on(`rechnung_position`.`artikel` = `artikel`.`id`)) join `adresse` on(`rechnung`.`adresse` = `adresse`.`id`)) where `rechnung`.`status` = 'versendet' or `rechnung`.`status` = 'freigegeben' or `rechnung`.`status` = 'storniert' group by date_format(`rechnung`.`datum`,'%Y'),date_format(`rechnung`.`datum`,'%m'),`adresse`.`vertrieb`,`rechnung`.`belegnr`,`rechnung`.`status`,`adresse`.`name`,`artikel`.`name_de`,`artikel`.`id` order by date_format(`rechnung`.`datum`,'%Y'),date_format(`rechnung`.`datum`,'%m'),`adresse`.`vertrieb`,`rechnung`.`belegnr`,`adresse`.`name`,`artikel`.`name_de`,`artikel`.`id`) `rechnungen` union (select `gutschrift`.`datum` AS `Datum`,date_format(`gutschrift`.`datum`,'%Y') AS `Jahr`,date_format(`gutschrift`.`datum`,'%m') AS `Monat`,`adresse`.`vertrieb` AS `Mitarbeiter_Adresse_ID`,`adresse`.`id` AS `Adresse_ID`,`artikel`.`id` AS `Artikel_ID`,`gutschrift`.`belegnr` AS `Belegnummer`,-round(sum(`gutschrift_position`.`menge`),0) AS `Menge`,round(sum(`gutschrift_position`.`preis`),2) AS `Preis`,case when `artikel`.`verwendeberechneterek` = 1 then round(`artikel`.`berechneterek`,2) else round((select min(`einkaufspreise`.`preis`) from `einkaufspreise` where `einkaufspreise`.`artikel` = `artikel`.`id` and `einkaufspreise`.`gueltig_bis` = '0000-00-00'),2) end AS `Einkaufspreis`,case when `artikel`.`verwendeberechneterek` = 1 then 1 else 0 end AS `EK_manuell` from (((`gutschrift` join `gutschrift_position` on(`gutschrift_position`.`gutschrift` = `gutschrift`.`id`)) join `artikel` on(`gutschrift_position`.`artikel` = `artikel`.`id`)) join `adresse` on(`gutschrift`.`adresse` = `adresse`.`id`)) where `gutschrift`.`status` = 'versendet' or `gutschrift`.`status` = 'freigegeben' or `gutschrift`.`status` = 'storniert' group by date_format(`gutschrift`.`datum`,'%Y'),date_format(`gutschrift`.`datum`,'%m'),`adresse`.`vertrieb`,`gutschrift`.`belegnr`,`gutschrift`.`status`,`adresse`.`name`,`artikel`.`name_de`,`artikel`.`id`)" + }, { "name": "fibu_objekte", "type": "VIEW", "Create": "CREATE VIEW `fibu_objekte` AS select `rechnung`.`datum` AS `datum`,'rechnung' collate utf8mb4_general_ci AS `typ`,`rechnung`.`id` AS `id`,`rechnung`.`belegnr` AS `info` from `rechnung` where `rechnung`.`belegnr` <> '' union select `gutschrift`.`datum` AS `datum`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`belegnr` AS `belegnr` from `gutschrift` where `gutschrift`.`belegnr` <> '' union select `verbindlichkeit`.`rechnungsdatum` AS `rechnungsdatum`,'verbindlichkeit' AS `verbindlichkeit`,`verbindlichkeit`.`id` AS `id`,`verbindlichkeit`.`belegnr` AS `belegnr` from `verbindlichkeit` where `verbindlichkeit`.`belegnr` <> '' union select `kontoauszuege`.`buchung` AS `buchung`,'kontoauszuege' AS `kontoauszuege`,`kontoauszuege`.`id` AS `id`,concat(`konten`.`kurzbezeichnung`,' - ',`kontoauszuege`.`buchungstext`) AS `buchungstext` from (`kontoauszuege` left join `konten` on(`konten`.`id` = `kontoauszuege`.`konto`)) union select '' AS `Name_exp_1`,'kontorahmen' AS `'kontorahmen'`,`kontorahmen`.`id` AS `id`,`kontorahmen`.`beschriftung` AS `beschriftung` from `kontorahmen`" } ] -} +} \ No newline at end of file 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); From 3715c2f20544557e83a85c8f47dde33a1681bba7 Mon Sep 17 00:00:00 2001 From: OpenXE <> Date: Thu, 30 Mar 2023 12:33:38 +0200 Subject: [PATCH 17/61] firmendaten hotfix freifelder --- www/pages/firmendaten.php | 31 ++++++++++++++++++++++++++----- 1 file changed, 26 insertions(+), 5 deletions(-) diff --git a/www/pages/firmendaten.php b/www/pages/firmendaten.php index 19a75eff..60b1a259 100644 --- a/www/pages/firmendaten.php +++ b/www/pages/firmendaten.php @@ -706,9 +706,12 @@ class Firmendaten { $n2 = 'adressefreifeld'.$i.'spalte'; $v1 = $this->app->Secure->GetPOST($n1); $v2 = $this->app->Secure->GetPOST($n2); - $this->app->DB->Update("UPDATE firmendaten SET + /*$this->app->DB->Update("UPDATE firmendaten SET $n1 = '".$v1."', $n2 = '".$v2."' - WHERE firma='$id' LIMIT 1"); + WHERE firma='$id' LIMIT 1");*/ + + $this->app->erp->FirmendatenSet($n1,$v1); + $this->app->erp->FirmendatenSet($n2,$v2); if(isset($firmendaten_werte_spalten)) { if(isset($firmendaten_werte_spalten[$n1]) && $firmendaten_werte_spalten[$n1]['wert'] != $v1) { @@ -746,9 +749,12 @@ class Firmendaten { $n2 = 'projektfreifeld'.$i.'spalte'; $v1 = $this->app->Secure->GetPOST($n1); $v2 = $this->app->Secure->GetPOST($n2); - $this->app->DB->Update("UPDATE firmendaten SET +/* $this->app->DB->Update("UPDATE firmendaten SET $n1 = '".$v1."', $n2 = '".$v2."' - WHERE firma='$id' LIMIT 1"); + WHERE firma='$id' LIMIT 1"); */ + + $this->app->erp->FirmendatenSet($n1,$v1); + $this->app->erp->FirmendatenSet($n2,$v2); if(isset($firmendaten_werte_spalten)) { if(isset($firmendaten_werte_spalten[$n1]) && $firmendaten_werte_spalten[$n1]['wert'] != $v1) { @@ -783,6 +789,8 @@ class Firmendaten { } $toupdate = null; + +/* for($in = 1; $in <= 40; $in++) { $toupdate[] = 'freifeld'.$in; } @@ -800,7 +808,20 @@ class Firmendaten { } $sql2 = "UPDATE firmendaten SET ".implode(',',$sql2a)." WHERE firma = '$id' LIMIT 1"; unset($sql2a); - $this->app->DB->Update($sql2); + $this->app->DB->Update($sql2);*/ + + for($in = 1; $in <= 40; $in++) { + $field = 'freifeld'.$in; + $this->app->erp->FirmendatenSet($field,$this->app->Secure->GetPOST($field)); + } + for($in = 1; $in <= 20; $in++) { + $field = 'projektfreifeld'.$in; + $this->app->erp->FirmendatenSet($field,$this->app->Secure->GetPOST($field)); + $field = 'adressefreifeld'.$in; + $this->app->erp->FirmendatenSet($field,$this->app->Secure->GetPOST($field)); + } + + if($this->app->DB->error()) { foreach($toupdate as $v) { $data[$v] = $this->app->Secure->GetPOST($v); From a15d7b0b41b94322709f356b6adf94eeee153280 Mon Sep 17 00:00:00 2001 From: OpenXE <> Date: Thu, 30 Mar 2023 13:10:43 +0200 Subject: [PATCH 18/61] database utf8 rework --- upgrade/data/db_schema.json | 1856 +++++++++++------------------------ 1 file changed, 597 insertions(+), 1259 deletions(-) diff --git a/upgrade/data/db_schema.json b/upgrade/data/db_schema.json index 15ce8345..6294a233 100644 --- a/upgrade/data/db_schema.json +++ b/upgrade/data/db_schema.json @@ -5,7 +5,7 @@ "tables": [ { "name": "abrechnungsartikel", - "collation": "utf8mb4_unicode_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -383,7 +383,7 @@ }, { "name": "abrechnungsartikel_gruppe", - "collation": "utf8mb4_unicode_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -532,7 +532,7 @@ }, { "name": "abschlagsrechnung_rechnung", - "collation": "utf8mb4_unicode_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -609,7 +609,7 @@ }, { "name": "accordion", - "collation": "utf8mb4_unicode_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -670,7 +670,7 @@ }, { "name": "adapterbox", - "collation": "utf8mb4_unicode_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -863,7 +863,7 @@ }, { "name": "adapterbox_log", - "collation": "utf8mb4_unicode_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -946,7 +946,7 @@ }, { "name": "adapterbox_request_log", - "collation": "utf8mb4_unicode_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -1051,7 +1051,7 @@ }, { "name": "adresse", - "collation": "utf8mb4_unicode_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -3709,7 +3709,7 @@ }, { "name": "adresse_abosammelrechnungen", - "collation": "utf8mb4_unicode_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -3800,7 +3800,7 @@ }, { "name": "adresse_accounts", - "collation": "utf8mb4_unicode_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -3946,7 +3946,7 @@ }, { "name": "adresse_filter", - "collation": "utf8mb4_unicode_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -4018,7 +4018,7 @@ }, { "name": "adresse_filter_gruppen", - "collation": "utf8mb4_unicode_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -4109,7 +4109,7 @@ }, { "name": "adresse_filter_positionen", - "collation": "utf8mb4_unicode_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -4263,7 +4263,7 @@ }, { "name": "adresse_import", - "collation": "utf8mb4_unicode_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -4511,7 +4511,7 @@ }, { "name": "adresse_kontakhistorie", - "collation": "utf8mb4_unicode_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -4613,7 +4613,7 @@ }, { "name": "adresse_kontakte", - "collation": "utf8mb4_unicode_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -4682,7 +4682,7 @@ }, { "name": "adresse_rolle", - "collation": "utf8mb4_unicode_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -4814,7 +4814,7 @@ }, { "name": "adresse_typ", - "collation": "utf8mb4_unicode_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -4908,7 +4908,7 @@ }, { "name": "adressetiketten", - "collation": "utf8mb4_unicode_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -4969,7 +4969,7 @@ }, { "name": "aktionscode_liste", - "collation": "utf8mb4_unicode_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -5041,7 +5041,7 @@ }, { "name": "amainvoice_config", - "collation": "utf8mb4_unicode_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -5099,7 +5099,7 @@ }, { "name": "amainvoice_files", - "collation": "utf8mb4_unicode_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -5179,7 +5179,7 @@ }, { "name": "amazon_article", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -5289,7 +5289,7 @@ }, { "name": "amazon_rechnung_anlegen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -5382,7 +5382,7 @@ }, { "name": "amazon_report", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -5608,7 +5608,7 @@ }, { "name": "amazon_report_schedule", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -5714,7 +5714,7 @@ }, { "name": "amazon_shipment_info", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -6209,7 +6209,7 @@ }, { "name": "amazon_vat_report", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -6489,7 +6489,7 @@ }, { "name": "amazon_vatinvoice", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -6669,7 +6669,7 @@ }, { "name": "amazoninvoice_position", - "collation": "utf8mb4_unicode_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -7588,7 +7588,7 @@ }, { "name": "anfrage", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -8342,7 +8342,7 @@ }, { "name": "anfrage_position", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -9126,7 +9126,7 @@ }, { "name": "anfrage_protokoll", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -9206,7 +9206,7 @@ }, { "name": "angebot", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -10984,7 +10984,7 @@ }, { "name": "angebot_position", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -12194,7 +12194,7 @@ }, { "name": "angebot_protokoll", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -12274,7 +12274,7 @@ }, { "name": "ansprechpartner", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -12629,7 +12629,7 @@ }, { "name": "ansprechpartner_gruppen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -12690,7 +12690,7 @@ }, { "name": "api_account", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -12861,7 +12861,7 @@ }, { "name": "api_keys", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -12933,7 +12933,7 @@ }, { "name": "api_mapping", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -13051,7 +13051,7 @@ }, { "name": "api_permission", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -13109,7 +13109,7 @@ }, { "name": "api_regel", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -13247,7 +13247,7 @@ }, { "name": "api_request", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -13467,7 +13467,7 @@ }, { "name": "api_request_response_log", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -13610,7 +13610,7 @@ }, { "name": "arbeitsfreietage", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -13701,7 +13701,7 @@ }, { "name": "arbeitspaket", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -14166,7 +14166,7 @@ }, { "name": "article_label", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -14249,7 +14249,7 @@ }, { "name": "article_property_translation", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -14400,7 +14400,7 @@ }, { "name": "artikel", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -17033,7 +17033,7 @@ }, { "name": "artikel_arbeitsanweisung", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -17168,7 +17168,7 @@ }, { "name": "artikel_artikelgruppe", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -17240,7 +17240,7 @@ }, { "name": "artikel_cached_fields", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -17606,7 +17606,7 @@ }, { "name": "artikel_freifelder", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -17686,7 +17686,7 @@ }, { "name": "artikel_onlineshops", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -17943,7 +17943,7 @@ }, { "name": "artikel_permanenteinventur", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -18042,7 +18042,7 @@ }, { "name": "artikel_shop", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -18103,7 +18103,7 @@ }, { "name": "artikel_texte", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -18301,7 +18301,7 @@ }, { "name": "artikel_zu_optionen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -18340,7 +18340,7 @@ }, { "name": "artikel_zu_optionengruppe", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -18478,7 +18478,7 @@ }, { "name": "artikelbaum_artikel", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -18548,7 +18548,7 @@ }, { "name": "artikeleigenschaften", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -18631,7 +18631,7 @@ }, { "name": "artikeleigenschaftenwerte", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -18741,7 +18741,7 @@ }, { "name": "artikeleinheit", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -18791,7 +18791,7 @@ }, { "name": "artikelgruppen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -18893,7 +18893,7 @@ }, { "name": "artikelkalkulation", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -19072,7 +19072,7 @@ }, { "name": "artikelkalkulation_menge", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -19130,7 +19130,7 @@ }, { "name": "artikelkalkulation_tag", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -19235,7 +19235,7 @@ }, { "name": "artikelkategorien", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -19535,7 +19535,7 @@ }, { "name": "artikelkontingente", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -19596,7 +19596,7 @@ }, { "name": "artikelnummer_fremdnummern", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -19736,7 +19736,7 @@ }, { "name": "artikeloptionen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -19863,7 +19863,7 @@ }, { "name": "artikeloptionengruppe", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -19990,7 +19990,7 @@ }, { "name": "aufgabe", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -20488,7 +20488,7 @@ }, { "name": "aufgabe_erledigt", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -20560,7 +20560,7 @@ }, { "name": "auftrag", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -22972,7 +22972,7 @@ }, { "name": "auftrag_position", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -24276,7 +24276,7 @@ }, { "name": "auftrag_protokoll", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -24356,7 +24356,7 @@ }, { "name": "autoresponder_blacklist", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -24406,7 +24406,7 @@ }, { "name": "backup", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -24478,7 +24478,7 @@ }, { "name": "beleg_chargesnmhd", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -24678,7 +24678,7 @@ }, { "name": "beleg_zwischenpositionen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -24778,333 +24778,9 @@ } ] }, - { - "name": "belege", - "collation": null, - "type": "BASE TABLE", - "columns": [ - { - "Field": "id", - "Type": "int(11)", - "Collation": null, - "Null": "NO", - "Key": "", - "Default": "0", - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "adresse", - "Type": "int(11)", - "Collation": null, - "Null": "NO", - "Key": "", - "Default": "0", - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "datum", - "Type": "date", - "Collation": null, - "Null": "NO", - "Key": "", - "Default": "0000-00-00", - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "belegnr", - "Type": "mediumtext", - "Collation": "utf8mb4_general_ci", - "Null": "NO", - "Key": "", - "Default": "''", - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "status", - "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", - "Null": "NO", - "Key": "", - "Default": "''", - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "land", - "Type": "mediumtext", - "Collation": "utf8mb4_general_ci", - "Null": "NO", - "Key": "", - "Default": "''", - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "typ", - "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", - "Null": "NO", - "Key": "", - "Default": "''", - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "umsatz_netto", - "Type": "decimal(19,2)", - "Collation": null, - "Null": "NO", - "Key": "", - "Default": "0.00", - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "erloes_netto", - "Type": "decimal(19,2)", - "Collation": null, - "Null": "NO", - "Key": "", - "Default": "0.00", - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "deckungsbeitrag", - "Type": "decimal(11,2)", - "Collation": null, - "Null": "NO", - "Key": "", - "Default": "0.00", - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "provision_summe", - "Type": "decimal(11,2)", - "Collation": null, - "Null": "YES", - "Key": "", - "Default": null, - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "vertriebid", - "Type": "int(11)", - "Collation": null, - "Null": "YES", - "Key": "", - "Default": null, - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "gruppe", - "Type": "int(11)", - "Collation": null, - "Null": "NO", - "Key": "", - "Default": "0", - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - } - ], - "keys": [] - }, - { - "name": "belegegesamt", - "collation": null, - "type": "BASE TABLE", - "columns": [ - { - "Field": "id", - "Type": "int(11)", - "Collation": null, - "Null": "NO", - "Key": "", - "Default": "0", - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "adresse", - "Type": "int(11)", - "Collation": null, - "Null": "NO", - "Key": "", - "Default": "0", - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "datum", - "Type": "date", - "Collation": null, - "Null": "NO", - "Key": "", - "Default": "0000-00-00", - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "belegnr", - "Type": "mediumtext", - "Collation": "utf8mb4_general_ci", - "Null": "NO", - "Key": "", - "Default": "''", - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "status", - "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", - "Null": "NO", - "Key": "", - "Default": "''", - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "land", - "Type": "mediumtext", - "Collation": "utf8mb4_general_ci", - "Null": "NO", - "Key": "", - "Default": "''", - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "typ", - "Type": "varchar(12)", - "Collation": "utf8mb4_general_ci", - "Null": "NO", - "Key": "", - "Default": "''", - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "umsatz_netto", - "Type": "varchar(21)", - "Collation": "utf8mb4_general_ci", - "Null": "NO", - "Key": "", - "Default": "''", - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "umsatz_brutto", - "Type": "varchar(21)", - "Collation": "utf8mb4_general_ci", - "Null": "NO", - "Key": "", - "Default": "''", - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "erloes_netto", - "Type": "varchar(21)", - "Collation": "utf8mb4_general_ci", - "Null": "NO", - "Key": "", - "Default": "''", - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "deckungsbeitrag", - "Type": "varchar(13)", - "Collation": "utf8mb4_general_ci", - "Null": "NO", - "Key": "", - "Default": "''", - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "provision_summe", - "Type": "varchar(13)", - "Collation": "utf8mb4_general_ci", - "Null": "YES", - "Key": "", - "Default": null, - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "vertriebid", - "Type": "varchar(11)", - "Collation": "utf8mb4_general_ci", - "Null": "YES", - "Key": "", - "Default": null, - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "gruppe", - "Type": "varchar(11)", - "Collation": "utf8mb4_general_ci", - "Null": "NO", - "Key": "", - "Default": "''", - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "projekt", - "Type": "varchar(222)", - "Collation": "utf8mb4_general_ci", - "Null": "NO", - "Key": "", - "Default": "''", - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - } - ], - "keys": [] - }, { "name": "belegeimport", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -26441,7 +26117,7 @@ }, { "name": "belegeimport_running", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -26522,171 +26198,9 @@ } ] }, - { - "name": "belegeregs", - "collation": null, - "type": "BASE TABLE", - "columns": [ - { - "Field": "id", - "Type": "int(11)", - "Collation": null, - "Null": "NO", - "Key": "", - "Default": "0", - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "adresse", - "Type": "int(11)", - "Collation": null, - "Null": "NO", - "Key": "", - "Default": "0", - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "datum", - "Type": "date", - "Collation": null, - "Null": "NO", - "Key": "", - "Default": "0000-00-00", - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "belegnr", - "Type": "mediumtext", - "Collation": "utf8mb4_general_ci", - "Null": "NO", - "Key": "", - "Default": "''", - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "status", - "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", - "Null": "NO", - "Key": "", - "Default": "''", - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "land", - "Type": "mediumtext", - "Collation": "utf8mb4_general_ci", - "Null": "NO", - "Key": "", - "Default": "''", - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "typ", - "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", - "Null": "NO", - "Key": "", - "Default": "''", - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "umsatz_netto", - "Type": "decimal(19,2)", - "Collation": null, - "Null": "NO", - "Key": "", - "Default": "0.00", - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "erloes_netto", - "Type": "decimal(19,2)", - "Collation": null, - "Null": "NO", - "Key": "", - "Default": "0.00", - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "deckungsbeitrag", - "Type": "decimal(11,2)", - "Collation": null, - "Null": "NO", - "Key": "", - "Default": "0.00", - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "provision_summe", - "Type": "decimal(11,2)", - "Collation": null, - "Null": "YES", - "Key": "", - "Default": null, - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "vertriebid", - "Type": "int(11)", - "Collation": null, - "Null": "YES", - "Key": "", - "Default": null, - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "gruppe", - "Type": "int(11)", - "Collation": null, - "Null": "NO", - "Key": "", - "Default": "0", - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "projekt", - "Type": "varchar(222)", - "Collation": "utf8mb4_general_ci", - "Null": "NO", - "Key": "", - "Default": "''", - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - } - ], - "keys": [] - }, { "name": "belegevorlagen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -26780,7 +26294,7 @@ }, { "name": "berichte", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -27146,7 +26660,7 @@ }, { "name": "bestbeforebatchtoposition", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -27228,7 +26742,7 @@ }, { "name": "bestellung", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -28426,7 +27940,7 @@ }, { "name": "bestellung_position", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -29370,7 +28884,7 @@ }, { "name": "bestellung_protokoll", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -29501,7 +29015,7 @@ }, { "name": "bestellvorschlag_app", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -29798,7 +29312,7 @@ }, { "name": "bestellvorschlag_app_staffeln", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -29878,7 +29392,7 @@ }, { "name": "boxnachrichten", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -30016,7 +29530,7 @@ }, { "name": "bundesstaaten", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -30088,7 +29602,7 @@ }, { "name": "caldav_changes", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -30138,7 +29652,7 @@ }, { "name": "calendar", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -30177,7 +29691,7 @@ }, { "name": "change_log", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -30279,7 +29793,7 @@ }, { "name": "change_log_field", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -30359,7 +29873,7 @@ }, { "name": "chargen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -30475,7 +29989,7 @@ }, { "name": "chargen_log", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -30673,7 +30187,7 @@ }, { "name": "chargenverwaltung", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -30778,7 +30292,7 @@ }, { "name": "chat", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -30877,7 +30391,7 @@ }, { "name": "chat_gelesen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -30955,7 +30469,7 @@ }, { "name": "checkaltertable", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -30994,7 +30508,7 @@ }, { "name": "collectivedebitor", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -31110,7 +30624,7 @@ }, { "name": "cronjob_kommissionierung", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -31160,7 +30674,7 @@ }, { "name": "cronjob_log", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -31274,7 +30788,7 @@ }, { "name": "cronjob_starter_running", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -31366,7 +30880,7 @@ }, { "name": "datei", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -31460,7 +30974,7 @@ }, { "name": "datei_stichwoerter", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -31592,7 +31106,7 @@ }, { "name": "datei_stichwortvorlagen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -31653,7 +31167,7 @@ }, { "name": "datei_version", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -31777,7 +31291,7 @@ }, { "name": "dateibaum", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -31827,7 +31341,7 @@ }, { "name": "datev_buchungen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -32053,7 +31567,7 @@ }, { "name": "datevconnect_online_export", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -32114,7 +31628,7 @@ }, { "name": "delivery_problemcase", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -32164,7 +31678,7 @@ }, { "name": "device_jobs", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -32269,7 +31783,7 @@ }, { "name": "docscan", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -32319,7 +31833,7 @@ }, { "name": "docscan_metadata", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -32380,7 +31894,7 @@ }, { "name": "document_customization_infoblock", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -32485,7 +31999,7 @@ }, { "name": "document_customization_infoblock_translation", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -32587,7 +32101,7 @@ }, { "name": "dokumente", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -32953,7 +32467,7 @@ }, { "name": "dokumente_send", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -33143,7 +32657,7 @@ }, { "name": "dropshipping", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -33201,7 +32715,7 @@ }, { "name": "dropshipping_gruppe", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -33490,7 +33004,7 @@ }, { "name": "drucker", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -33705,7 +33219,7 @@ }, { "name": "drucker_spooler", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -33859,7 +33373,7 @@ }, { "name": "dsgvo_loeschauftrag", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -33920,7 +33434,7 @@ }, { "name": "dta", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -34179,7 +33693,7 @@ }, { "name": "dta_datei", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -34295,7 +33809,7 @@ }, { "name": "dta_datei_verband", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -34466,7 +33980,7 @@ }, { "name": "eangenerator", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -34516,7 +34030,7 @@ }, { "name": "ebay_articles_to_sync", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -34615,7 +34129,7 @@ }, { "name": "ebay_artikelzuordnungen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -34731,7 +34245,7 @@ }, { "name": "ebay_auktionen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -34935,7 +34449,7 @@ }, { "name": "ebay_bulk_call", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -35026,7 +34540,7 @@ }, { "name": "ebay_bulk_jobs", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -35202,7 +34716,7 @@ }, { "name": "ebay_fee_overview", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -35318,7 +34832,7 @@ }, { "name": "ebay_kategoriespezifisch", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -35478,7 +34992,7 @@ }, { "name": "ebay_kategorievorschlag", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -35583,7 +35097,7 @@ }, { "name": "ebay_kategoriezustand", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -35655,7 +35169,7 @@ }, { "name": "ebay_picture_hosting_service", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -35751,7 +35265,7 @@ }, { "name": "ebay_rahmenbedingungen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -35867,7 +35381,7 @@ }, { "name": "ebay_rest_token", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -35939,7 +35453,7 @@ }, { "name": "ebay_staging_listing", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -36269,7 +35783,7 @@ }, { "name": "ebay_staging_listing_specific", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -36338,7 +35852,7 @@ }, { "name": "ebay_staging_listing_variant", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -36426,7 +35940,7 @@ }, { "name": "ebay_staging_listing_variant_specific", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -36487,7 +36001,7 @@ }, { "name": "ebay_storekategorien", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -36559,7 +36073,7 @@ }, { "name": "ebay_template", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -36620,7 +36134,7 @@ }, { "name": "ebay_variantenbilder", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -36681,7 +36195,7 @@ }, { "name": "ebay_versand", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -36808,7 +36322,7 @@ }, { "name": "ebay_versand_zuordnung", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -36869,7 +36383,7 @@ }, { "name": "eigenschaften", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -36963,7 +36477,7 @@ }, { "name": "einkaufspreise", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -37375,7 +36889,7 @@ }, { "name": "emailbackup", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -37854,7 +37368,7 @@ }, { "name": "emailbackup_mails", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -38188,7 +37702,7 @@ }, { "name": "epost_files", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -38260,7 +37774,7 @@ }, { "name": "etiketten", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -38431,7 +37945,7 @@ }, { "name": "etsy_taxonomy", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -38525,7 +38039,7 @@ }, { "name": "etsy_transaction", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -38630,7 +38144,7 @@ }, { "name": "event", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -38724,7 +38238,7 @@ }, { "name": "event_api", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -38840,7 +38354,7 @@ }, { "name": "exportlink_sent", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -38936,7 +38450,7 @@ }, { "name": "exportvorlage", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -39118,7 +38632,7 @@ }, { "name": "extended_approval_protocol", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -39245,7 +38759,7 @@ }, { "name": "extended_approval_responsibility", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -39348,138 +38862,9 @@ } ] }, - { - "name": "fakt_umsatz", - "collation": null, - "type": "BASE TABLE", - "columns": [ - { - "Field": "Datum", - "Type": "date", - "Collation": null, - "Null": "NO", - "Key": "", - "Default": "0000-00-00", - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "Jahr", - "Type": "varchar(4)", - "Collation": "utf8mb4_general_ci", - "Null": "YES", - "Key": "", - "Default": null, - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "Monat", - "Type": "varchar(2)", - "Collation": "utf8mb4_general_ci", - "Null": "YES", - "Key": "", - "Default": null, - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "Mitarbeiter_Adresse_ID", - "Type": "int(11)", - "Collation": null, - "Null": "YES", - "Key": "", - "Default": null, - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "Adresse_ID", - "Type": "int(11)", - "Collation": null, - "Null": "NO", - "Key": "", - "Default": "0", - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "Artikel_ID", - "Type": "int(11)", - "Collation": null, - "Null": "NO", - "Key": "", - "Default": "0", - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "Belegnummer", - "Type": "mediumtext", - "Collation": "utf8mb4_general_ci", - "Null": "NO", - "Key": "", - "Default": "''", - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "Menge", - "Type": "decimal(33,0)", - "Collation": null, - "Null": "YES", - "Key": "", - "Default": null, - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "Preis", - "Type": "decimal(35,2)", - "Collation": null, - "Null": "YES", - "Key": "", - "Default": null, - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "Einkaufspreis", - "Type": "decimal(13,2)", - "Collation": null, - "Null": "YES", - "Key": "", - "Default": null, - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "EK_manuell", - "Type": "int(11)", - "Collation": null, - "Null": "NO", - "Key": "", - "Default": "0", - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - } - ], - "keys": [] - }, { "name": "fee_reduction", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -39755,61 +39140,9 @@ } ] }, - { - "name": "fibu_objekte", - "collation": null, - "type": "BASE TABLE", - "columns": [ - { - "Field": "datum", - "Type": "varchar(10)", - "Collation": "utf8mb4_unicode_ci", - "Null": "YES", - "Key": "", - "Default": null, - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "typ", - "Type": "varchar(15)", - "Collation": "utf8mb4_general_ci", - "Null": "YES", - "Key": "", - "Default": null, - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "id", - "Type": "int(11)", - "Collation": null, - "Null": "NO", - "Key": "", - "Default": "0", - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "info", - "Type": "mediumtext", - "Collation": "utf8mb4_general_ci", - "Null": "YES", - "Key": "", - "Default": null, - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - } - ], - "keys": [] - }, { "name": "file_link", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -39881,7 +39214,7 @@ }, { "name": "firma", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -39931,7 +39264,7 @@ }, { "name": "firmendaten", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -41631,7 +40964,7 @@ }, { "name": "firmendaten_werte", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -41747,7 +41080,7 @@ }, { "name": "formeln", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -41827,7 +41160,7 @@ }, { "name": "formula_position", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -41921,7 +41254,7 @@ }, { "name": "free_article", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -42015,7 +41348,7 @@ }, { "name": "free_article_included", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -42092,7 +41425,7 @@ }, { "name": "geschaeftsbrief_vorlagen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -42186,7 +41519,7 @@ }, { "name": "gls", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -42368,7 +41701,7 @@ }, { "name": "goodspostingdocument", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -42517,7 +41850,7 @@ }, { "name": "goodspostingdocument_movement", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -42641,7 +41974,7 @@ }, { "name": "goodspostingdocument_position", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -42809,7 +42142,7 @@ }, { "name": "goodspostingdocument_protocol", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -42889,7 +42222,7 @@ }, { "name": "google_access_token", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -42958,7 +42291,7 @@ }, { "name": "google_account", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -43027,7 +42360,7 @@ }, { "name": "google_account_property", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -43088,7 +42421,7 @@ }, { "name": "google_account_scope", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -43146,7 +42479,7 @@ }, { "name": "googleapi", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -43306,7 +42639,7 @@ }, { "name": "googleapi_calendar_sync", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -43408,7 +42741,7 @@ }, { "name": "googleapi_user", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -43524,7 +42857,7 @@ }, { "name": "gpsstechuhr", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -43596,7 +42929,7 @@ }, { "name": "gruppen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -44471,7 +43804,7 @@ }, { "name": "gruppen_kategorien", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -44521,7 +43854,7 @@ }, { "name": "gruppenmapping", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -44634,7 +43967,7 @@ }, { "name": "gruppenrechnung_auswahl", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -44730,7 +44063,7 @@ }, { "name": "gutschrift", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -46156,7 +45489,7 @@ }, { "name": "gutschrift_position", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -47311,7 +46644,7 @@ }, { "name": "gutschrift_protokoll", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -47391,7 +46724,7 @@ }, { "name": "hook", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -47490,7 +46823,7 @@ }, { "name": "hook_action", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -47551,7 +46884,7 @@ }, { "name": "hook_layout", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -47667,7 +47000,7 @@ }, { "name": "hook_menu", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -47725,7 +47058,7 @@ }, { "name": "hook_menu_register", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -47816,7 +47149,7 @@ }, { "name": "hook_module", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -47866,7 +47199,7 @@ }, { "name": "hook_navigation", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -47971,7 +47304,7 @@ }, { "name": "hook_register", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -48084,7 +47417,7 @@ }, { "name": "importmasterdata", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -48224,7 +47557,7 @@ }, { "name": "importvorlage", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -48384,7 +47717,7 @@ }, { "name": "importvorlage_log", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -48478,7 +47811,7 @@ }, { "name": "inhalt", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -48671,7 +48004,7 @@ }, { "name": "inventur", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -49139,7 +48472,7 @@ }, { "name": "inventur_position", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -49308,7 +48641,7 @@ }, { "name": "inventur_protokoll", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -49388,7 +48721,7 @@ }, { "name": "item_template", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -49460,7 +48793,7 @@ }, { "name": "jqcalendar", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -49565,7 +48898,7 @@ }, { "name": "kalender", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -49615,7 +48948,7 @@ }, { "name": "kalender_event", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -49860,7 +49193,7 @@ }, { "name": "kalender_gruppen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -49921,7 +49254,7 @@ }, { "name": "kalender_gruppen_mitglieder", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -49998,7 +49331,7 @@ }, { "name": "kalender_temp", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -50094,7 +49427,7 @@ }, { "name": "kalender_user", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -50171,7 +49504,7 @@ }, { "name": "kasse", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -50526,7 +49859,7 @@ }, { "name": "kasse_log", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -50609,7 +49942,7 @@ }, { "name": "kommissionierung", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -50725,7 +50058,7 @@ }, { "name": "kommissionierung_position", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -50797,7 +50130,7 @@ }, { "name": "kommissionierung_position_ls", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -50880,7 +50213,7 @@ }, { "name": "kommissionskonsignationslager_positionen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -51037,7 +50370,7 @@ }, { "name": "konfiguration", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -51098,7 +50431,7 @@ }, { "name": "konten", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -51695,7 +51028,7 @@ }, { "name": "kontoauszuege", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -52176,7 +51509,7 @@ }, { "name": "kontoauszuege_zahlungsausgang", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -52319,7 +51652,7 @@ }, { "name": "kontoauszuege_zahlungseingang", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -52473,7 +51806,7 @@ }, { "name": "kontorahmen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -52567,7 +51900,7 @@ }, { "name": "kontorahmen_checked", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -52617,7 +51950,7 @@ }, { "name": "kopiebelegempfaenger", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -52755,7 +52088,7 @@ }, { "name": "kostenstelle", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -52827,7 +52160,7 @@ }, { "name": "kostenstelle_buchung", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -52910,7 +52243,7 @@ }, { "name": "kostenstellen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -52971,7 +52304,7 @@ }, { "name": "kundevorlage", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -53076,7 +52409,7 @@ }, { "name": "label_automatic", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -53148,7 +52481,7 @@ }, { "name": "label_group", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -53217,7 +52550,7 @@ }, { "name": "label_reference", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -53349,7 +52682,7 @@ }, { "name": "label_type", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -53451,7 +52784,7 @@ }, { "name": "laender", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -53545,7 +52878,7 @@ }, { "name": "lager", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -53661,7 +52994,7 @@ }, { "name": "lager_bewegung", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -53914,7 +53247,7 @@ }, { "name": "lager_charge", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -54035,7 +53368,7 @@ }, { "name": "lager_differenzen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -54151,7 +53484,7 @@ }, { "name": "lager_mindesthaltbarkeitsdatum", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -54283,7 +53616,7 @@ }, { "name": "lager_platz", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -54528,7 +53861,7 @@ }, { "name": "lager_platz_inhalt", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -54693,7 +54026,7 @@ }, { "name": "lager_platz_vpe", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -54864,7 +54197,7 @@ }, { "name": "lager_reserviert", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -55063,7 +54396,7 @@ }, { "name": "lager_seriennummern", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -55168,7 +54501,7 @@ }, { "name": "lagermindestmengen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -55271,7 +54604,7 @@ }, { "name": "lagerstueckliste", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -55351,7 +54684,7 @@ }, { "name": "lagerwert", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -55560,7 +54893,7 @@ }, { "name": "layouttemplate_attachment", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -55698,7 +55031,7 @@ }, { "name": "layouttemplate_attachment_items", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -55770,7 +55103,7 @@ }, { "name": "layoutvorlagen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -55864,7 +55197,7 @@ }, { "name": "layoutvorlagen_positionen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -56241,7 +55574,7 @@ }, { "name": "lieferadressen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -56552,7 +55885,7 @@ }, { "name": "lieferantvorlage", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -56668,7 +56001,7 @@ }, { "name": "lieferbedingungen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -56718,7 +56051,7 @@ }, { "name": "lieferschein", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -57654,7 +56987,7 @@ }, { "name": "lieferschein_position", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -58564,7 +57897,7 @@ }, { "name": "lieferschein_protokoll", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -58644,7 +57977,7 @@ }, { "name": "lieferschwelle", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -58867,7 +58200,7 @@ }, { "name": "lieferschwelle_artikel", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -58966,7 +58299,7 @@ }, { "name": "liefertermine_positionen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -59038,7 +58371,7 @@ }, { "name": "linkeditor", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -59099,7 +58432,7 @@ }, { "name": "log", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -59226,7 +58559,7 @@ }, { "name": "logdatei", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -59309,7 +58642,7 @@ }, { "name": "logfile", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -59414,7 +58747,7 @@ }, { "name": "magento2_extended_mapping", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -59527,7 +58860,7 @@ }, { "name": "mailausgang", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -59632,7 +58965,7 @@ }, { "name": "managementboard_liquiditaet", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -59726,7 +59059,7 @@ }, { "name": "managementboard_liquiditaet_datum", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -59787,7 +59120,7 @@ }, { "name": "mandatory_field", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -59941,7 +59274,7 @@ }, { "name": "massenbearbeitung", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -60024,7 +59357,7 @@ }, { "name": "matrix_article_options_translation", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -60162,7 +59495,7 @@ }, { "name": "matrix_article_translation", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -60278,7 +59611,7 @@ }, { "name": "matrix_list_view", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -60799,7 +60132,7 @@ }, { "name": "matrix_list_view_status", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -60868,7 +60201,7 @@ }, { "name": "matrixprodukt_eigenschaftengruppen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -60973,7 +60306,7 @@ }, { "name": "matrixprodukt_eigenschaftengruppen_artikel", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -61130,7 +60463,7 @@ }, { "name": "matrixprodukt_eigenschaftenoptionen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -61257,7 +60590,7 @@ }, { "name": "matrixprodukt_eigenschaftenoptionen_artikel", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -61414,7 +60747,7 @@ }, { "name": "matrixprodukt_optionen_zu_artikel", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -61480,7 +60813,7 @@ }, { "name": "maximum_discount", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -61530,7 +60863,7 @@ }, { "name": "mhd_log", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -61739,7 +61072,7 @@ }, { "name": "mitarbeiterzeiterfassung", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -61899,7 +61232,7 @@ }, { "name": "mitarbeiterzeiterfassung_einstellungen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -62268,7 +61601,7 @@ }, { "name": "mitarbeiterzeiterfassung_sollstunden", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -62631,7 +61964,7 @@ }, { "name": "mlm_abrechnung", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -62725,7 +62058,7 @@ }, { "name": "mlm_abrechnung_adresse", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -63028,7 +62361,7 @@ }, { "name": "mlm_abrechnung_log", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -63089,7 +62422,7 @@ }, { "name": "mlm_downline", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -63139,7 +62472,7 @@ }, { "name": "mlm_positionierung", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -63244,7 +62577,7 @@ }, { "name": "mlm_wartekonto", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -63371,7 +62704,7 @@ }, { "name": "module_action", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -63430,7 +62763,7 @@ }, { "name": "module_lock", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -63513,7 +62846,7 @@ }, { "name": "module_stat", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -63595,7 +62928,7 @@ }, { "name": "module_stat_detail", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -63725,7 +63058,7 @@ }, { "name": "module_status", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -63775,7 +63108,7 @@ }, { "name": "navigation_alternative", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -63869,7 +63202,7 @@ }, { "name": "newsletter_blacklist", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -63908,7 +63241,7 @@ }, { "name": "newslettercache", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -63938,7 +63271,7 @@ }, { "name": "notification_message", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -64062,7 +63395,7 @@ }, { "name": "object_stat", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -64156,7 +63489,7 @@ }, { "name": "objekt_lager_platz", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -64296,7 +63629,7 @@ }, { "name": "objekt_protokoll", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -64390,7 +63723,7 @@ }, { "name": "offenevorgaenge", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -64492,7 +63825,7 @@ }, { "name": "onlineshop_transfer_cart", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -64624,7 +63957,7 @@ }, { "name": "onlineshops_tasks", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -64718,7 +64051,7 @@ }, { "name": "openstreetmap_status", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -64768,7 +64101,7 @@ }, { "name": "paketannahme", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -65038,7 +64371,7 @@ }, { "name": "paketdistribution", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -65198,7 +64531,7 @@ }, { "name": "partner", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -65325,7 +64658,7 @@ }, { "name": "partner_verkauf", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -65419,7 +64752,7 @@ }, { "name": "parts_list_alternative", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -65480,7 +64813,7 @@ }, { "name": "payment_transaction", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -65672,7 +65005,7 @@ }, { "name": "payment_transaction_group", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -65752,7 +65085,7 @@ }, { "name": "payment_transaction_preview", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -65906,7 +65239,7 @@ }, { "name": "paymentaccount_import_job", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -65998,7 +65331,7 @@ }, { "name": "paymentaccount_import_scheduler", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -66057,7 +65390,7 @@ }, { "name": "paymentimport_lock", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -66148,7 +65481,7 @@ }, { "name": "pdfarchiv", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -66335,7 +65668,7 @@ }, { "name": "pdfmirror_md5pool", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -66440,7 +65773,7 @@ }, { "name": "permissionhistory", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -66556,7 +65889,7 @@ }, { "name": "pinwand", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -66606,7 +65939,7 @@ }, { "name": "pinwand_user", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -66665,7 +65998,7 @@ }, { "name": "pos_abschluss", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -66737,7 +66070,7 @@ }, { "name": "pos_kassierer", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -66809,7 +66142,7 @@ }, { "name": "pos_order", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -67021,7 +66354,7 @@ }, { "name": "pos_rksv", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -67203,7 +66536,7 @@ }, { "name": "pos_sessions", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -67297,7 +66630,7 @@ }, { "name": "pos_tagesabschluss", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -67396,7 +66729,7 @@ }, { "name": "pos_zaehlungen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -67666,7 +66999,7 @@ }, { "name": "preisanfrage", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -68365,7 +67698,7 @@ }, { "name": "preisanfrage_position", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -69028,7 +68361,7 @@ }, { "name": "preisanfrage_protokoll", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -69100,7 +68433,7 @@ }, { "name": "presta_image_association", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -69161,7 +68494,7 @@ }, { "name": "presta_matrix_association", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -69222,7 +68555,7 @@ }, { "name": "produktion", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -70949,7 +70282,7 @@ }, { "name": "produktion_arbeitsanweisung", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -71117,7 +70450,7 @@ }, { "name": "produktion_arbeitsanweisung_batch", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -71249,7 +70582,7 @@ }, { "name": "produktion_baugruppen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -71417,7 +70750,7 @@ }, { "name": "produktion_baugruppen_charge", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -71546,7 +70879,7 @@ }, { "name": "produktion_charge", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -71700,7 +71033,7 @@ }, { "name": "produktion_etiketten", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -71802,7 +71135,7 @@ }, { "name": "produktion_funktionsprotokoll", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -72036,7 +71369,7 @@ }, { "name": "produktion_funktionsprotokoll_position", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -72237,7 +71570,7 @@ }, { "name": "produktion_position", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -73070,7 +72403,7 @@ }, { "name": "produktion_protokoll", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -73150,7 +72483,7 @@ }, { "name": "produktion_unterseriennummern", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -73274,7 +72607,7 @@ }, { "name": "produktionslager", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -73423,7 +72756,7 @@ }, { "name": "proformarechnung", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -75090,7 +74423,7 @@ }, { "name": "proformarechnung_lieferschein", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -75162,7 +74495,7 @@ }, { "name": "proformarechnung_position", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -76144,7 +75477,7 @@ }, { "name": "proformarechnung_protokoll", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -76216,7 +75549,7 @@ }, { "name": "projekt", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -80297,7 +79630,7 @@ }, { "name": "projekt_artikel", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -80600,7 +79933,7 @@ }, { "name": "projekt_inventar", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -80727,7 +80060,7 @@ }, { "name": "protokoll", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -80854,7 +80187,7 @@ }, { "name": "provision_regeln", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -81060,7 +80393,7 @@ }, { "name": "provisionenartikel_abrechnungen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -81184,7 +80517,7 @@ }, { "name": "provisionenartikel_abrechnungen_provisionen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -81432,7 +80765,7 @@ }, { "name": "provisionenartikel_provision", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -81559,7 +80892,7 @@ }, { "name": "prozessstarter", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -81771,7 +81104,7 @@ }, { "name": "pseudostorage_shop", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -81829,7 +81162,7 @@ }, { "name": "real_article_mapping", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -81945,7 +81278,7 @@ }, { "name": "real_kategoriespezifisch", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -82083,7 +81416,7 @@ }, { "name": "real_kategorievorschlag", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -82199,7 +81532,7 @@ }, { "name": "real_versandgruppen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -82260,7 +81593,7 @@ }, { "name": "receiptdocument", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -82431,7 +81764,7 @@ }, { "name": "receiptdocument_log", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -82511,7 +81844,7 @@ }, { "name": "receiptdocument_position", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -82657,7 +81990,7 @@ }, { "name": "rechnung", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -84247,7 +83580,7 @@ }, { "name": "rechnung_position", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -85443,7 +84776,7 @@ }, { "name": "rechnung_protokoll", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -85523,7 +84856,7 @@ }, { "name": "reisekosten", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -86178,7 +85511,7 @@ }, { "name": "reisekosten_position", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -86555,7 +85888,7 @@ }, { "name": "reisekosten_protokoll", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -86635,7 +85968,7 @@ }, { "name": "reisekostenart", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -86696,7 +86029,7 @@ }, { "name": "report", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -86823,7 +86156,7 @@ }, { "name": "report_column", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -86961,7 +86294,7 @@ }, { "name": "report_favorite", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -87011,7 +86344,7 @@ }, { "name": "report_parameter", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -87138,7 +86471,7 @@ }, { "name": "report_share", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -87419,7 +86752,7 @@ }, { "name": "report_transfer", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -87788,7 +87121,7 @@ }, { "name": "report_user", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -87893,7 +87226,7 @@ }, { "name": "retoure", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -88924,7 +88257,7 @@ }, { "name": "retoure_position", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -89807,7 +89140,7 @@ }, { "name": "retoure_protokoll", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -89887,7 +89220,7 @@ }, { "name": "returnorder_quantity", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -89978,7 +89311,7 @@ }, { "name": "rma", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -90380,7 +89713,7 @@ }, { "name": "rma_artikel", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -90592,7 +89925,7 @@ }, { "name": "rma_position", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -90686,7 +90019,7 @@ }, { "name": "rma_protokoll", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -90802,7 +90135,7 @@ }, { "name": "rma_vorlagen_grund", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -90915,7 +90248,7 @@ }, { "name": "rma_vorlagen_kategorien", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -90976,7 +90309,7 @@ }, { "name": "rohstoffe", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -91081,7 +90414,7 @@ }, { "name": "sammelrechnung_position", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -91221,7 +90554,7 @@ }, { "name": "scheck_checked", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -91271,7 +90604,7 @@ }, { "name": "scheck_druck", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -91354,7 +90687,7 @@ }, { "name": "scheck_gutschrift", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -91404,7 +90737,7 @@ }, { "name": "seriennummern", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -91531,7 +90864,7 @@ }, { "name": "seriennummern_log", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -91713,7 +91046,7 @@ }, { "name": "service", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -92123,7 +91456,7 @@ }, { "name": "sevensenders_shipment", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -92217,7 +91550,7 @@ }, { "name": "shopexport", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -93268,7 +92601,7 @@ }, { "name": "shopexport_adressenuebertragen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -93318,7 +92651,7 @@ }, { "name": "shopexport_archiv", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -93541,7 +92874,7 @@ }, { "name": "shopexport_artikel", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -93644,7 +92977,7 @@ }, { "name": "shopexport_artikeluebertragen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -93705,7 +93038,7 @@ }, { "name": "shopexport_artikeluebertragen_check", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -93755,7 +93088,7 @@ }, { "name": "shopexport_change_log", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -93849,7 +93182,7 @@ }, { "name": "shopexport_freifelder", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -93954,7 +93287,7 @@ }, { "name": "shopexport_getarticles", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -94012,7 +93345,7 @@ }, { "name": "shopexport_kampange", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -94194,7 +93527,7 @@ }, { "name": "shopexport_kategorien", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -94348,7 +93681,7 @@ }, { "name": "shopexport_kundengruppen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -94486,7 +93819,7 @@ }, { "name": "shopexport_log", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -94613,7 +93946,7 @@ }, { "name": "shopexport_mapping", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -94731,7 +94064,7 @@ }, { "name": "shopexport_sprachen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -94847,7 +94180,7 @@ }, { "name": "shopexport_status", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -94930,7 +94263,7 @@ }, { "name": "shopexport_subshop", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -95046,7 +94379,7 @@ }, { "name": "shopexport_versandarten", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -95195,7 +94528,7 @@ }, { "name": "shopexport_voucher_cache", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -95264,7 +94597,7 @@ }, { "name": "shopexport_zahlungsstatus", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -95352,7 +94685,7 @@ }, { "name": "shopexport_zahlweisen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -95490,7 +94823,7 @@ }, { "name": "shopimport_amazon_aufrufe", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -95694,7 +95027,7 @@ }, { "name": "shopimport_amazon_gotorders", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -95873,7 +95206,7 @@ }, { "name": "shopimport_amazon_throttling", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -96085,7 +95418,7 @@ }, { "name": "shopimport_auftraege", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -96234,7 +95567,7 @@ }, { "name": "shopimport_checkorder", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -96339,7 +95672,7 @@ }, { "name": "shopimporter_amazon_attachedoffers", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -96641,7 +95974,7 @@ }, { "name": "shopimporter_amazon_browsetree", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -96817,7 +96150,7 @@ }, { "name": "shopimporter_amazon_categorie", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -96938,7 +96271,7 @@ }, { "name": "shopimporter_amazon_creditnotes_adjustmentid", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -97048,7 +96381,7 @@ }, { "name": "shopimporter_amazon_feedsubmission", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -97184,7 +96517,7 @@ }, { "name": "shopimporter_amazon_flatfile_article", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -97319,7 +96652,7 @@ }, { "name": "shopimporter_amazon_flatfile_article_image", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -97418,7 +96751,7 @@ }, { "name": "shopimporter_amazon_flatfile_article_value", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -97487,7 +96820,7 @@ }, { "name": "shopimporter_amazon_flatfiledefinition", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -97589,7 +96922,7 @@ }, { "name": "shopimporter_amazon_flatfilefields", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -97636,7 +96969,7 @@ }, { "name": "shopimporter_amazon_invoice_address", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -97804,7 +97137,7 @@ }, { "name": "shopimporter_amazon_invoice_upload", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -98057,7 +97390,7 @@ }, { "name": "shopimporter_amazon_listing", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -98640,7 +97973,7 @@ }, { "name": "shopimporter_amazon_merchantgroup", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -98709,7 +98042,7 @@ }, { "name": "shopimporter_amazon_order_status", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -98791,7 +98124,7 @@ }, { "name": "shopimporter_amazon_orderadjustment", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -98890,7 +98223,7 @@ }, { "name": "shopimporter_amazon_orderinfo", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -98992,7 +98325,7 @@ }, { "name": "shopimporter_amazon_recommendation", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -99146,7 +98479,7 @@ }, { "name": "shopimporter_amazon_report_scheduler", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -99283,7 +98616,7 @@ }, { "name": "shopimporter_amazon_requestinfo", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -99435,7 +98768,7 @@ }, { "name": "shopimporter_amazon_service_status", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -99512,7 +98845,7 @@ }, { "name": "shopimporter_amazon_small_and_light", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -99680,7 +99013,7 @@ }, { "name": "shopimporter_amazon_token", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -99761,7 +99094,7 @@ }, { "name": "shopimporter_amazon_xsd_enumerations", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -99893,7 +99226,7 @@ }, { "name": "shopimporter_shopify_auftraege", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -100014,7 +99347,7 @@ }, { "name": "shopnavigation", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -100130,7 +99463,7 @@ }, { "name": "singleshipment_order", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -100224,7 +99557,7 @@ }, { "name": "snapaddy_address", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -100403,7 +99736,7 @@ }, { "name": "snapaddy_log", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -100464,7 +99797,7 @@ }, { "name": "sprachen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -100547,7 +99880,7 @@ }, { "name": "spryker_data", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -100638,7 +99971,7 @@ }, { "name": "spryker_online_number", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -100715,7 +100048,7 @@ }, { "name": "spryker_order_reference", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -100806,7 +100139,7 @@ }, { "name": "sqlcache", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -100889,7 +100222,7 @@ }, { "name": "standardpackage", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -101005,7 +100338,7 @@ }, { "name": "stechuhr", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -101118,7 +100451,7 @@ }, { "name": "stechuhrdevice", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -101212,7 +100545,7 @@ }, { "name": "steuersaetze", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -101361,7 +100694,7 @@ }, { "name": "stock_replenishment_list", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -101497,7 +100830,7 @@ }, { "name": "stueckliste", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -101698,7 +101031,7 @@ }, { "name": "stundensatz", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -101809,7 +101142,7 @@ { "Field": "document_type", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -101820,7 +101153,7 @@ { "Field": "job_type", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -101872,7 +101205,7 @@ }, { "name": "supersearch_index_group", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -101974,7 +101307,7 @@ }, { "name": "supersearch_index_item", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -102148,7 +101481,7 @@ }, { "name": "supportapp", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -102275,7 +101608,7 @@ }, { "name": "supportapp_artikel", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -102325,7 +101658,7 @@ }, { "name": "supportapp_auftrag_check", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -102408,7 +101741,7 @@ }, { "name": "supportapp_gruppen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -102469,7 +101802,7 @@ }, { "name": "supportapp_log", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -102541,7 +101874,7 @@ }, { "name": "supportapp_schritte", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -102646,7 +101979,7 @@ }, { "name": "supportapp_vorlagen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -102707,7 +102040,7 @@ }, { "name": "survey", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -102790,7 +102123,7 @@ }, { "name": "survey_user", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -102878,7 +102211,7 @@ }, { "name": "system_disk_free", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -102969,7 +102302,7 @@ }, { "name": "systemhealth", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -103112,7 +102445,7 @@ }, { "name": "systemhealth_category", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -103181,7 +102514,7 @@ }, { "name": "systemhealth_custom_error_lvl", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -103239,7 +102572,7 @@ }, { "name": "systemhealth_event", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -103349,7 +102682,7 @@ }, { "name": "systemhealth_notification", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -103399,7 +102732,7 @@ }, { "name": "systemhealth_notification_item", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -103471,7 +102804,7 @@ }, { "name": "systemlog", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -103609,7 +102942,7 @@ }, { "name": "systemtemplates", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -103723,7 +103056,7 @@ }, { "name": "task_subscription", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -103781,7 +103114,7 @@ }, { "name": "task_timeline", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -103861,7 +103194,7 @@ }, { "name": "teilprojekt_geplante_zeiten", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -103955,7 +103288,7 @@ }, { "name": "telefonrueckruf", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -104112,7 +103445,7 @@ }, { "name": "telefonrueckruf_versuche", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -104203,7 +103536,7 @@ }, { "name": "templatemessage", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -104272,7 +103605,7 @@ }, { "name": "textvorlagen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -104344,7 +103677,7 @@ }, { "name": "ticket", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -104668,7 +104001,7 @@ }, { "name": "ticket_category", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -104740,7 +104073,7 @@ }, { "name": "ticket_header", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -104801,7 +104134,7 @@ }, { "name": "ticket_nachricht", - "collation": "utf8mb4_unicode_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -105023,7 +104356,7 @@ }, { "name": "ticket_regeln", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -105161,7 +104494,7 @@ }, { "name": "ticket_vorlage", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -105274,7 +104607,7 @@ }, { "name": "transfer_account_label", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -105324,7 +104657,7 @@ }, { "name": "transfer_sellingreport_job", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -105407,7 +104740,7 @@ }, { "name": "uebersetzung", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -105495,7 +104828,7 @@ }, { "name": "uebertragungen_account", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -106524,7 +105857,7 @@ }, { "name": "uebertragungen_account_oauth", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -106626,7 +105959,7 @@ }, { "name": "uebertragungen_artikel", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -106718,7 +106051,7 @@ }, { "name": "uebertragungen_dateien", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -106854,7 +106187,7 @@ }, { "name": "uebertragungen_event", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -106978,7 +106311,7 @@ }, { "name": "uebertragungen_event_einstellungen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -107059,7 +106392,7 @@ }, { "name": "uebertragungen_fileconvert_log", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -107175,7 +106508,7 @@ }, { "name": "uebertragungen_lagercache", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -107247,7 +106580,7 @@ }, { "name": "uebertragungen_log", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -107371,7 +106704,7 @@ }, { "name": "uebertragungen_monitor", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -107542,7 +106875,7 @@ }, { "name": "uebertragungen_trackingnummern", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -107592,7 +106925,7 @@ }, { "name": "umsatzstatistik", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -107785,7 +107118,7 @@ }, { "name": "unterprojekt", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -107879,7 +107212,7 @@ }, { "name": "ups", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -107962,7 +107295,7 @@ }, { "name": "user", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -108537,7 +107870,7 @@ }, { "name": "user_totp", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -108628,7 +107961,7 @@ }, { "name": "userkonfiguration", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -108705,7 +108038,7 @@ }, { "name": "useronline", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -108788,7 +108121,7 @@ }, { "name": "userrights", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -108868,7 +108201,7 @@ }, { "name": "uservorlage", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -108918,7 +108251,7 @@ }, { "name": "uservorlagerights", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -108990,7 +108323,7 @@ }, { "name": "ustprf", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -109183,7 +108516,7 @@ }, { "name": "ustprf_protokoll", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -109277,7 +108610,7 @@ }, { "name": "verbindlichkeit", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -111059,7 +110392,7 @@ }, { "name": "verbindlichkeit_bestellungen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -111194,7 +110527,7 @@ }, { "name": "verbindlichkeit_kontierung", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -111318,7 +110651,7 @@ }, { "name": "verbindlichkeit_ocr", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -111390,7 +110723,7 @@ }, { "name": "verbindlichkeit_position", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -111646,7 +110979,7 @@ }, { "name": "verbindlichkeit_protokoll", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -111726,7 +111059,7 @@ }, { "name": "verbindlichkeit_regelmaessig", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -111941,7 +111274,7 @@ }, { "name": "verbindlichkeit_regelmaessig_beleg", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -112010,7 +111343,7 @@ }, { "name": "verkaufspreise", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -112345,7 +111678,7 @@ }, { "name": "verkaufszahlen_chart", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -112450,7 +111783,7 @@ }, { "name": "verkaufszahlen_chart_projekt", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -112520,7 +111853,7 @@ }, { "name": "verrechnungsart", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -112581,7 +111914,7 @@ }, { "name": "versand", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -113029,7 +112362,7 @@ }, { "name": "versandarten", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -113200,7 +112533,7 @@ }, { "name": "versandpakete", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -113294,7 +112627,7 @@ }, { "name": "versandzentrum_log", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -113377,7 +112710,7 @@ }, { "name": "vertreterumsatz", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -113592,7 +112925,7 @@ }, { "name": "vorlage", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -113675,7 +113008,7 @@ }, { "name": "waage_artikel", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -113791,7 +113124,7 @@ }, { "name": "waehrung_umrechnung", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -113896,7 +113229,7 @@ }, { "name": "warteschlangen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -113976,7 +113309,7 @@ }, { "name": "wawision_uebersetzung", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -114090,7 +113423,7 @@ }, { "name": "webmail", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -114162,7 +113495,7 @@ }, { "name": "webmail_mails", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -114322,7 +113655,7 @@ }, { "name": "webmail_zuordnungen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -114383,7 +113716,7 @@ }, { "name": "wiedervorlage", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -114768,7 +114101,7 @@ }, { "name": "wiedervorlage_aufgabe", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -114838,7 +114171,7 @@ }, { "name": "wiedervorlage_aufgabe_vorlage", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -114987,7 +114320,7 @@ }, { "name": "wiedervorlage_board_member", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -115037,7 +114370,7 @@ }, { "name": "wiedervorlage_freifeld_inhalt", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -115084,7 +114417,7 @@ }, { "name": "wiedervorlage_freifeld_konfiguration", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -115189,7 +114522,7 @@ }, { "name": "wiedervorlage_protokoll", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -115324,7 +114657,7 @@ }, { "name": "wiedervorlage_stages", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -115440,7 +114773,7 @@ }, { "name": "wiedervorlage_timeline", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -115578,7 +114911,7 @@ }, { "name": "wiedervorlage_view", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -115661,7 +114994,7 @@ }, { "name": "wiedervorlage_zu_aufgabe_vorlage", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -115711,7 +115044,7 @@ }, { "name": "wiki", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -115813,7 +115146,7 @@ }, { "name": "wiki_changelog", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -115915,7 +115248,7 @@ }, { "name": "wiki_faq", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -116017,7 +115350,7 @@ }, { "name": "wiki_subscription", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -116086,7 +115419,7 @@ }, { "name": "wiki_workspace", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -116177,7 +115510,7 @@ }, { "name": "wizard", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -116302,7 +115635,7 @@ }, { "name": "wizard_step", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -116449,7 +115782,7 @@ }, { "name": "zahlungsavis", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -116609,7 +115942,7 @@ }, { "name": "zahlungsavis_gutschrift", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -116659,7 +115992,7 @@ }, { "name": "zahlungsavis_mailausgang", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -116731,7 +116064,7 @@ }, { "name": "zahlungsavis_rechnung", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -116781,7 +116114,7 @@ }, { "name": "zahlungsweisen", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -116941,7 +116274,7 @@ }, { "name": "zeiterfassung", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -117364,7 +116697,7 @@ }, { "name": "zeiterfassungvorlage", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -117480,7 +116813,7 @@ }, { "name": "zertifikatgenerator", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -117750,7 +117083,7 @@ }, { "name": "zolltarifnummer", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -117811,7 +117144,7 @@ }, { "name": "zwischenlager", - "collation": "utf8mb3_general_ci", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -118028,6 +117361,11 @@ "name": "fibu_objekte", "type": "VIEW", "Create": "CREATE VIEW `fibu_objekte` AS select `rechnung`.`datum` AS `datum`,'rechnung' collate utf8mb4_general_ci AS `typ`,`rechnung`.`id` AS `id`,`rechnung`.`belegnr` AS `info` from `rechnung` where `rechnung`.`belegnr` <> '' union select `gutschrift`.`datum` AS `datum`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`belegnr` AS `belegnr` from `gutschrift` where `gutschrift`.`belegnr` <> '' union select `verbindlichkeit`.`rechnungsdatum` AS `rechnungsdatum`,'verbindlichkeit' AS `verbindlichkeit`,`verbindlichkeit`.`id` AS `id`,`verbindlichkeit`.`belegnr` AS `belegnr` from `verbindlichkeit` where `verbindlichkeit`.`belegnr` <> '' union select `kontoauszuege`.`buchung` AS `buchung`,'kontoauszuege' AS `kontoauszuege`,`kontoauszuege`.`id` AS `id`,concat(`konten`.`kurzbezeichnung`,' - ',`kontoauszuege`.`buchungstext`) AS `buchungstext` from (`kontoauszuege` left join `konten` on(`konten`.`id` = `kontoauszuege`.`konto`)) union select '' AS `Name_exp_1`,'kontorahmen' AS `'kontorahmen'`,`kontorahmen`.`id` AS `id`,`kontorahmen`.`beschriftung` AS `beschriftung` from `kontorahmen`" + }, + { + "name": "fibu_buchungen_alle", + "type": "VIEW", + "Create": "CREATE VIEW `fibu_buchungen_alle` AS select `fb`.`buchungsart` AS `buchungsart`,`fb`.`typ` AS `typ`,`fb`.`id` AS `id`,if(`fibu_objekte`.`datum` <> '' collate utf8mb4_general_ci,`fibu_objekte`.`datum`,`fb`.`datum`) AS `datum`,`fb`.`gegen_typ` collate utf8mb4_general_ci AS `doc_typ`,`fb`.`gegen_id` AS `doc_id`,`fibu_objekte`.`info` AS `doc_belegnr`,`fb`.`soll` AS `betrag`,`fb`.`waehrung` AS `waehrung`,`fb`.`edit_module` collate utf8mb4_general_ci 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` <> '' collate utf8mb4_general_ci union select 'umsatz' AS `umsatz`,'gutschrift' AS `'gutschrift'`,`gutschrift`.`id` AS `id`,-`gutschrift`.`soll` AS `- ``openxe``.``gutschrift``.``soll```,`gutschrift`.`waehrung` AS `waehrung`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`datum` AS `datum`,'gutschrift' AS `edit_module`,`gutschrift`.`id` AS `edit_id` from `gutschrift` where `gutschrift`.`belegnr` <> '' collate utf8mb4_general_ci union select 'abbuchung' AS `abbuchung`,'gutschrift' AS `rechnung`,`gutschrift`.`id` AS `id`,`gutschrift`.`soll` AS `- ``openxe``.``gutschrift``.``soll```,`gutschrift`.`waehrung` AS `waehrung`,'rechnung' AS `gutschrift`,`gutschrift`.`rechnungid` AS `rechnungid`,`gutschrift`.`datum` AS `datum`,'gutschrift' AS `edit_module`,`gutschrift`.`id` AS `edit_id` from `gutschrift` where `gutschrift`.`rechnungid` > 0 and `gutschrift`.`belegnr` <> '' collate utf8mb4_general_ci union select 'abbuchung' AS `abbuchung`,'rechnung' AS `rechnung`,`gutschrift`.`rechnungid` AS `rechnungid`,-`gutschrift`.`soll` AS `- ``openxe``.``gutschrift``.``soll```,`gutschrift`.`waehrung` AS `waehrung`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`datum` AS `datum`,'gutschrift' AS `edit_module`,`gutschrift`.`id` AS `edit_id` from `gutschrift` where `gutschrift`.`rechnungid` > 0 and `gutschrift`.`belegnr` <> '' collate utf8mb4_general_ci union select 'aufwand' AS `aufwand`,'verbindlichkeit' AS `verbindlichkeit`,`verbindlichkeit`.`id` AS `id`,-`verbindlichkeit`.`betrag` AS `- ``openxe``.``verbindlichkeit``.``betrag```,`verbindlichkeit`.`waehrung` AS `waehrung`,'verbindlichkeit' AS `verbindlichkeit`,`verbindlichkeit`.`id` AS `id`,`verbindlichkeit`.`rechnungsdatum` AS `rechnungsdatum`,'verbindlichkeit' AS `edit_module`,`verbindlichkeit`.`id` AS `edit_id` from `verbindlichkeit` where `verbindlichkeit`.`belegnr` <> '' collate utf8mb4_general_ci union select 'zahlung' AS `zahlung`,'kontoauszuege' AS `kontoauszuege`,`kontoauszuege`.`id` AS `id`,-`kontoauszuege`.`soll` AS `- ``openxe``.``kontoauszuege``.``soll```,`kontoauszuege`.`waehrung` AS `waehrung`,'kontoauszuege' AS `kontoauszuege`,`kontoauszuege`.`id` AS `id`,`kontoauszuege`.`buchung` AS `buchung`,'kontoauszuege' AS `edit_module`,`kontoauszuege`.`id` AS `edit_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 `- ``openxe``.``fibu_buchungen``.``betrag```,`fibu_buchungen`.`waehrung` AS `waehrung`,`fibu_buchungen`.`nach_typ` AS `nach_typ`,`fibu_buchungen`.`nach_id` AS `nach_id`,`fibu_buchungen`.`zeit` AS `zeit`,'fibu_buchungen' AS `edit_module`,`fibu_buchungen`.`id` AS `edit_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 `betrag`,`fibu_buchungen`.`waehrung` AS `waehrung`,`fibu_buchungen`.`von_typ` AS `von_typ`,`fibu_buchungen`.`von_id` AS `von_id`,`fibu_buchungen`.`zeit` AS `zeit`,'fibu_buchungen' AS `edit_module`,`fibu_buchungen`.`id` AS `edit_id` from `fibu_buchungen`) `fb` left join `fibu_objekte` on(`fb`.`gegen_typ` = `fibu_objekte`.`typ` and `fb`.`gegen_id` = `fibu_objekte`.`id`))" } ] -} \ No newline at end of file +} From c223e7c9561f125ff30bbcf36931d06bcc4ac35e Mon Sep 17 00:00:00 2001 From: OpenXE <> Date: Thu, 30 Mar 2023 15:21:33 +0200 Subject: [PATCH 19/61] mustal improvement view handling --- vendor/mustal/mustal_mysql_upgrade_tool.php | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/vendor/mustal/mustal_mysql_upgrade_tool.php b/vendor/mustal/mustal_mysql_upgrade_tool.php index 9894a908..85078c8f 100644 --- a/vendor/mustal/mustal_mysql_upgrade_tool.php +++ b/vendor/mustal/mustal_mysql_upgrade_tool.php @@ -79,7 +79,7 @@ function mustal_load_tables_from_db(string $host, string $schema, string $user, } // Get db_def and views - $sql = "SHOW TABLE STATUS"; + $sql = "SHOW TABLE STATUS WHERE engine IS NOT NULL"; $query_result = mysqli_query($mysqli, $sql); if (!$query_result) { return(array()); @@ -112,7 +112,7 @@ function mustal_load_tables_from_db(string $host, string $schema, string $user, } if (empty($column['Collation']) && mustal_is_string_type($column['Type'])) { - $column['Collation'] = $table['collation']."TABLE"; + $column['Collation'] = $table['collation']; } $columns[] = $column; // Add column to list of columns @@ -168,9 +168,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); @@ -761,7 +768,7 @@ function mustal_calculate_db_upgrade(array $compare_def, array $db_def, array &$ 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($string_type,$type) === 0) { + if (stripos($type,$string_type) === 0) { return(true); } } From 689fdb0490cf137ec92dd46c6bbed549300b623d Mon Sep 17 00:00:00 2001 From: OpenXE <> Date: Thu, 30 Mar 2023 19:29:46 +0200 Subject: [PATCH 20/61] Kontoauszuege konto overview and saldo --- www/lib/class.erpapi.php | 18 ++ .../content/kontoauszuege_konto_list.tpl | 29 +++ www/pages/content/kontoauszuege_list.tpl | 16 +- www/pages/kontoauszuege.php | 183 +++++++++++++++--- 4 files changed, 200 insertions(+), 46 deletions(-) create mode 100644 www/pages/content/kontoauszuege_konto_list.tpl diff --git a/www/lib/class.erpapi.php b/www/lib/class.erpapi.php index 1e9eb848..ef781c3b 100644 --- a/www/lib/class.erpapi.php +++ b/www/lib/class.erpapi.php @@ -2640,6 +2640,24 @@ public function NavigationHooks(&$menu) return "if(" . $fieldstroke . ",CONCAT(''," . $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); diff --git a/www/pages/content/kontoauszuege_konto_list.tpl b/www/pages/content/kontoauszuege_konto_list.tpl new file mode 100644 index 00000000..2516d00a --- /dev/null +++ b/www/pages/content/kontoauszuege_konto_list.tpl @@ -0,0 +1,29 @@ +
    + +
    +
    + [MESSAGE] + Salden müssen über Gegenbuchungen ausgeglichen werden. +
    +
    +
    {|Filter|}
    +
      + [STATUSFILTER] +
    • + + +
    • +
    +
    +
    + [TAB1] +
    +
    +
    + + diff --git a/www/pages/content/kontoauszuege_list.tpl b/www/pages/content/kontoauszuege_list.tpl index dee9f3b1..5a9b28d2 100644 --- a/www/pages/content/kontoauszuege_list.tpl +++ b/www/pages/content/kontoauszuege_list.tpl @@ -5,21 +5,7 @@
    [MESSAGE] -
    -
    -
    {|Filter|}
    -
      - [STATUSFILTER] -
    • - - -
    • -
    -
    -
    + [INFO] [TAB1]
    diff --git a/www/pages/kontoauszuege.php b/www/pages/kontoauszuege.php index 863c6dd0..1413fc0b 100644 --- a/www/pages/kontoauszuege.php +++ b/www/pages/kontoauszuege.php @@ -14,7 +14,8 @@ class Kontoauszuege { return; $this->app->ActionHandlerInit($this); - $this->app->ActionHandler("list", "kontoauszuege_list"); + $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"); @@ -26,46 +27,111 @@ class Kontoauszuege { /* Fill out manually later */ } - static function TableSearch(&$app, $name, $erlaubtevars) { + function TableSearch(&$app, $name, $erlaubtevars) { switch ($name) { + case "kontoauszuege_konto_list": + + $allowed['konten_list'] = array('list'); + $heading = array('Bezeichnung', 'Kurzbezeichnung', 'Typ', 'Kontostand', 'Saldo','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.bezeichnung', 'k.kurzbezeichnung', 'k.type', 'k.kontostand','saldo', '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 ( + ' 'k.id'], + '">', + ['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))',2)." AS kontostand, + ".$this->app->erp->ConcatSQL($saldolink)." AS saldo, + k.id + FROM + konten k + LEFT JOIN kontoauszuege ka ON + k.id = ka.konto + LEFT JOIN fibu_buchungen_alle fb ON + fb.id = ka.id AND fb.typ = 'kontoauszuege'"; + + $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'); - $heading = array('','', 'Importdatum', 'Konto', 'Datum', 'Betrag', 'Waehrung', 'Buchungstext','Interne Bemerkung', 'Menü'); - $width = array('1%','1%', '1%', '10%', '1%', '1%', '1%', '20%', '20%', '1%'); // Fill out manually later + + $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); - $findcols = array('k.id','k.id','k.konto', 'k.importdatum', 'k.buchung', 'k.soll', 'k.waehrung', 'k.buchungstext','k.internebemerkung'); - $searchsql = array('k.konto', 'k.buchung', 'k.soll', 'k.buchungstext','k.internebemerkung'); + $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 SQL_CALC_FOUND_ROWS k.id, - $dropnbox, - ".$app->erp->FormatDateTimeShort('k.importdatum').", - (SELECT kurzbezeichnung FROM konten WHERE konten.id = k.konto), - ".$app->erp->FormatDate('k.buchung').", - IF( - k.importfehler, - CONCAT( - '', - ".$app->erp->FormatMenge('k.soll',2).", - '' - ), - ".$app->erp->FormatMenge('k.soll',2)."), - k.waehrung, - k.buchungstext, - k.internebemerkung, - k.id - FROM kontoauszuege k"; - - $where = "1"; + $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 ); } );"); @@ -91,15 +157,49 @@ class Kontoauszuege { $more_data1 = $app->Secure->GetGET("more_data1"); if ($more_data1 == 1) { - $where .= ""; + $subwhere .= ""; } else { - $where .= " AND k.importfehler IS NULL "; + $subwhere .= " AND k.importfehler IS NULL "; } // END Toggle filters - $count = "SELECT count(DISTINCT id) FROM kontoauszuege k WHERE $where"; + $sql = "SELECT SQL_CALC_FOUND_ROWS * FROM ( SELECT + k.id, + $dropnbox, + ".$app->erp->FormatDateTimeShort('k.importdatum').", + (SELECT kurzbezeichnung FROM konten WHERE konten.id = k.konto), + ".$app->erp->FormatDate('k.buchung').", + IF( + k.importfehler, + CONCAT( + '', + ".$app->erp->FormatMenge('SUM(k.soll)',2).", + '' + ), + ".$app->erp->FormatMenge('SUM(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; } @@ -113,6 +213,18 @@ class Kontoauszuege { 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_list() { // Process multi action @@ -139,6 +251,15 @@ class Kontoauszuege { $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"); } From 2b573268fa2c98bdffabfa48dd6bf94c0c887e18 Mon Sep 17 00:00:00 2001 From: OpenXE <> Date: Sat, 1 Apr 2023 20:42:37 +0200 Subject: [PATCH 21/61] fibu buchungen --- phpwf/plugins/class.yui.php | 5 +- upgrade/data/db_schema.json | 4 +- www/pages/ajax.php | 14 + www/pages/content/fibu_buchungen_list.tpl | 9 +- www/pages/content/fibu_buchungen_zuordnen.tpl | 34 +++ www/pages/content/kontoauszuege_list.tpl | 3 +- www/pages/fibu_buchungen.php | 244 +++++++++++++++--- www/pages/gutschrift.php | 2 +- www/pages/kontoauszuege.php | 60 ++++- www/pages/rechnung.php | 12 +- www/widgets/templates/_gen/gutschrift.tpl | 2 +- www/widgets/templates/_gen/rechnung.tpl | 2 +- 12 files changed, 341 insertions(+), 50 deletions(-) create mode 100644 www/pages/content/fibu_buchungen_zuordnen.tpl diff --git a/phpwf/plugins/class.yui.php b/phpwf/plugins/class.yui.php index afdc3318..41ba736e 100644 --- a/phpwf/plugins/class.yui.php +++ b/phpwf/plugins/class.yui.php @@ -6139,7 +6139,10 @@ r.land as land, p.abkuerzung as projekt, r.zahlungsweise as zahlungsweise, 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, r.soll-r.ist as differenz, re.belegnr as rechnung, UPPER(r.status) as status, + ".$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 diff --git a/upgrade/data/db_schema.json b/upgrade/data/db_schema.json index 6294a233..9423364a 100644 --- a/upgrade/data/db_schema.json +++ b/upgrade/data/db_schema.json @@ -117360,12 +117360,12 @@ { "name": "fibu_objekte", "type": "VIEW", - "Create": "CREATE VIEW `fibu_objekte` AS select `rechnung`.`datum` AS `datum`,'rechnung' collate utf8mb4_general_ci AS `typ`,`rechnung`.`id` AS `id`,`rechnung`.`belegnr` AS `info` from `rechnung` where `rechnung`.`belegnr` <> '' union select `gutschrift`.`datum` AS `datum`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`belegnr` AS `belegnr` from `gutschrift` where `gutschrift`.`belegnr` <> '' union select `verbindlichkeit`.`rechnungsdatum` AS `rechnungsdatum`,'verbindlichkeit' AS `verbindlichkeit`,`verbindlichkeit`.`id` AS `id`,`verbindlichkeit`.`belegnr` AS `belegnr` from `verbindlichkeit` where `verbindlichkeit`.`belegnr` <> '' union select `kontoauszuege`.`buchung` AS `buchung`,'kontoauszuege' AS `kontoauszuege`,`kontoauszuege`.`id` AS `id`,concat(`konten`.`kurzbezeichnung`,' - ',`kontoauszuege`.`buchungstext`) AS `buchungstext` from (`kontoauszuege` left join `konten` on(`konten`.`id` = `kontoauszuege`.`konto`)) union select '' AS `Name_exp_1`,'kontorahmen' AS `'kontorahmen'`,`kontorahmen`.`id` AS `id`,`kontorahmen`.`beschriftung` AS `beschriftung` from `kontorahmen`" + "Create": "CREATE VIEW `fibu_objekte` AS select `auftrag`.`datum` AS `datum`,'auftrag' collate utf8mb4_general_ci AS `typ`,`auftrag`.`id` AS `id`,`auftrag`.`belegnr` AS `info` from `auftrag` where `auftrag`.`belegnr` <> '' union select `rechnung`.`datum` AS `datum`,'rechnung' collate utf8mb4_general_ci AS `typ`,`rechnung`.`id` AS `id`,`rechnung`.`belegnr` AS `info` from `rechnung` where `rechnung`.`belegnr` <> '' union select `gutschrift`.`datum` AS `datum`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`belegnr` AS `belegnr` from `gutschrift` where `gutschrift`.`belegnr` <> '' union select `verbindlichkeit`.`rechnungsdatum` AS `rechnungsdatum`,'verbindlichkeit' AS `verbindlichkeit`,`verbindlichkeit`.`id` AS `id`,`verbindlichkeit`.`belegnr` AS `belegnr` from `verbindlichkeit` where `verbindlichkeit`.`belegnr` <> '' union select `kontoauszuege`.`buchung` AS `buchung`,'kontoauszuege' AS `kontoauszuege`,`kontoauszuege`.`id` AS `id`,concat(`konten`.`kurzbezeichnung`,' - ',`kontoauszuege`.`buchungstext`) AS `buchungstext` from (`kontoauszuege` left join `konten` on(`konten`.`id` = `kontoauszuege`.`konto`)) union select '' AS `datum`,'kontorahmen' AS `'kontorahmen'`,`kontorahmen`.`id` AS `id`,`kontorahmen`.`beschriftung` AS `beschriftung` from `kontorahmen`" }, { "name": "fibu_buchungen_alle", "type": "VIEW", - "Create": "CREATE VIEW `fibu_buchungen_alle` AS select `fb`.`buchungsart` AS `buchungsart`,`fb`.`typ` AS `typ`,`fb`.`id` AS `id`,if(`fibu_objekte`.`datum` <> '' collate utf8mb4_general_ci,`fibu_objekte`.`datum`,`fb`.`datum`) AS `datum`,`fb`.`gegen_typ` collate utf8mb4_general_ci AS `doc_typ`,`fb`.`gegen_id` AS `doc_id`,`fibu_objekte`.`info` AS `doc_belegnr`,`fb`.`soll` AS `betrag`,`fb`.`waehrung` AS `waehrung`,`fb`.`edit_module` collate utf8mb4_general_ci 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` <> '' collate utf8mb4_general_ci union select 'umsatz' AS `umsatz`,'gutschrift' AS `'gutschrift'`,`gutschrift`.`id` AS `id`,-`gutschrift`.`soll` AS `- ``openxe``.``gutschrift``.``soll```,`gutschrift`.`waehrung` AS `waehrung`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`datum` AS `datum`,'gutschrift' AS `edit_module`,`gutschrift`.`id` AS `edit_id` from `gutschrift` where `gutschrift`.`belegnr` <> '' collate utf8mb4_general_ci union select 'abbuchung' AS `abbuchung`,'gutschrift' AS `rechnung`,`gutschrift`.`id` AS `id`,`gutschrift`.`soll` AS `- ``openxe``.``gutschrift``.``soll```,`gutschrift`.`waehrung` AS `waehrung`,'rechnung' AS `gutschrift`,`gutschrift`.`rechnungid` AS `rechnungid`,`gutschrift`.`datum` AS `datum`,'gutschrift' AS `edit_module`,`gutschrift`.`id` AS `edit_id` from `gutschrift` where `gutschrift`.`rechnungid` > 0 and `gutschrift`.`belegnr` <> '' collate utf8mb4_general_ci union select 'abbuchung' AS `abbuchung`,'rechnung' AS `rechnung`,`gutschrift`.`rechnungid` AS `rechnungid`,-`gutschrift`.`soll` AS `- ``openxe``.``gutschrift``.``soll```,`gutschrift`.`waehrung` AS `waehrung`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`datum` AS `datum`,'gutschrift' AS `edit_module`,`gutschrift`.`id` AS `edit_id` from `gutschrift` where `gutschrift`.`rechnungid` > 0 and `gutschrift`.`belegnr` <> '' collate utf8mb4_general_ci union select 'aufwand' AS `aufwand`,'verbindlichkeit' AS `verbindlichkeit`,`verbindlichkeit`.`id` AS `id`,-`verbindlichkeit`.`betrag` AS `- ``openxe``.``verbindlichkeit``.``betrag```,`verbindlichkeit`.`waehrung` AS `waehrung`,'verbindlichkeit' AS `verbindlichkeit`,`verbindlichkeit`.`id` AS `id`,`verbindlichkeit`.`rechnungsdatum` AS `rechnungsdatum`,'verbindlichkeit' AS `edit_module`,`verbindlichkeit`.`id` AS `edit_id` from `verbindlichkeit` where `verbindlichkeit`.`belegnr` <> '' collate utf8mb4_general_ci union select 'zahlung' AS `zahlung`,'kontoauszuege' AS `kontoauszuege`,`kontoauszuege`.`id` AS `id`,-`kontoauszuege`.`soll` AS `- ``openxe``.``kontoauszuege``.``soll```,`kontoauszuege`.`waehrung` AS `waehrung`,'kontoauszuege' AS `kontoauszuege`,`kontoauszuege`.`id` AS `id`,`kontoauszuege`.`buchung` AS `buchung`,'kontoauszuege' AS `edit_module`,`kontoauszuege`.`id` AS `edit_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 `- ``openxe``.``fibu_buchungen``.``betrag```,`fibu_buchungen`.`waehrung` AS `waehrung`,`fibu_buchungen`.`nach_typ` AS `nach_typ`,`fibu_buchungen`.`nach_id` AS `nach_id`,`fibu_buchungen`.`zeit` AS `zeit`,'fibu_buchungen' AS `edit_module`,`fibu_buchungen`.`id` AS `edit_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 `betrag`,`fibu_buchungen`.`waehrung` AS `waehrung`,`fibu_buchungen`.`von_typ` AS `von_typ`,`fibu_buchungen`.`von_id` AS `von_id`,`fibu_buchungen`.`zeit` AS `zeit`,'fibu_buchungen' AS `edit_module`,`fibu_buchungen`.`id` AS `edit_id` from `fibu_buchungen`) `fb` left join `fibu_objekte` on(`fb`.`gegen_typ` = `fibu_objekte`.`typ` and `fb`.`gegen_id` = `fibu_objekte`.`id`))" + "Create": "CREATE VIEW `fibu_buchungen_alle` AS select `fb`.`buchungsart` AS `buchungsart`,`fb`.`typ` AS `typ`,`fb`.`id` AS `id`,if(`fibu_objekte`.`datum` <> '' collate utf8mb4_general_ci,`fibu_objekte`.`datum`,`fb`.`datum`) AS `datum`,`fb`.`gegen_typ` collate utf8mb4_general_ci AS `doc_typ`,`fb`.`gegen_id` AS `doc_id`,`fibu_objekte`.`info` AS `doc_belegnr`,`fb`.`soll` AS `betrag`,`fb`.`waehrung` AS `waehrung`,`fb`.`edit_module` collate utf8mb4_general_ci 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` <> '' collate utf8mb4_general_ci 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` <> '' collate utf8mb4_general_ci union select 'abbuchung' AS `abbuchung`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,-`gutschrift`.`soll` AS `-``openxe``.``gutschrift``.``soll```,`gutschrift`.`waehrung` AS `waehrung`,'rechnung' AS `rechnung`,`gutschrift`.`rechnungid` AS `rechnungid`,`gutschrift`.`datum` AS `datum`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id` from `gutschrift` where `gutschrift`.`rechnungid` > 0 and `gutschrift`.`belegnr` <> '' collate utf8mb4_general_ci union select 'abbuchung' AS `abbuchung`,'rechnung' AS `rechnung`,`gutschrift`.`rechnungid` AS `rechnungid`,`gutschrift`.`soll` AS `soll`,`gutschrift`.`waehrung` AS `waehrung`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`datum` AS `datum`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id` from `gutschrift` where `gutschrift`.`rechnungid` > 0 and `gutschrift`.`belegnr` <> '' collate utf8mb4_general_ci 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` <> '' collate utf8mb4_general_ci 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`.`zeit` AS `zeit`,'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`.`zeit` AS `zeit`,'fibu_buchungen' AS `fibu_buchungen`,`fibu_buchungen`.`id` AS `id` from `fibu_buchungen`) `fb` left join `fibu_objekte` on(`fb`.`gegen_typ` = `fibu_objekte`.`typ` and `fb`.`gegen_id` = `fibu_objekte`.`id`))" } ] } 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/content/fibu_buchungen_list.tpl b/www/pages/content/fibu_buchungen_list.tpl index 394c103a..5432fc4e 100644 --- a/www/pages/content/fibu_buchungen_list.tpl +++ b/www/pages/content/fibu_buchungen_list.tpl @@ -1,10 +1,17 @@
    + Salden müssen über Gegenbuchungen ausgeglichen werden. [MESSAGE] [TAB1] [TAB1NEXT]
    +
    + [MESSAGE] + [TAB2] + [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..0d3a577f --- /dev/null +++ b/www/pages/content/fibu_buchungen_zuordnen.tpl @@ -0,0 +1,34 @@ +
    +
      +
    • +
    +
    + [MESSAGE] + + [FORMHANDLEREVENT] +
    +
    +
    +
    +
    + {|Offene Einzelsalden|} + [TAB1] +
    +
    +
    +
    +
    +
    + + {|Aktionen|} + +
    +
    +
    +
    +
    +
    + +
    +
    + diff --git a/www/pages/content/kontoauszuege_list.tpl b/www/pages/content/kontoauszuege_list.tpl index 5a9b28d2..2a35563f 100644 --- a/www/pages/content/kontoauszuege_list.tpl +++ b/www/pages/content/kontoauszuege_list.tpl @@ -11,7 +11,8 @@ Stapelverarbeitung - + +
     alle markieren  alle markieren 
    diff --git a/www/pages/fibu_buchungen.php b/www/pages/fibu_buchungen.php index 19fff834..cfede1a8 100644 --- a/www/pages/fibu_buchungen.php +++ b/www/pages/fibu_buchungen.php @@ -19,6 +19,7 @@ class Fibu_buchungen { $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->DefaultActionHandler("list"); $this->app->ActionHandlerListen($app); @@ -30,32 +31,7 @@ class Fibu_buchungen { } function TableSearch(&$app, $name, $erlaubtevars) { - switch ($name) { - case "fibu_buchungen_list_tabelle": - $allowed['fibu_buchungen_list'] = array('list'); - $heading = array('','','Von_typ', 'Von_id', 'Nach_typ', 'Nach_id', 'Betrag', 'Waehrung', 'Benutzer', 'Zeit', 'Internebemerkung', '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('f.id','f.id','f.von_typ', 'f.von_id', 'f.nach_typ', 'f.nach_id', 'f.betrag', 'f.waehrung', 'f.benutzer', 'f.zeit', 'f.internebemerkung'); - $searchsql = array('f.von_typ', 'f.von_id', 'f.nach_typ', 'f.nach_id', 'f.betrag', 'f.waehrung', 'f.benutzer', 'f.zeit', 'f.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 SQL_CALC_FOUND_ROWS f.id, $dropnbox, f.von_typ, f.von_id, f.nach_typ, f.nach_id, f.betrag, f.waehrung, f.benutzer, f.zeit, f.internebemerkung, f.id FROM fibu_buchungen f"; - - $where = "1"; - $count = "SELECT count(DISTINCT id) FROM fibu_buchungen WHERE $where"; -// $groupby = ""; - - break; + switch ($name) { case "fibu_buchungen_list": $allowed['fibu_buchungen_list'] = array('list'); @@ -101,6 +77,69 @@ class Fibu_buchungen { // $groupby = ""; break; + case "fibu_buchungen_salden": + $allowed['fibu_buchungen_salden'] = array('list'); + $heading = array( '', 'Typ','Anzahl', 'Saldo', 'Menü'); + $width = array( '1%', '96%', '1%', '1%', '1%'); + + $findcols = array('','','typ','anzahl','saldo'); + $searchsql = array(); + + $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) 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', 'Beleg', 'Von','Nach', 'Menü'); @@ -154,9 +193,7 @@ class Fibu_buchungen { 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"); - - $this->app->erp->MenuEintrag("index.php", "Zurück"); +// $this->app->erp->MenuEintrag("index.php?module=fibu_buchungen&action=create", "Neu anlegen"); // For transfer to tablesearch $doc_typ = $this->app->Secure->GetGET('doc_typ'); @@ -165,7 +202,9 @@ class Fibu_buchungen { $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_list', "show", "", "", basename(__FILE__), __CLASS__); + $this->app->YUI->TableSearch('TAB1', 'fibu_buchungen_salden', "show", "", "", basename(__FILE__), __CLASS__); + $this->app->YUI->TableSearch('TAB2', 'fibu_buchungen_list', "show", "", "", basename(__FILE__), __CLASS__); + $this->app->Tpl->Parse('PAGE', "fibu_buchungen_list.tpl"); } @@ -369,4 +408,149 @@ class Fibu_buchungen { } + function fibu_buchungen_zuordnen() { + + $this->app->erp->MenuEintrag("index.php?module=fibu_buchungen&action=list", "Übersicht"); + + $submit = $this->app->Secure->GetPOST('ausfuehren'); + $count_success = 0; + if ($submit == 'BUCHEN') { + + // Process multi action + $von_typen = $this->app->Secure->GetPOST('fibu_typ'); + $von_ids = $this->app->Secure->GetPOST('fibu_id'); + $betraege = $this->app->Secure->GetPOST('fibu_betrag'); + $waehrungen = $this->app->Secure->GetPOST('fibu_waehrung'); + $objekte = $this->app->Secure->GetPOST('fibu_objekt'); + + if(!empty($von_ids)) { + $count = -1; + foreach ($von_ids as $von_id) { + $count++; + if ($von_id > 0) { + $von_typ = $von_typen[$count]; + $objekt = $objekte[$count]; + $objekt = explode('-',$objekt); + $doc_typ = strtolower($objekt[0]); + $doc_id = (int) $objekt[1]; + $betrag = $betraege[$count]; + $betrag = (float) $this->app->erp->ReplaceBetrag(true,$betrag); + $waehrung = $waehrungen[$count]; + if (empty($von_typ) || empty($doc_typ) || empty($doc_id) || empty($betrag) || empty($waehrung)) { + continue; + } + $sql = "INSERT INTO `fibu_buchungen` (`von_typ`, `von_id`, `nach_typ`, `nach_id`, `betrag`, `waehrung`, `benutzer`, `zeit`, `internebemerkung`) VALUES ('".$von_typ."','".$von_id."','".$doc_typ."', '".$doc_id."', '".-$betrag."', '".$waehrung."', '".$this->app->User->GetID()."','". $input['zeit'] = date("Y-m-d H:i")."', '')"; + + $this->app->DB->Insert($sql); + + $count_success++; + } + } + } + $msg .= "
    ".$count_success." Buchung".(($count_success===1)?'':'en')." durchgeführt.
    "; + } + + $typ = $this->app->Secure->GetGET('typ'); + + $objektlink = array ( + ' 'fb.typ'], + '&id=', + ['sql' => 'fb.id'], + '">', + ['sql' => 'fo.info'], + '' + ); + + $sql = "SELECT + salden.typ, + salden.id, + salden.info, + salden.saldo, + salden.objektlink, + salden.saldonum, + salden.waehrung + FROM + ( + SELECT + 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 <> 'kontorahmen' AND (fb.typ = '".$typ."' OR '".$typ."' = '') + GROUP BY + fb.typ, + fb.id, + fb.waehrung + ) salden + WHERE + salden.saldonum <> 0 + LIMIT 100 + "; + +// echo($sql); + + $items = $this->app->DB->SelectArr($sql); + + //print_r($items); + + $et = new EasyTable($this->app); + + $et->headings = array('Typ','Info','Betrag','Buchbetrag','Zuordnung'); + + foreach ($items as $item) { + + $checked = empty($item['doc_typ'])?'':'checked'; + + if (empty($item['doc_id'])) { + $object_identifier = ''; + } else { + $object_identifier = ucfirst($item['doc_typ'])."-".$item['doc_id']."-".$item['doc_belegnr']; + } + + $input_id = 'fibu_object_select_'.$item['id']; + $object_select = ''; + + if ($item['saldonum'] < 0) { + $min = $item['saldo']; + $max = '0'; + } else { + $max = $item['saldo']; + $min = '0'; + } + + $row = array( + ucfirst($item['typ']), + $item['objektlink'], + $item['saldo'], + ''.$item['waehrung'], + $object_select, + '', + '', + '' + ); + $et->AddRow($row); + + $this->app->YUI->Autocomplete($input_id,'fibu_objekte'); + + } + + $et->DisplayNew('TAB1',"Gegenbuchung","noAction"); + $this->app->Tpl->Set('MESSAGE', $msg); + $this->app->Tpl->Parse('PAGE', "fibu_buchungen_zuordnen.tpl"); + } + } diff --git a/www/pages/gutschrift.php b/www/pages/gutschrift.php index 712d153d..0ca5986b 100644 --- a/www/pages/gutschrift.php +++ b/www/pages/gutschrift.php @@ -1392,7 +1392,7 @@ class Gutschrift extends GenGutschrift if (!empty($saldo)) { if ($saldo['waehrung'] == $openid['waehrung']) { - $sql = "UPDATE gutschrift SET ist = '".$saldo['betrag']."'+soll WHERE id=".$openid['id']; + $sql = "UPDATE gutschrift SET ist = soll-'".$saldo['betrag']."' WHERE id=".$openid['id']; $result = $this->app->DB->Update($sql); } } diff --git a/www/pages/kontoauszuege.php b/www/pages/kontoauszuege.php index 1413fc0b..dd05a2ed 100644 --- a/www/pages/kontoauszuege.php +++ b/www/pages/kontoauszuege.php @@ -15,7 +15,7 @@ class Kontoauszuege { $this->app->ActionHandlerInit($this); $this->app->ActionHandler("list", "kontoauszuege_konto_list"); - $this->app->ActionHandler("listentries", "kontoauszuege_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"); @@ -51,8 +51,7 @@ class Kontoauszuege { $menu = "
    " . "Conf->WFconf['defaulttheme']}/images/edit.svg\" border=\"0\">
    "; $saldolink = array ( - ' 'k.id'], + '', ['sql' => $this->app->erp->FormatMenge('SUM(COALESCE(fb.betrag,0))',2)], '' @@ -198,6 +197,48 @@ class Kontoauszuege { // $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; @@ -262,14 +303,21 @@ class Kontoauszuege { $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'); - $this->app->DB->Delete("UPDATE `kontoauszuege` SET importfehler = 1 WHERE `id` = '{$id}'"); - $this->app->Tpl->Set('MESSAGE', "
    Der Eintrag wurde als Importfehler markiert.
    "); - + $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)) { + $this->app->Tpl->Set('MESSAGE', "
    Es existieren Buchungen, Eintrag wurde nicht als Importfehler markiert!
    "); + } else { + $this->app->DB->Delete("UPDATE `kontoauszuege` SET importfehler = 1 WHERE `id` = '{$id}'"); + $this->app->Tpl->Set('MESSAGE', "
    Der Eintrag wurde als Importfehler markiert.
    "); + } $this->kontoauszuege_list(); } diff --git a/www/pages/rechnung.php b/www/pages/rechnung.php index 50244957..c68ae2ed 100644 --- a/www/pages/rechnung.php +++ b/www/pages/rechnung.php @@ -277,7 +277,7 @@ class Rechnung extends GenRechnung */ public function removeManualPayed($invoiceId) { - if(empty($invoiceId) || !$this->app->DB->Select(sprintf('SELECT id FROM rechnung WHERE id = %d', $invoiceId))) { +/* if(empty($invoiceId) || !$this->app->DB->Select(sprintf('SELECT id FROM rechnung WHERE id = %d', $invoiceId))) { return false; } $this->app->erp->RechnungProtokoll($invoiceId,'Rechnung manuell als bezahlt entfernt'); @@ -288,7 +288,7 @@ class Rechnung extends GenRechnung WHERE id='$invoiceId'" ); - return true; + return true;*/ } public function RechnungManuellBezahltEntfernen() @@ -2078,9 +2078,9 @@ class Rechnung extends GenRechnung } } else { - $this->app->DB->Update("UPDATE rechnung SET ist = null"); + $this->app->DB->Update("UPDATE rechnung SET ist = null WHERE id=".$openid['id']); } - } + } if($this->app->Secure->GetPOST('ausfuehren') && $this->app->erp->RechteVorhanden('rechnung', 'edit')) { @@ -2102,10 +2102,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( diff --git a/www/widgets/templates/_gen/gutschrift.tpl b/www/widgets/templates/_gen/gutschrift.tpl index 2fc7aee2..0663d801 100644 --- a/www/widgets/templates/_gen/gutschrift.tpl +++ b/www/widgets/templates/_gen/gutschrift.tpl @@ -94,7 +94,7 @@
    - {|OFFEN|}: + {|FEHLT|}: [ISTDB] diff --git a/www/widgets/templates/_gen/rechnung.tpl b/www/widgets/templates/_gen/rechnung.tpl index bc29928d..d6ec54ff 100644 --- a/www/widgets/templates/_gen/rechnung.tpl +++ b/www/widgets/templates/_gen/rechnung.tpl @@ -125,7 +125,7 @@
    - {|OFFEN|}: + {|FEHLT|}: [ISTDB] From d97f41e293da10bf19be611daf7a519e26fd280f Mon Sep 17 00:00:00 2001 From: OpenXE <> Date: Sun, 2 Apr 2023 10:23:07 +0200 Subject: [PATCH 22/61] db_schema adjustments mainly utf8mb3 --- upgrade/data/db_schema.json | 9989 ++++++++++++++++++----------------- 1 file changed, 4995 insertions(+), 4994 deletions(-) diff --git a/upgrade/data/db_schema.json b/upgrade/data/db_schema.json index 8ba15a42..6ae8dd0c 100644 --- a/upgrade/data/db_schema.json +++ b/upgrade/data/db_schema.json @@ -5,7 +5,7 @@ "tables": [ { "name": "abrechnungsartikel", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -44,7 +44,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -55,7 +55,7 @@ { "Field": "nummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -88,7 +88,7 @@ { "Field": "steuerklasse", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -99,7 +99,7 @@ { "Field": "rabatt", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -220,7 +220,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -231,7 +231,7 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -253,7 +253,7 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -264,7 +264,7 @@ { "Field": "dokument", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -275,7 +275,7 @@ { "Field": "preisart", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -330,7 +330,7 @@ { "Field": "waehrung", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -383,7 +383,7 @@ }, { "name": "abrechnungsartikel_gruppe", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -400,7 +400,7 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -411,7 +411,7 @@ { "Field": "beschreibung2", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -433,7 +433,7 @@ { "Field": "ansprechpartner", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -532,7 +532,7 @@ }, { "name": "abschlagsrechnung_rechnung", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -571,7 +571,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -609,7 +609,7 @@ }, { "name": "accordion", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -626,7 +626,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -637,7 +637,7 @@ { "Field": "target", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -670,7 +670,7 @@ }, { "name": "adapterbox", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -687,7 +687,7 @@ { "Field": "bezeichnung", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -698,7 +698,7 @@ { "Field": "verwendenals", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -709,7 +709,7 @@ { "Field": "baudrate", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -720,7 +720,7 @@ { "Field": "model", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -731,7 +731,7 @@ { "Field": "seriennummer", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -742,7 +742,7 @@ { "Field": "ipadresse", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -753,7 +753,7 @@ { "Field": "netmask", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -764,7 +764,7 @@ { "Field": "gateway", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -775,7 +775,7 @@ { "Field": "dns", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -808,7 +808,7 @@ { "Field": "ssid", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -819,7 +819,7 @@ { "Field": "passphrase", "Type": "varchar(256)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -841,7 +841,7 @@ { "Field": "tmpip", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -863,7 +863,7 @@ }, { "name": "adapterbox_log", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -880,7 +880,7 @@ { "Field": "ip", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -891,7 +891,7 @@ { "Field": "meldung", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -902,7 +902,7 @@ { "Field": "seriennummer", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -913,7 +913,7 @@ { "Field": "device", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -946,7 +946,7 @@ }, { "name": "adapterbox_request_log", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -963,7 +963,7 @@ { "Field": "auth", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -974,7 +974,7 @@ { "Field": "validpass", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -985,7 +985,7 @@ { "Field": "device", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -996,7 +996,7 @@ { "Field": "digets", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -1007,7 +1007,7 @@ { "Field": "ip", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -1051,7 +1051,7 @@ }, { "name": "adresse", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -1068,7 +1068,7 @@ { "Field": "typ", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -1079,7 +1079,7 @@ { "Field": "marketingsperre", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -1112,7 +1112,7 @@ { "Field": "sprache", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -1123,7 +1123,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -1134,7 +1134,7 @@ { "Field": "abteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -1145,7 +1145,7 @@ { "Field": "unterabteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -1156,7 +1156,7 @@ { "Field": "ansprechpartner", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -1167,7 +1167,7 @@ { "Field": "land", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -1178,7 +1178,7 @@ { "Field": "strasse", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -1189,7 +1189,7 @@ { "Field": "ort", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -1200,7 +1200,7 @@ { "Field": "plz", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -1211,7 +1211,7 @@ { "Field": "telefon", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -1222,7 +1222,7 @@ { "Field": "telefax", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -1233,7 +1233,7 @@ { "Field": "mobil", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -1244,7 +1244,7 @@ { "Field": "email", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -1255,7 +1255,7 @@ { "Field": "ustid", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -1288,7 +1288,7 @@ { "Field": "sonstiges", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -1299,7 +1299,7 @@ { "Field": "adresszusatz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -1321,7 +1321,7 @@ { "Field": "steuer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -1343,7 +1343,7 @@ { "Field": "kundennummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -1354,7 +1354,7 @@ { "Field": "lieferantennummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -1365,7 +1365,7 @@ { "Field": "mitarbeiternummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -1376,7 +1376,7 @@ { "Field": "konto", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -1387,7 +1387,7 @@ { "Field": "blz", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -1398,7 +1398,7 @@ { "Field": "bank", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -1409,7 +1409,7 @@ { "Field": "inhaber", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -1420,7 +1420,7 @@ { "Field": "swift", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -1431,7 +1431,7 @@ { "Field": "iban", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -1442,7 +1442,7 @@ { "Field": "waehrung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -1453,7 +1453,7 @@ { "Field": "paypal", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -1464,7 +1464,7 @@ { "Field": "paypalinhaber", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -1475,7 +1475,7 @@ { "Field": "paypalwaehrung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -1508,7 +1508,7 @@ { "Field": "zahlungsweise", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -1519,7 +1519,7 @@ { "Field": "zahlungszieltage", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -1530,7 +1530,7 @@ { "Field": "zahlungszieltageskonto", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -1541,7 +1541,7 @@ { "Field": "zahlungszielskonto", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -1552,7 +1552,7 @@ { "Field": "versandart", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -1563,7 +1563,7 @@ { "Field": "kundennummerlieferant", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -1574,7 +1574,7 @@ { "Field": "zahlungsweiselieferant", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -1585,7 +1585,7 @@ { "Field": "zahlungszieltagelieferant", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -1596,7 +1596,7 @@ { "Field": "zahlungszieltageskontolieferant", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -1607,7 +1607,7 @@ { "Field": "zahlungszielskontolieferant", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -1618,7 +1618,7 @@ { "Field": "versandartlieferant", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -1651,7 +1651,7 @@ { "Field": "webid", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -1662,7 +1662,7 @@ { "Field": "vorname", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -1673,7 +1673,7 @@ { "Field": "kennung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -1684,7 +1684,7 @@ { "Field": "sachkonto", "Type": "varchar(20)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -1695,7 +1695,7 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -1706,7 +1706,7 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -1717,7 +1717,7 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -1728,7 +1728,7 @@ { "Field": "filiale", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -1761,7 +1761,7 @@ { "Field": "verbandsnummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -1772,7 +1772,7 @@ { "Field": "abweichendeemailab", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -1805,7 +1805,7 @@ { "Field": "infoauftragserfassung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -1816,7 +1816,7 @@ { "Field": "mandatsreferenz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -1849,7 +1849,7 @@ { "Field": "glaeubigeridentnr", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -1992,7 +1992,7 @@ { "Field": "rechnung_vorname", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -2003,7 +2003,7 @@ { "Field": "rechnung_name", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -2014,7 +2014,7 @@ { "Field": "rechnung_titel", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -2025,7 +2025,7 @@ { "Field": "rechnung_typ", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -2036,7 +2036,7 @@ { "Field": "rechnung_strasse", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -2047,7 +2047,7 @@ { "Field": "rechnung_ort", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -2058,7 +2058,7 @@ { "Field": "rechnung_plz", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -2069,7 +2069,7 @@ { "Field": "rechnung_ansprechpartner", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -2080,7 +2080,7 @@ { "Field": "rechnung_land", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -2091,7 +2091,7 @@ { "Field": "rechnung_abteilung", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -2102,7 +2102,7 @@ { "Field": "rechnung_unterabteilung", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -2113,7 +2113,7 @@ { "Field": "rechnung_adresszusatz", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -2124,7 +2124,7 @@ { "Field": "rechnung_telefon", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -2135,7 +2135,7 @@ { "Field": "rechnung_telefax", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -2146,7 +2146,7 @@ { "Field": "rechnung_anschreiben", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -2157,7 +2157,7 @@ { "Field": "rechnung_email", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -2201,7 +2201,7 @@ { "Field": "liefersperregrund", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -2212,7 +2212,7 @@ { "Field": "mlmpositionierung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -2223,7 +2223,7 @@ { "Field": "steuernummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -2256,7 +2256,7 @@ { "Field": "mlmabrechnung", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -2267,7 +2267,7 @@ { "Field": "mlmwaehrungauszahlung", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -2311,7 +2311,7 @@ { "Field": "logfile", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -2388,7 +2388,7 @@ { "Field": "rabattinformation", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -2454,7 +2454,7 @@ { "Field": "internetseite", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -2718,7 +2718,7 @@ { "Field": "titel", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -2729,7 +2729,7 @@ { "Field": "anschreiben", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -2740,7 +2740,7 @@ { "Field": "nachname", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -2773,7 +2773,7 @@ { "Field": "lieferantennummerbeikunde", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -2828,7 +2828,7 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -2839,7 +2839,7 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -2850,7 +2850,7 @@ { "Field": "freifeld6", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -2861,7 +2861,7 @@ { "Field": "freifeld7", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -2872,7 +2872,7 @@ { "Field": "freifeld8", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -2883,7 +2883,7 @@ { "Field": "freifeld9", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -2894,7 +2894,7 @@ { "Field": "freifeld10", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -2916,7 +2916,7 @@ { "Field": "angebot_cc", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -2927,7 +2927,7 @@ { "Field": "auftrag_cc", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -2938,7 +2938,7 @@ { "Field": "rechnung_cc", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -2949,7 +2949,7 @@ { "Field": "gutschrift_cc", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -2960,7 +2960,7 @@ { "Field": "lieferschein_cc", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -2971,7 +2971,7 @@ { "Field": "bestellung_cc", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -2982,7 +2982,7 @@ { "Field": "angebot_fax_cc", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -2993,7 +2993,7 @@ { "Field": "auftrag_fax_cc", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -3004,7 +3004,7 @@ { "Field": "rechnung_fax_cc", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -3015,7 +3015,7 @@ { "Field": "gutschrift_fax_cc", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -3026,7 +3026,7 @@ { "Field": "lieferschein_fax_cc", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -3037,7 +3037,7 @@ { "Field": "bestellung_fax_cc", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -3059,7 +3059,7 @@ { "Field": "abpermail", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -3081,7 +3081,7 @@ { "Field": "kassierernummer", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -3125,7 +3125,7 @@ { "Field": "mandatsreferenzart", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -3136,7 +3136,7 @@ { "Field": "mandatsreferenzwdhart", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -3158,7 +3158,7 @@ { "Field": "kundennummer_buchhaltung", "Type": "varchar(20)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -3169,7 +3169,7 @@ { "Field": "lieferantennummer_buchhaltung", "Type": "varchar(20)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -3191,7 +3191,7 @@ { "Field": "zahlungsweiseabo", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -3202,7 +3202,7 @@ { "Field": "bundesland", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -3213,7 +3213,7 @@ { "Field": "mandatsreferenzhinweis", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -3257,7 +3257,7 @@ { "Field": "umsatzsteuer_lieferant", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -3290,7 +3290,7 @@ { "Field": "art", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -3312,7 +3312,7 @@ { "Field": "freifeld11", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -3323,7 +3323,7 @@ { "Field": "freifeld12", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -3334,7 +3334,7 @@ { "Field": "freifeld13", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -3345,7 +3345,7 @@ { "Field": "freifeld14", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -3356,7 +3356,7 @@ { "Field": "freifeld15", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -3367,7 +3367,7 @@ { "Field": "freifeld16", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -3378,7 +3378,7 @@ { "Field": "freifeld17", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -3389,7 +3389,7 @@ { "Field": "freifeld18", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -3400,7 +3400,7 @@ { "Field": "freifeld19", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -3411,7 +3411,7 @@ { "Field": "freifeld20", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -3422,7 +3422,7 @@ { "Field": "angebot_email", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -3433,7 +3433,7 @@ { "Field": "auftrag_email", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -3444,7 +3444,7 @@ { "Field": "rechnungs_email", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -3455,7 +3455,7 @@ { "Field": "gutschrift_email", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -3466,7 +3466,7 @@ { "Field": "lieferschein_email", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -3477,7 +3477,7 @@ { "Field": "bestellung_email", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -3499,7 +3499,7 @@ { "Field": "hinweistextlieferant", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -3521,7 +3521,7 @@ { "Field": "hinweis_einfuegen", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -3543,7 +3543,7 @@ { "Field": "gln", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -3554,7 +3554,7 @@ { "Field": "rechnung_gln", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -3576,7 +3576,7 @@ { "Field": "lieferbedingung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -3609,7 +3609,7 @@ { "Field": "zollinformationen", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -3620,7 +3620,7 @@ { "Field": "bundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -3631,7 +3631,7 @@ { "Field": "rechnung_bundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -3709,7 +3709,7 @@ }, { "name": "adresse_abosammelrechnungen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -3726,7 +3726,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -3800,7 +3800,7 @@ }, { "name": "adresse_accounts", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -3839,7 +3839,7 @@ { "Field": "bezeichnung", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -3850,7 +3850,7 @@ { "Field": "art", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -3861,7 +3861,7 @@ { "Field": "url", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -3872,7 +3872,7 @@ { "Field": "benutzername", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -3883,7 +3883,7 @@ { "Field": "passwort", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -3946,7 +3946,7 @@ }, { "name": "adresse_filter", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -3963,7 +3963,7 @@ { "Field": "bezeichnung", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -4018,7 +4018,7 @@ }, { "name": "adresse_filter_gruppen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -4109,7 +4109,7 @@ }, { "name": "adresse_filter_positionen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -4148,7 +4148,7 @@ { "Field": "typ", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -4159,7 +4159,7 @@ { "Field": "typ2", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -4192,7 +4192,7 @@ { "Field": "parameter1", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -4203,7 +4203,7 @@ { "Field": "parameter2", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -4214,7 +4214,7 @@ { "Field": "parameter3", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -4263,7 +4263,7 @@ }, { "name": "adresse_import", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -4280,7 +4280,7 @@ { "Field": "typ", "Type": "varchar(20)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -4291,7 +4291,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -4302,7 +4302,7 @@ { "Field": "ansprechpartner", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -4313,7 +4313,7 @@ { "Field": "abteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -4324,7 +4324,7 @@ { "Field": "unterabteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -4335,7 +4335,7 @@ { "Field": "adresszusatz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -4346,7 +4346,7 @@ { "Field": "strasse", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -4357,7 +4357,7 @@ { "Field": "plz", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -4368,7 +4368,7 @@ { "Field": "ort", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -4379,7 +4379,7 @@ { "Field": "land", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -4390,7 +4390,7 @@ { "Field": "telefon", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -4401,7 +4401,7 @@ { "Field": "telefax", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -4412,7 +4412,7 @@ { "Field": "email", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -4423,7 +4423,7 @@ { "Field": "mobil", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -4434,7 +4434,7 @@ { "Field": "internetseite", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -4445,7 +4445,7 @@ { "Field": "ustid", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -4511,7 +4511,7 @@ }, { "name": "adresse_kontakhistorie", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -4539,7 +4539,7 @@ { "Field": "grund", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -4550,7 +4550,7 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -4561,7 +4561,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -4613,7 +4613,7 @@ }, { "name": "adresse_kontakte", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -4641,7 +4641,7 @@ { "Field": "bezeichnung", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -4652,7 +4652,7 @@ { "Field": "kontakt", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -4682,7 +4682,7 @@ }, { "name": "adresse_rolle", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -4721,7 +4721,7 @@ { "Field": "subjekt", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -4732,7 +4732,7 @@ { "Field": "praedikat", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -4743,7 +4743,7 @@ { "Field": "objekt", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -4754,7 +4754,7 @@ { "Field": "parameter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -4814,7 +4814,7 @@ }, { "name": "adresse_typ", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -4831,7 +4831,7 @@ { "Field": "type", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -4842,7 +4842,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -4908,7 +4908,7 @@ }, { "name": "adressetiketten", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -4947,7 +4947,7 @@ { "Field": "verwenden_als", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -4969,7 +4969,7 @@ }, { "name": "aktionscode_liste", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -4986,7 +4986,7 @@ { "Field": "code", "Type": "varchar(16)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -4997,7 +4997,7 @@ { "Field": "beschriftung", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -5019,7 +5019,7 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -5041,7 +5041,7 @@ }, { "name": "amainvoice_config", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -5058,7 +5058,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "UNI", "Default": null, @@ -5069,7 +5069,7 @@ { "Field": "value", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -5089,8 +5089,8 @@ }, { "Key_name": "name", - "Index_type": "HASH", - "Non_unique": "", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "name" ] @@ -5099,7 +5099,7 @@ }, { "name": "amainvoice_files", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -5116,7 +5116,7 @@ { "Field": "filename", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -5127,7 +5127,7 @@ { "Field": "type", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -5138,7 +5138,7 @@ { "Field": "status", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -5179,7 +5179,7 @@ }, { "name": "amazon_article", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -5218,7 +5218,7 @@ { "Field": "seller_sku", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -5229,7 +5229,7 @@ { "Field": "asin", "Type": "varchar(16)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -5289,7 +5289,7 @@ }, { "name": "amazon_rechnung_anlegen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -5382,7 +5382,7 @@ }, { "name": "amazon_report", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -5410,7 +5410,7 @@ { "Field": "reportid", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -5421,7 +5421,7 @@ { "Field": "requestreportid", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "MUL", "Default": null, @@ -5432,7 +5432,7 @@ { "Field": "reporttype", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "MUL", "Default": null, @@ -5443,7 +5443,7 @@ { "Field": "marketplaces", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -5454,7 +5454,7 @@ { "Field": "requesttype", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -5465,7 +5465,7 @@ { "Field": "report_processing_status", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": "''_done_''", @@ -5553,7 +5553,7 @@ { "Field": "report_options", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -5608,7 +5608,7 @@ }, { "name": "amazon_report_schedule", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -5636,7 +5636,7 @@ { "Field": "report_type", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -5647,7 +5647,7 @@ { "Field": "schedule", "Type": "varchar(12)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -5714,7 +5714,7 @@ }, { "name": "amazon_shipment_info", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -5742,7 +5742,7 @@ { "Field": "orderid", "Type": "varchar(19)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -5753,7 +5753,7 @@ { "Field": "orderitemid", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -5764,7 +5764,7 @@ { "Field": "merchantorderid", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -5775,7 +5775,7 @@ { "Field": "merchantorderitemid", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -5786,7 +5786,7 @@ { "Field": "shipmentitemid", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -5797,7 +5797,7 @@ { "Field": "sku", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -5808,7 +5808,7 @@ { "Field": "carrier", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -5819,7 +5819,7 @@ { "Field": "currency", "Type": "varchar(8)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -5830,7 +5830,7 @@ { "Field": "tracking_number", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -5841,7 +5841,7 @@ { "Field": "sales_channel", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -5852,7 +5852,7 @@ { "Field": "fulfillment_channel", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -5863,7 +5863,7 @@ { "Field": "fulfillment_center_id", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -5907,7 +5907,7 @@ { "Field": "ship_address_1", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -5918,7 +5918,7 @@ { "Field": "ship_address_2", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -5929,7 +5929,7 @@ { "Field": "ship_address_3", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -5940,7 +5940,7 @@ { "Field": "ship_city", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -5951,7 +5951,7 @@ { "Field": "ship_state", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -5962,7 +5962,7 @@ { "Field": "ship_postal_code", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -5973,7 +5973,7 @@ { "Field": "ship_country", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -5984,7 +5984,7 @@ { "Field": "ship_phone_number", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -5995,7 +5995,7 @@ { "Field": "bill_address_1", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -6006,7 +6006,7 @@ { "Field": "bill_address_2", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -6017,7 +6017,7 @@ { "Field": "bill_address_3", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -6028,7 +6028,7 @@ { "Field": "bill_city", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -6039,7 +6039,7 @@ { "Field": "bill_state", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -6050,7 +6050,7 @@ { "Field": "bill_postal_code", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -6061,7 +6061,7 @@ { "Field": "bill_country", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -6072,7 +6072,7 @@ { "Field": "recipient_name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -6083,7 +6083,7 @@ { "Field": "buyer_name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -6209,7 +6209,7 @@ }, { "name": "amazon_vat_report", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -6237,7 +6237,7 @@ { "Field": "orderid", "Type": "varchar(19)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -6248,7 +6248,7 @@ { "Field": "sku", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -6259,7 +6259,7 @@ { "Field": "transaction_type", "Type": "varchar(8)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -6270,7 +6270,7 @@ { "Field": "fullrow", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -6281,7 +6281,7 @@ { "Field": "hash_sha1", "Type": "varchar(40)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -6402,7 +6402,7 @@ { "Field": "invoicenumber", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -6489,7 +6489,7 @@ }, { "name": "amazon_vatinvoice", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -6517,7 +6517,7 @@ { "Field": "orderid", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -6528,7 +6528,7 @@ { "Field": "vat_invoice_number", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -6550,7 +6550,7 @@ { "Field": "from_city", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -6561,7 +6561,7 @@ { "Field": "from_state", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -6572,7 +6572,7 @@ { "Field": "from_country", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -6583,7 +6583,7 @@ { "Field": "from_postal_code", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -6594,7 +6594,7 @@ { "Field": "from_location_code", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -6605,7 +6605,7 @@ { "Field": "seller_tax_registration", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -6616,7 +6616,7 @@ { "Field": "buyer_tax_registration", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -6669,7 +6669,7 @@ }, { "name": "amazoninvoice_position", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -6686,7 +6686,7 @@ { "Field": "doctype", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -6719,7 +6719,7 @@ { "Field": "inv_rech_nr", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -6730,7 +6730,7 @@ { "Field": "inv_date", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -6741,7 +6741,7 @@ { "Field": "amazonorderid", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -6752,7 +6752,7 @@ { "Field": "shipmentdate", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -6763,7 +6763,7 @@ { "Field": "buyeremail", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -6774,7 +6774,7 @@ { "Field": "buyerphonenumber", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -6785,7 +6785,7 @@ { "Field": "buyername", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -6796,7 +6796,7 @@ { "Field": "sku", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -6807,7 +6807,7 @@ { "Field": "productname", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -6818,7 +6818,7 @@ { "Field": "quantitypurchased", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -6829,7 +6829,7 @@ { "Field": "quantityshipped", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -6840,7 +6840,7 @@ { "Field": "currency", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -6851,7 +6851,7 @@ { "Field": "mwst", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -6862,7 +6862,7 @@ { "Field": "taxrate", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -6873,7 +6873,7 @@ { "Field": "brutto_total", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -6884,7 +6884,7 @@ { "Field": "netto_total", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -6895,7 +6895,7 @@ { "Field": "tax_total", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -6906,7 +6906,7 @@ { "Field": "itemprice", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -6917,7 +6917,7 @@ { "Field": "itemprice_netto", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -6928,7 +6928,7 @@ { "Field": "itemprice_tax", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -6939,7 +6939,7 @@ { "Field": "shippingprice", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -6950,7 +6950,7 @@ { "Field": "shippingprice_netto", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -6961,7 +6961,7 @@ { "Field": "shippingprice_tax", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -6972,7 +6972,7 @@ { "Field": "giftwrapprice", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -6983,7 +6983,7 @@ { "Field": "giftwrapprice_netto", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -6994,7 +6994,7 @@ { "Field": "giftwrapprice_tax", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7005,7 +7005,7 @@ { "Field": "itempromotiondiscount", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7016,7 +7016,7 @@ { "Field": "itempromotiondiscount_netto", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7027,7 +7027,7 @@ { "Field": "itempromotiondiscount_tax", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7038,7 +7038,7 @@ { "Field": "shippromotiondiscount", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7049,7 +7049,7 @@ { "Field": "shippromotiondiscount_netto", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7060,7 +7060,7 @@ { "Field": "shippromotiondiscount_tax", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7071,7 +7071,7 @@ { "Field": "giftwrappromotiondiscount", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7082,7 +7082,7 @@ { "Field": "giftwrappromotiondiscount_netto", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7093,7 +7093,7 @@ { "Field": "giftwrappromotiondiscount_tax", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7104,7 +7104,7 @@ { "Field": "shipservicelevel", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7115,7 +7115,7 @@ { "Field": "recipientname", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7126,7 +7126,7 @@ { "Field": "shipaddress1", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7137,7 +7137,7 @@ { "Field": "shipaddress2", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7148,7 +7148,7 @@ { "Field": "shipaddress3", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7159,7 +7159,7 @@ { "Field": "shipcity", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7170,7 +7170,7 @@ { "Field": "shipstate", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7181,7 +7181,7 @@ { "Field": "shippostalcode", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7192,7 +7192,7 @@ { "Field": "shipcountry", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7203,7 +7203,7 @@ { "Field": "shipphonenumber", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7214,7 +7214,7 @@ { "Field": "billaddress1", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7225,7 +7225,7 @@ { "Field": "billaddress2", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7236,7 +7236,7 @@ { "Field": "billaddress3", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7247,7 +7247,7 @@ { "Field": "billcity", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7258,7 +7258,7 @@ { "Field": "billstate", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7269,7 +7269,7 @@ { "Field": "billpostalcode", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7280,7 +7280,7 @@ { "Field": "billcountry", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7291,7 +7291,7 @@ { "Field": "carrier", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7302,7 +7302,7 @@ { "Field": "trackingnumber", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7313,7 +7313,7 @@ { "Field": "fulfillmentcenterid", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7324,7 +7324,7 @@ { "Field": "fulfillmentchannel", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7335,7 +7335,7 @@ { "Field": "saleschannel", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7346,7 +7346,7 @@ { "Field": "asin", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7357,7 +7357,7 @@ { "Field": "conditiontype", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7368,7 +7368,7 @@ { "Field": "quantityavailable", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7379,7 +7379,7 @@ { "Field": "isbusinessorder", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7390,7 +7390,7 @@ { "Field": "uid", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7401,7 +7401,7 @@ { "Field": "vatcheck", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7412,7 +7412,7 @@ { "Field": "documentlink", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7434,7 +7434,7 @@ { "Field": "rem_gs_nr", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7445,7 +7445,7 @@ { "Field": "orderid", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7456,7 +7456,7 @@ { "Field": "rem_date", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7467,7 +7467,7 @@ { "Field": "returndate", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7478,7 +7478,7 @@ { "Field": "buyercompanyname", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7489,7 +7489,7 @@ { "Field": "quantity", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7500,7 +7500,7 @@ { "Field": "remreturnshipcost", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7511,7 +7511,7 @@ { "Field": "remsondererstattung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7522,7 +7522,7 @@ { "Field": "itempromotionid", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7533,7 +7533,7 @@ { "Field": "reason", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7544,7 +7544,7 @@ { "Field": "rem_gs_nr_real", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -7588,7 +7588,7 @@ }, { "name": "anfrage", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -7616,7 +7616,7 @@ { "Field": "projekt", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -7627,7 +7627,7 @@ { "Field": "belegnr", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -7638,7 +7638,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -7649,7 +7649,7 @@ { "Field": "auftrag", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -7671,7 +7671,7 @@ { "Field": "freitext", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -7682,7 +7682,7 @@ { "Field": "status", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -7715,7 +7715,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -7726,7 +7726,7 @@ { "Field": "abteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -7737,7 +7737,7 @@ { "Field": "unterabteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -7748,7 +7748,7 @@ { "Field": "strasse", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -7759,7 +7759,7 @@ { "Field": "adresszusatz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -7770,7 +7770,7 @@ { "Field": "ansprechpartner", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -7781,7 +7781,7 @@ { "Field": "plz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -7792,7 +7792,7 @@ { "Field": "ort", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -7803,7 +7803,7 @@ { "Field": "land", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -7814,7 +7814,7 @@ { "Field": "ustid", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -7825,7 +7825,7 @@ { "Field": "email", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -7836,7 +7836,7 @@ { "Field": "telefon", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -7847,7 +7847,7 @@ { "Field": "telefax", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -7858,7 +7858,7 @@ { "Field": "betreff", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -7869,7 +7869,7 @@ { "Field": "kundennummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -7880,7 +7880,7 @@ { "Field": "versandart", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -7891,7 +7891,7 @@ { "Field": "versand", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -7935,7 +7935,7 @@ { "Field": "versendet_per", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -7946,7 +7946,7 @@ { "Field": "versendet_durch", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -8001,7 +8001,7 @@ { "Field": "internebezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -8034,7 +8034,7 @@ { "Field": "aktion", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -8045,7 +8045,7 @@ { "Field": "vertrieb", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -8056,7 +8056,7 @@ { "Field": "anschreiben", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -8232,7 +8232,7 @@ { "Field": "waehrung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "''EUR''", @@ -8243,7 +8243,7 @@ { "Field": "typ", "Type": "varchar(16)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -8265,7 +8265,7 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -8276,7 +8276,7 @@ { "Field": "sprache", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -8287,7 +8287,7 @@ { "Field": "bodyzusatz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -8298,7 +8298,7 @@ { "Field": "lieferbedingung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -8309,7 +8309,7 @@ { "Field": "titel", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -8320,7 +8320,7 @@ { "Field": "bundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -8342,7 +8342,7 @@ }, { "name": "anfrage_position", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -8392,7 +8392,7 @@ { "Field": "nummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -8403,7 +8403,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -8414,7 +8414,7 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -8425,7 +8425,7 @@ { "Field": "internerkommentar", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -8458,7 +8458,7 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -8502,7 +8502,7 @@ { "Field": "steuertext", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -8524,7 +8524,7 @@ { "Field": "erloese", "Type": "varchar(8)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -8612,7 +8612,7 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -8623,7 +8623,7 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -8634,7 +8634,7 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -8645,7 +8645,7 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -8656,7 +8656,7 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -8667,7 +8667,7 @@ { "Field": "freifeld6", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -8678,7 +8678,7 @@ { "Field": "freifeld7", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -8689,7 +8689,7 @@ { "Field": "freifeld8", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -8700,7 +8700,7 @@ { "Field": "freifeld9", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -8711,7 +8711,7 @@ { "Field": "freifeld10", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -8722,7 +8722,7 @@ { "Field": "freifeld11", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -8733,7 +8733,7 @@ { "Field": "freifeld12", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -8744,7 +8744,7 @@ { "Field": "freifeld13", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -8755,7 +8755,7 @@ { "Field": "freifeld14", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -8766,7 +8766,7 @@ { "Field": "freifeld15", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -8777,7 +8777,7 @@ { "Field": "freifeld16", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -8788,7 +8788,7 @@ { "Field": "freifeld17", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -8799,7 +8799,7 @@ { "Field": "freifeld18", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -8810,7 +8810,7 @@ { "Field": "freifeld19", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -8821,7 +8821,7 @@ { "Field": "freifeld20", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -8832,7 +8832,7 @@ { "Field": "freifeld21", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -8843,7 +8843,7 @@ { "Field": "freifeld22", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -8854,7 +8854,7 @@ { "Field": "freifeld23", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -8865,7 +8865,7 @@ { "Field": "freifeld24", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -8876,7 +8876,7 @@ { "Field": "freifeld25", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -8887,7 +8887,7 @@ { "Field": "freifeld26", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -8898,7 +8898,7 @@ { "Field": "freifeld27", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -8909,7 +8909,7 @@ { "Field": "freifeld28", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -8920,7 +8920,7 @@ { "Field": "freifeld29", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -8931,7 +8931,7 @@ { "Field": "freifeld30", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -8942,7 +8942,7 @@ { "Field": "freifeld31", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -8953,7 +8953,7 @@ { "Field": "freifeld32", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -8964,7 +8964,7 @@ { "Field": "freifeld33", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -8975,7 +8975,7 @@ { "Field": "freifeld34", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -8986,7 +8986,7 @@ { "Field": "freifeld35", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -8997,7 +8997,7 @@ { "Field": "freifeld36", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -9008,7 +9008,7 @@ { "Field": "freifeld37", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -9019,7 +9019,7 @@ { "Field": "freifeld38", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -9030,7 +9030,7 @@ { "Field": "freifeld39", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -9041,7 +9041,7 @@ { "Field": "freifeld40", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -9063,7 +9063,7 @@ { "Field": "vpe", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9074,7 +9074,7 @@ { "Field": "einheit", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9126,7 +9126,7 @@ }, { "name": "anfrage_protokoll", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -9165,7 +9165,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9176,7 +9176,7 @@ { "Field": "grund", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9206,7 +9206,7 @@ }, { "name": "angebot", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -9245,7 +9245,7 @@ { "Field": "projekt", "Type": "varchar(222)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -9256,7 +9256,7 @@ { "Field": "belegnr", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -9267,7 +9267,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9278,7 +9278,7 @@ { "Field": "anfrage", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9289,7 +9289,7 @@ { "Field": "auftrag", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9300,7 +9300,7 @@ { "Field": "freitext", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9311,7 +9311,7 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9322,7 +9322,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -9344,7 +9344,7 @@ { "Field": "retyp", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9355,7 +9355,7 @@ { "Field": "rechnungname", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9366,7 +9366,7 @@ { "Field": "retelefon", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9377,7 +9377,7 @@ { "Field": "reansprechpartner", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9388,7 +9388,7 @@ { "Field": "retelefax", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9399,7 +9399,7 @@ { "Field": "reabteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9410,7 +9410,7 @@ { "Field": "reemail", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9421,7 +9421,7 @@ { "Field": "reunterabteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9432,7 +9432,7 @@ { "Field": "readresszusatz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9443,7 +9443,7 @@ { "Field": "restrasse", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9454,7 +9454,7 @@ { "Field": "replz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9465,7 +9465,7 @@ { "Field": "reort", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9476,7 +9476,7 @@ { "Field": "reland", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9487,7 +9487,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9498,7 +9498,7 @@ { "Field": "abteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9509,7 +9509,7 @@ { "Field": "unterabteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9520,7 +9520,7 @@ { "Field": "strasse", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9531,7 +9531,7 @@ { "Field": "adresszusatz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9542,7 +9542,7 @@ { "Field": "plz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9553,7 +9553,7 @@ { "Field": "ort", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9564,7 +9564,7 @@ { "Field": "land", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9575,7 +9575,7 @@ { "Field": "ustid", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9586,7 +9586,7 @@ { "Field": "email", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9597,7 +9597,7 @@ { "Field": "telefon", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9608,7 +9608,7 @@ { "Field": "telefax", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9619,7 +9619,7 @@ { "Field": "betreff", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9630,7 +9630,7 @@ { "Field": "kundennummer", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -9641,7 +9641,7 @@ { "Field": "versandart", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -9652,7 +9652,7 @@ { "Field": "vertrieb", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9663,7 +9663,7 @@ { "Field": "zahlungsweise", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9718,7 +9718,7 @@ { "Field": "bank_inhaber", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9729,7 +9729,7 @@ { "Field": "bank_institut", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9762,7 +9762,7 @@ { "Field": "kreditkarte_typ", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9773,7 +9773,7 @@ { "Field": "kreditkarte_inhaber", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9784,7 +9784,7 @@ { "Field": "kreditkarte_nummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9795,7 +9795,7 @@ { "Field": "kreditkarte_pruefnummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9850,7 +9850,7 @@ { "Field": "liefername", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9861,7 +9861,7 @@ { "Field": "lieferabteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9872,7 +9872,7 @@ { "Field": "lieferunterabteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9883,7 +9883,7 @@ { "Field": "lieferland", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9894,7 +9894,7 @@ { "Field": "lieferstrasse", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9905,7 +9905,7 @@ { "Field": "lieferort", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9916,7 +9916,7 @@ { "Field": "lieferplz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9927,7 +9927,7 @@ { "Field": "lieferadresszusatz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9938,7 +9938,7 @@ { "Field": "lieferansprechpartner", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9949,7 +9949,7 @@ { "Field": "liefertelefon", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9960,7 +9960,7 @@ { "Field": "liefertelefax", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -9971,7 +9971,7 @@ { "Field": "liefermail", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -10059,7 +10059,7 @@ { "Field": "versendet_per", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -10070,7 +10070,7 @@ { "Field": "versendet_durch", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -10092,7 +10092,7 @@ { "Field": "vermerk", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -10114,7 +10114,7 @@ { "Field": "ansprechpartner", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -10191,7 +10191,7 @@ { "Field": "aktion", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -10257,7 +10257,7 @@ { "Field": "anschreiben", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -10422,7 +10422,7 @@ { "Field": "waehrung", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'EUR'", @@ -10466,7 +10466,7 @@ { "Field": "typ", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "''firma''", @@ -10554,7 +10554,7 @@ { "Field": "internebezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -10609,7 +10609,7 @@ { "Field": "sprache", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -10620,7 +10620,7 @@ { "Field": "liefergln", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -10631,7 +10631,7 @@ { "Field": "lieferemail", "Type": "varchar(200)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -10642,7 +10642,7 @@ { "Field": "gln", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -10708,7 +10708,7 @@ { "Field": "kostenstelle", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -10719,7 +10719,7 @@ { "Field": "bodyzusatz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -10730,7 +10730,7 @@ { "Field": "lieferbedingung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -10741,7 +10741,7 @@ { "Field": "titel", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -10752,7 +10752,7 @@ { "Field": "liefertitel", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -10807,7 +10807,7 @@ { "Field": "internet", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -10818,7 +10818,7 @@ { "Field": "transaktionsnummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -10829,7 +10829,7 @@ { "Field": "packstation_inhaber", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -10840,7 +10840,7 @@ { "Field": "packstation_station", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -10851,7 +10851,7 @@ { "Field": "packstation_ident", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -10862,7 +10862,7 @@ { "Field": "packstation_plz", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -10873,7 +10873,7 @@ { "Field": "packstation_ort", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -10884,7 +10884,7 @@ { "Field": "shopextid", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -10895,7 +10895,7 @@ { "Field": "bundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -10906,7 +10906,7 @@ { "Field": "lieferbundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -10984,7 +10984,7 @@ }, { "name": "angebot_position", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -11034,7 +11034,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -11045,7 +11045,7 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -11056,7 +11056,7 @@ { "Field": "internerkommentar", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -11067,7 +11067,7 @@ { "Field": "nummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -11100,7 +11100,7 @@ { "Field": "waehrung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -11122,7 +11122,7 @@ { "Field": "vpe", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -11144,7 +11144,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -11155,7 +11155,7 @@ { "Field": "umsatzsteuer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -11166,7 +11166,7 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -11320,7 +11320,7 @@ { "Field": "einheit", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -11353,7 +11353,7 @@ { "Field": "zolltarifnummer", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'0'", @@ -11364,7 +11364,7 @@ { "Field": "herkunftsland", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'0'", @@ -11375,7 +11375,7 @@ { "Field": "artikelnummerkunde", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -11386,7 +11386,7 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -11397,7 +11397,7 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -11408,7 +11408,7 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -11419,7 +11419,7 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -11430,7 +11430,7 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -11441,7 +11441,7 @@ { "Field": "freifeld6", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -11452,7 +11452,7 @@ { "Field": "freifeld7", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -11463,7 +11463,7 @@ { "Field": "freifeld8", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -11474,7 +11474,7 @@ { "Field": "freifeld9", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -11485,7 +11485,7 @@ { "Field": "freifeld10", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -11518,7 +11518,7 @@ { "Field": "kostenstelle", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -11540,7 +11540,7 @@ { "Field": "steuertext", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -11551,7 +11551,7 @@ { "Field": "erloese", "Type": "varchar(8)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -11573,7 +11573,7 @@ { "Field": "einkaufspreiswaehrung", "Type": "varchar(8)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -11617,7 +11617,7 @@ { "Field": "ekwaehrung", "Type": "varchar(8)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -11639,7 +11639,7 @@ { "Field": "freifeld11", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -11650,7 +11650,7 @@ { "Field": "freifeld12", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -11661,7 +11661,7 @@ { "Field": "freifeld13", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -11672,7 +11672,7 @@ { "Field": "freifeld14", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -11683,7 +11683,7 @@ { "Field": "freifeld15", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -11694,7 +11694,7 @@ { "Field": "freifeld16", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -11705,7 +11705,7 @@ { "Field": "freifeld17", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -11716,7 +11716,7 @@ { "Field": "freifeld18", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -11727,7 +11727,7 @@ { "Field": "freifeld19", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -11738,7 +11738,7 @@ { "Field": "freifeld20", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -11749,7 +11749,7 @@ { "Field": "freifeld21", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -11760,7 +11760,7 @@ { "Field": "freifeld22", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -11771,7 +11771,7 @@ { "Field": "freifeld23", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -11782,7 +11782,7 @@ { "Field": "freifeld24", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -11793,7 +11793,7 @@ { "Field": "freifeld25", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -11804,7 +11804,7 @@ { "Field": "freifeld26", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -11815,7 +11815,7 @@ { "Field": "freifeld27", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -11826,7 +11826,7 @@ { "Field": "freifeld28", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -11837,7 +11837,7 @@ { "Field": "freifeld29", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -11848,7 +11848,7 @@ { "Field": "freifeld30", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -11859,7 +11859,7 @@ { "Field": "freifeld31", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -11870,7 +11870,7 @@ { "Field": "freifeld32", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -11881,7 +11881,7 @@ { "Field": "freifeld33", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -11892,7 +11892,7 @@ { "Field": "freifeld34", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -11903,7 +11903,7 @@ { "Field": "freifeld35", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -11914,7 +11914,7 @@ { "Field": "freifeld36", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -11925,7 +11925,7 @@ { "Field": "freifeld37", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -11936,7 +11936,7 @@ { "Field": "freifeld38", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -11947,7 +11947,7 @@ { "Field": "freifeld39", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -11958,7 +11958,7 @@ { "Field": "freifeld40", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -11969,7 +11969,7 @@ { "Field": "formelmenge", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -11980,7 +11980,7 @@ { "Field": "formelpreis", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -12002,7 +12002,7 @@ { "Field": "textalternativpreis", "Type": "varchar(50)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -12194,7 +12194,7 @@ }, { "name": "angebot_protokoll", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -12233,7 +12233,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -12244,7 +12244,7 @@ { "Field": "grund", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -12274,7 +12274,7 @@ }, { "name": "ansprechpartner", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -12291,7 +12291,7 @@ { "Field": "typ", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -12302,7 +12302,7 @@ { "Field": "sprache", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -12313,7 +12313,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -12324,7 +12324,7 @@ { "Field": "bereich", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -12335,7 +12335,7 @@ { "Field": "abteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -12346,7 +12346,7 @@ { "Field": "unterabteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -12357,7 +12357,7 @@ { "Field": "land", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -12368,7 +12368,7 @@ { "Field": "strasse", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -12379,7 +12379,7 @@ { "Field": "ort", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -12390,7 +12390,7 @@ { "Field": "plz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -12401,7 +12401,7 @@ { "Field": "telefon", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -12412,7 +12412,7 @@ { "Field": "telefax", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -12423,7 +12423,7 @@ { "Field": "email", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -12434,7 +12434,7 @@ { "Field": "sonstiges", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -12445,7 +12445,7 @@ { "Field": "adresszusatz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -12456,7 +12456,7 @@ { "Field": "steuer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -12489,7 +12489,7 @@ { "Field": "mobil", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -12500,7 +12500,7 @@ { "Field": "titel", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -12511,7 +12511,7 @@ { "Field": "anschreiben", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -12522,7 +12522,7 @@ { "Field": "ansprechpartner_land", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -12533,7 +12533,7 @@ { "Field": "vorname", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -12588,7 +12588,7 @@ { "Field": "interne_bemerkung", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -12629,7 +12629,7 @@ }, { "name": "ansprechpartner_gruppen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -12690,7 +12690,7 @@ }, { "name": "api_account", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -12707,7 +12707,7 @@ { "Field": "bezeichnung", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -12718,7 +12718,7 @@ { "Field": "initkey", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -12729,7 +12729,7 @@ { "Field": "importwarteschlange_name", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -12740,7 +12740,7 @@ { "Field": "event_url", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -12751,7 +12751,7 @@ { "Field": "remotedomain", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -12817,7 +12817,7 @@ { "Field": "permissions", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -12861,7 +12861,7 @@ }, { "name": "api_keys", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -12878,7 +12878,7 @@ { "Field": "nonce", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -12889,7 +12889,7 @@ { "Field": "opaque", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -12933,7 +12933,7 @@ }, { "name": "api_mapping", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -12972,7 +12972,7 @@ { "Field": "tabelle", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -12994,7 +12994,7 @@ { "Field": "id_ext", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -13051,7 +13051,7 @@ }, { "name": "api_permission", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -13068,7 +13068,7 @@ { "Field": "key", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "UNI", "Default": null, @@ -13079,7 +13079,7 @@ { "Field": "group", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -13099,8 +13099,8 @@ }, { "Key_name": "key", - "Index_type": "HASH", - "Non_unique": "", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "key" ] @@ -13109,7 +13109,7 @@ }, { "name": "api_regel", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -13148,7 +13148,7 @@ { "Field": "action", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -13159,7 +13159,7 @@ { "Field": "bedingung", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -13170,7 +13170,7 @@ { "Field": "parameter", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -13214,7 +13214,7 @@ { "Field": "bearbeiter", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -13247,7 +13247,7 @@ }, { "name": "api_request", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -13286,7 +13286,7 @@ { "Field": "status", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'angelegt'", @@ -13319,7 +13319,7 @@ { "Field": "typ", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -13330,7 +13330,7 @@ { "Field": "parameter1", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -13352,7 +13352,7 @@ { "Field": "parameter2", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -13363,7 +13363,7 @@ { "Field": "anzeige", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -13407,7 +13407,7 @@ { "Field": "datei", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -13467,7 +13467,7 @@ }, { "name": "api_request_response_log", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -13495,7 +13495,7 @@ { "Field": "raw_request", "Type": "mediumtext", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -13506,7 +13506,7 @@ { "Field": "raw_response", "Type": "mediumtext", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -13517,7 +13517,7 @@ { "Field": "type", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -13528,7 +13528,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -13539,7 +13539,7 @@ { "Field": "doctype", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -13610,7 +13610,7 @@ }, { "name": "arbeitsfreietage", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -13627,7 +13627,7 @@ { "Field": "bezeichnung", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -13638,7 +13638,7 @@ { "Field": "typ", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -13671,7 +13671,7 @@ { "Field": "land", "Type": "varchar(2)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -13701,7 +13701,7 @@ }, { "name": "arbeitspaket", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -13729,7 +13729,7 @@ { "Field": "aufgabe", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -13740,7 +13740,7 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -13784,7 +13784,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -13795,7 +13795,7 @@ { "Field": "abgabe", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -13806,7 +13806,7 @@ { "Field": "abgenommen", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -13828,7 +13828,7 @@ { "Field": "abgenommen_bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -13850,7 +13850,7 @@ { "Field": "art", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -14092,7 +14092,7 @@ { "Field": "kalkulationbasis", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'stundenbasis'", @@ -14114,7 +14114,7 @@ { "Field": "farbe", "Type": "varchar(16)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -14125,7 +14125,7 @@ { "Field": "vkkalkulationbasis", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -14166,7 +14166,7 @@ }, { "name": "article_label", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -14227,7 +14227,7 @@ { "Field": "type", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -14249,7 +14249,7 @@ }, { "name": "article_property_translation", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -14299,7 +14299,7 @@ { "Field": "language_from", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -14310,7 +14310,7 @@ { "Field": "language_to", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -14321,7 +14321,7 @@ { "Field": "property_from", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -14332,7 +14332,7 @@ { "Field": "property_to", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -14343,7 +14343,7 @@ { "Field": "property_value_from", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -14354,7 +14354,7 @@ { "Field": "property_value_to", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -14400,7 +14400,7 @@ }, { "name": "artikel", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -14417,7 +14417,7 @@ { "Field": "typ", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -14428,7 +14428,7 @@ { "Field": "nummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -14439,7 +14439,7 @@ { "Field": "checksum", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -14461,7 +14461,7 @@ { "Field": "inaktiv", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -14483,7 +14483,7 @@ { "Field": "warengruppe", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -14494,7 +14494,7 @@ { "Field": "name_de", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -14505,7 +14505,7 @@ { "Field": "name_en", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -14516,7 +14516,7 @@ { "Field": "kurztext_de", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -14527,7 +14527,7 @@ { "Field": "kurztext_en", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -14538,7 +14538,7 @@ { "Field": "beschreibung_de", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -14549,7 +14549,7 @@ { "Field": "beschreibung_en", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -14560,7 +14560,7 @@ { "Field": "uebersicht_de", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -14571,7 +14571,7 @@ { "Field": "uebersicht_en", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -14582,7 +14582,7 @@ { "Field": "links_de", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -14593,7 +14593,7 @@ { "Field": "links_en", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -14604,7 +14604,7 @@ { "Field": "startseite_de", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -14615,7 +14615,7 @@ { "Field": "startseite_en", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -14626,7 +14626,7 @@ { "Field": "standardbild", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -14637,7 +14637,7 @@ { "Field": "herstellerlink", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -14648,7 +14648,7 @@ { "Field": "hersteller", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -14659,7 +14659,7 @@ { "Field": "teilbar", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -14670,7 +14670,7 @@ { "Field": "nteile", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -14681,7 +14681,7 @@ { "Field": "seriennummern", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -14692,7 +14692,7 @@ { "Field": "lager_platz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -14703,7 +14703,7 @@ { "Field": "lieferzeit", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -14714,7 +14714,7 @@ { "Field": "lieferzeitmanuell", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -14725,7 +14725,7 @@ { "Field": "sonstiges", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -14736,7 +14736,7 @@ { "Field": "gewicht", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -14747,7 +14747,7 @@ { "Field": "endmontage", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -14758,7 +14758,7 @@ { "Field": "funktionstest", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -14769,7 +14769,7 @@ { "Field": "artikelcheckliste", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -14802,7 +14802,7 @@ { "Field": "barcode", "Type": "varchar(7)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -14813,7 +14813,7 @@ { "Field": "hinzugefuegt", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -14824,7 +14824,7 @@ { "Field": "pcbdecal", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -14890,7 +14890,7 @@ { "Field": "sperrgrund", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -14923,7 +14923,7 @@ { "Field": "umsatzsteuer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -14934,7 +14934,7 @@ { "Field": "klasse", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -15011,7 +15011,7 @@ { "Field": "katalogtext_de", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -15022,7 +15022,7 @@ { "Field": "katalogtext_en", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -15033,7 +15033,7 @@ { "Field": "katalogbezeichnung_de", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -15044,7 +15044,7 @@ { "Field": "katalogbezeichnung_en", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -15132,7 +15132,7 @@ { "Field": "internerkommentar", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -15165,7 +15165,7 @@ { "Field": "intern_gesperrtgrund", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -15209,7 +15209,7 @@ { "Field": "internkommentar", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -15242,7 +15242,7 @@ { "Field": "anabregs_text", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -15275,7 +15275,7 @@ { "Field": "herstellernummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "MUL", "Default": null, @@ -15330,7 +15330,7 @@ { "Field": "letzteseriennummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -15440,7 +15440,7 @@ { "Field": "freigaberegel", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -15462,7 +15462,7 @@ { "Field": "ean", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -15550,7 +15550,7 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -15561,7 +15561,7 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -15572,7 +15572,7 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -15583,7 +15583,7 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -15594,7 +15594,7 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -15605,7 +15605,7 @@ { "Field": "freifeld6", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -15616,7 +15616,7 @@ { "Field": "einheit", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -15627,7 +15627,7 @@ { "Field": "webid", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -15638,7 +15638,7 @@ { "Field": "lieferzeitmanuell_en", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -15671,7 +15671,7 @@ { "Field": "produktioninfo", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -15682,7 +15682,7 @@ { "Field": "sonderaktion", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -15693,7 +15693,7 @@ { "Field": "sonderaktion_en", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -15715,7 +15715,7 @@ { "Field": "leerfeld", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -15726,7 +15726,7 @@ { "Field": "zolltarifnummer", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -15737,7 +15737,7 @@ { "Field": "herkunftsland", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -15792,7 +15792,7 @@ { "Field": "pseudolager", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -15825,7 +15825,7 @@ { "Field": "steuer_erloese_inland_normal", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -15836,7 +15836,7 @@ { "Field": "steuer_aufwendung_inland_normal", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -15847,7 +15847,7 @@ { "Field": "steuer_erloese_inland_ermaessigt", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -15858,7 +15858,7 @@ { "Field": "steuer_aufwendung_inland_ermaessigt", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -15869,7 +15869,7 @@ { "Field": "steuer_erloese_inland_steuerfrei", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -15880,7 +15880,7 @@ { "Field": "steuer_aufwendung_inland_steuerfrei", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -15891,7 +15891,7 @@ { "Field": "steuer_erloese_inland_innergemeinschaftlich", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -15902,7 +15902,7 @@ { "Field": "steuer_aufwendung_inland_innergemeinschaftlich", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -15913,7 +15913,7 @@ { "Field": "steuer_erloese_inland_eunormal", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -15924,7 +15924,7 @@ { "Field": "steuer_erloese_inland_nichtsteuerbar", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -15935,7 +15935,7 @@ { "Field": "steuer_erloese_inland_euermaessigt", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -15946,7 +15946,7 @@ { "Field": "steuer_aufwendung_inland_nichtsteuerbar", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -15957,7 +15957,7 @@ { "Field": "steuer_aufwendung_inland_eunormal", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -15968,7 +15968,7 @@ { "Field": "steuer_aufwendung_inland_euermaessigt", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -15979,7 +15979,7 @@ { "Field": "steuer_erloese_inland_export", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -15990,7 +15990,7 @@ { "Field": "steuer_aufwendung_inland_import", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16023,7 +16023,7 @@ { "Field": "metadescription_de", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16034,7 +16034,7 @@ { "Field": "metadescription_en", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16045,7 +16045,7 @@ { "Field": "metakeywords_de", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16056,7 +16056,7 @@ { "Field": "metakeywords_en", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16067,7 +16067,7 @@ { "Field": "anabregs_text_en", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16089,7 +16089,7 @@ { "Field": "bildvorschau", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16177,7 +16177,7 @@ { "Field": "nettogewicht", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16254,7 +16254,7 @@ { "Field": "hinweis_einfuegen", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16298,7 +16298,7 @@ { "Field": "abckategorie", "Type": "varchar(1)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16342,7 +16342,7 @@ { "Field": "steuertext_innergemeinschaftlich", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -16353,7 +16353,7 @@ { "Field": "steuertext_export", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -16364,7 +16364,7 @@ { "Field": "formelmenge", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16375,7 +16375,7 @@ { "Field": "formelpreis", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16386,7 +16386,7 @@ { "Field": "freifeld7", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16397,7 +16397,7 @@ { "Field": "freifeld8", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16408,7 +16408,7 @@ { "Field": "freifeld9", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16419,7 +16419,7 @@ { "Field": "freifeld10", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16430,7 +16430,7 @@ { "Field": "freifeld11", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16441,7 +16441,7 @@ { "Field": "freifeld12", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16452,7 +16452,7 @@ { "Field": "freifeld13", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16463,7 +16463,7 @@ { "Field": "freifeld14", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16474,7 +16474,7 @@ { "Field": "freifeld15", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16485,7 +16485,7 @@ { "Field": "freifeld16", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16496,7 +16496,7 @@ { "Field": "freifeld17", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16507,7 +16507,7 @@ { "Field": "freifeld18", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16518,7 +16518,7 @@ { "Field": "freifeld19", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16529,7 +16529,7 @@ { "Field": "freifeld20", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16540,7 +16540,7 @@ { "Field": "freifeld21", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16551,7 +16551,7 @@ { "Field": "freifeld22", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16562,7 +16562,7 @@ { "Field": "freifeld23", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16573,7 +16573,7 @@ { "Field": "freifeld24", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16584,7 +16584,7 @@ { "Field": "freifeld25", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16595,7 +16595,7 @@ { "Field": "freifeld26", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16606,7 +16606,7 @@ { "Field": "freifeld27", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16617,7 +16617,7 @@ { "Field": "freifeld28", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16628,7 +16628,7 @@ { "Field": "freifeld29", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16639,7 +16639,7 @@ { "Field": "freifeld30", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16650,7 +16650,7 @@ { "Field": "freifeld31", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16661,7 +16661,7 @@ { "Field": "freifeld32", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16672,7 +16672,7 @@ { "Field": "freifeld33", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16683,7 +16683,7 @@ { "Field": "freifeld34", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16694,7 +16694,7 @@ { "Field": "freifeld35", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16705,7 +16705,7 @@ { "Field": "freifeld36", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16716,7 +16716,7 @@ { "Field": "freifeld37", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16727,7 +16727,7 @@ { "Field": "freifeld38", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16738,7 +16738,7 @@ { "Field": "freifeld39", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16749,7 +16749,7 @@ { "Field": "freifeld40", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16760,7 +16760,7 @@ { "Field": "ursprungsregion", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16782,7 +16782,7 @@ { "Field": "metatitle_de", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16793,7 +16793,7 @@ { "Field": "metatitle_en", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16815,7 +16815,7 @@ { "Field": "altersfreigabe", "Type": "varchar(3)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16848,7 +16848,7 @@ { "Field": "kostenstelle", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -16925,7 +16925,7 @@ { "Field": "berechneterekwaehrung", "Type": "varchar(16)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -17033,7 +17033,7 @@ }, { "name": "artikel_arbeitsanweisung", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -17072,7 +17072,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -17083,7 +17083,7 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -17116,7 +17116,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -17168,7 +17168,7 @@ }, { "name": "artikel_artikelgruppe", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -17240,7 +17240,7 @@ }, { "name": "artikel_cached_fields", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -17279,7 +17279,7 @@ { "Field": "project_name", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -17290,7 +17290,7 @@ { "Field": "number", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -17301,7 +17301,7 @@ { "Field": "ean", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -17312,7 +17312,7 @@ { "Field": "factory_number", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -17323,7 +17323,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -17334,7 +17334,7 @@ { "Field": "manufactor", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -17345,7 +17345,7 @@ { "Field": "customfield1", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -17356,7 +17356,7 @@ { "Field": "customfield2", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -17367,7 +17367,7 @@ { "Field": "ek_customnumber", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -17378,7 +17378,7 @@ { "Field": "vk_customnumber", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -17389,7 +17389,7 @@ { "Field": "eigenschaften", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -17433,7 +17433,7 @@ { "Field": "variant_from_name", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -17606,7 +17606,7 @@ }, { "name": "artikel_freifelder", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -17634,7 +17634,7 @@ { "Field": "sprache", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -17656,7 +17656,7 @@ { "Field": "wert", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -17686,7 +17686,7 @@ }, { "name": "artikel_onlineshops", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -17758,7 +17758,7 @@ { "Field": "pseudolager", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -17791,7 +17791,7 @@ { "Field": "lieferzeitmanuell", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -17868,7 +17868,7 @@ { "Field": "last_article_hash", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -17943,7 +17943,7 @@ }, { "name": "artikel_permanenteinventur", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -18004,7 +18004,7 @@ { "Field": "bearbeiter", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -18042,7 +18042,7 @@ }, { "name": "artikel_shop", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -18081,7 +18081,7 @@ { "Field": "checksum", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -18103,7 +18103,7 @@ }, { "name": "artikel_texte", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -18131,7 +18131,7 @@ { "Field": "sprache", "Type": "varchar(11)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -18142,7 +18142,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -18153,7 +18153,7 @@ { "Field": "kurztext", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -18164,7 +18164,7 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -18175,7 +18175,7 @@ { "Field": "beschreibung_online", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -18186,7 +18186,7 @@ { "Field": "meta_title", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -18197,7 +18197,7 @@ { "Field": "meta_description", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -18208,7 +18208,7 @@ { "Field": "meta_keywords", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -18230,7 +18230,7 @@ { "Field": "katalog_bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -18241,7 +18241,7 @@ { "Field": "katalog_text", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -18301,7 +18301,7 @@ }, { "name": "artikel_zu_optionen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -18340,7 +18340,7 @@ }, { "name": "artikel_zu_optionengruppe", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -18379,7 +18379,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -18390,7 +18390,7 @@ { "Field": "name_de", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -18401,7 +18401,7 @@ { "Field": "name_en", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -18423,7 +18423,7 @@ { "Field": "preisart", "Type": "varchar(20)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'absolut'", @@ -18434,7 +18434,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -18478,7 +18478,7 @@ }, { "name": "artikelbaum_artikel", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -18548,7 +18548,7 @@ }, { "name": "artikeleigenschaften", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -18576,7 +18576,7 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -18587,7 +18587,7 @@ { "Field": "typ", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": "'einzeilig'", @@ -18631,7 +18631,7 @@ }, { "name": "artikeleigenschaftenwerte", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -18670,7 +18670,7 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -18681,7 +18681,7 @@ { "Field": "einheit", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -18692,7 +18692,7 @@ { "Field": "wert", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -18741,7 +18741,7 @@ }, { "name": "artikeleinheit", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -18758,7 +18758,7 @@ { "Field": "einheit_de", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -18769,7 +18769,7 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -18791,7 +18791,7 @@ }, { "name": "artikelgruppen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -18808,7 +18808,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -18819,7 +18819,7 @@ { "Field": "bezeichnung_en", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -18852,7 +18852,7 @@ { "Field": "beschreibung_de", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -18863,7 +18863,7 @@ { "Field": "beschreibung_en", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -18893,7 +18893,7 @@ }, { "name": "artikelkalkulation", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -18943,7 +18943,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -18954,7 +18954,7 @@ { "Field": "kostenart", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -18987,7 +18987,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -19009,7 +19009,7 @@ { "Field": "kommentar", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -19020,7 +19020,7 @@ { "Field": "waehrung", "Type": "varchar(16)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -19072,7 +19072,7 @@ }, { "name": "artikelkalkulation_menge", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -19130,7 +19130,7 @@ }, { "name": "artikelkalkulation_tag", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -19169,7 +19169,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -19191,7 +19191,7 @@ { "Field": "waehrung", "Type": "varchar(16)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -19213,7 +19213,7 @@ { "Field": "json", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -19235,7 +19235,7 @@ }, { "name": "artikelkategorien", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -19252,7 +19252,7 @@ { "Field": "bezeichnung", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -19263,7 +19263,7 @@ { "Field": "next_nummer", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -19318,7 +19318,7 @@ { "Field": "steuer_erloese_inland_normal", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -19329,7 +19329,7 @@ { "Field": "steuer_aufwendung_inland_normal", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -19340,7 +19340,7 @@ { "Field": "steuer_erloese_inland_ermaessigt", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -19351,7 +19351,7 @@ { "Field": "steuer_aufwendung_inland_ermaessigt", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -19362,7 +19362,7 @@ { "Field": "steuer_erloese_inland_steuerfrei", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -19373,7 +19373,7 @@ { "Field": "steuer_aufwendung_inland_steuerfrei", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -19384,7 +19384,7 @@ { "Field": "steuer_erloese_inland_innergemeinschaftlich", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -19395,7 +19395,7 @@ { "Field": "steuer_aufwendung_inland_innergemeinschaftlich", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -19406,7 +19406,7 @@ { "Field": "steuer_erloese_inland_eunormal", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -19417,7 +19417,7 @@ { "Field": "steuer_erloese_inland_nichtsteuerbar", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -19428,7 +19428,7 @@ { "Field": "steuer_erloese_inland_euermaessigt", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -19439,7 +19439,7 @@ { "Field": "steuer_aufwendung_inland_nichtsteuerbar", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -19450,7 +19450,7 @@ { "Field": "steuer_aufwendung_inland_eunormal", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -19461,7 +19461,7 @@ { "Field": "steuer_aufwendung_inland_euermaessigt", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -19472,7 +19472,7 @@ { "Field": "steuer_erloese_inland_export", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -19483,7 +19483,7 @@ { "Field": "steuer_aufwendung_inland_import", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -19494,7 +19494,7 @@ { "Field": "steuertext_innergemeinschaftlich", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -19505,7 +19505,7 @@ { "Field": "steuertext_export", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -19535,7 +19535,7 @@ }, { "name": "artikelkontingente", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -19596,7 +19596,7 @@ }, { "name": "artikelnummer_fremdnummern", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -19624,7 +19624,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -19635,7 +19635,7 @@ { "Field": "nummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "MUL", "Default": null, @@ -19657,7 +19657,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -19736,7 +19736,7 @@ }, { "name": "artikeloptionen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -19764,7 +19764,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -19775,7 +19775,7 @@ { "Field": "name_de", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -19786,7 +19786,7 @@ { "Field": "name_en", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -19808,7 +19808,7 @@ { "Field": "preisart", "Type": "varchar(20)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'absolut'", @@ -19819,7 +19819,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -19863,7 +19863,7 @@ }, { "name": "artikeloptionengruppe", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -19880,7 +19880,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -19891,7 +19891,7 @@ { "Field": "name_de", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -19902,7 +19902,7 @@ { "Field": "name_en", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -19946,7 +19946,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -19990,7 +19990,7 @@ }, { "name": "aufgabe", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -20018,7 +20018,7 @@ { "Field": "aufgabe", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -20029,7 +20029,7 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -20040,7 +20040,7 @@ { "Field": "prio", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -20172,7 +20172,7 @@ { "Field": "sonstiges", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -20183,7 +20183,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -20282,7 +20282,7 @@ { "Field": "note_color", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -20315,7 +20315,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -20488,7 +20488,7 @@ }, { "name": "aufgabe_erledigt", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -20560,7 +20560,7 @@ }, { "name": "auftrag", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -20588,7 +20588,7 @@ { "Field": "art", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -20599,7 +20599,7 @@ { "Field": "projekt", "Type": "varchar(222)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -20610,7 +20610,7 @@ { "Field": "belegnr", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -20621,7 +20621,7 @@ { "Field": "internet", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -20632,7 +20632,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -20643,7 +20643,7 @@ { "Field": "angebot", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -20654,7 +20654,7 @@ { "Field": "freitext", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -20665,7 +20665,7 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -20676,7 +20676,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -20698,7 +20698,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -20709,7 +20709,7 @@ { "Field": "abteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -20720,7 +20720,7 @@ { "Field": "unterabteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -20731,7 +20731,7 @@ { "Field": "strasse", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -20742,7 +20742,7 @@ { "Field": "adresszusatz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -20753,7 +20753,7 @@ { "Field": "ansprechpartner", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -20764,7 +20764,7 @@ { "Field": "plz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -20775,7 +20775,7 @@ { "Field": "ort", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -20786,7 +20786,7 @@ { "Field": "land", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -20797,7 +20797,7 @@ { "Field": "ustid", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -20830,7 +20830,7 @@ { "Field": "email", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -20841,7 +20841,7 @@ { "Field": "telefon", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -20852,7 +20852,7 @@ { "Field": "telefax", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -20863,7 +20863,7 @@ { "Field": "betreff", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -20874,7 +20874,7 @@ { "Field": "kundennummer", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -20885,7 +20885,7 @@ { "Field": "versandart", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -20896,7 +20896,7 @@ { "Field": "vertrieb", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -20907,7 +20907,7 @@ { "Field": "zahlungsweise", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -20951,7 +20951,7 @@ { "Field": "bank_inhaber", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -20962,7 +20962,7 @@ { "Field": "bank_institut", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -20973,7 +20973,7 @@ { "Field": "bank_blz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -20984,7 +20984,7 @@ { "Field": "bank_konto", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -20995,7 +20995,7 @@ { "Field": "kreditkarte_typ", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -21006,7 +21006,7 @@ { "Field": "kreditkarte_inhaber", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -21017,7 +21017,7 @@ { "Field": "kreditkarte_nummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -21028,7 +21028,7 @@ { "Field": "kreditkarte_pruefnummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -21039,7 +21039,7 @@ { "Field": "kreditkarte_monat", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -21050,7 +21050,7 @@ { "Field": "kreditkarte_jahr", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -21094,7 +21094,7 @@ { "Field": "versendet_per", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -21105,7 +21105,7 @@ { "Field": "versendet_durch", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -21160,7 +21160,7 @@ { "Field": "liefername", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -21171,7 +21171,7 @@ { "Field": "lieferabteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -21182,7 +21182,7 @@ { "Field": "lieferunterabteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -21193,7 +21193,7 @@ { "Field": "lieferland", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -21204,7 +21204,7 @@ { "Field": "lieferstrasse", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -21215,7 +21215,7 @@ { "Field": "lieferort", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -21226,7 +21226,7 @@ { "Field": "lieferplz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -21237,7 +21237,7 @@ { "Field": "lieferadresszusatz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -21248,7 +21248,7 @@ { "Field": "lieferansprechpartner", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -21259,7 +21259,7 @@ { "Field": "packstation_inhaber", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -21270,7 +21270,7 @@ { "Field": "packstation_station", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -21281,7 +21281,7 @@ { "Field": "packstation_ident", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -21292,7 +21292,7 @@ { "Field": "packstation_plz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -21303,7 +21303,7 @@ { "Field": "packstation_ort", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -21501,7 +21501,7 @@ { "Field": "stornogrund", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -21512,7 +21512,7 @@ { "Field": "stornosonstiges", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -21523,7 +21523,7 @@ { "Field": "stornorueckzahlung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -21545,7 +21545,7 @@ { "Field": "stornobankinhaber", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -21556,7 +21556,7 @@ { "Field": "stornobankkonto", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -21567,7 +21567,7 @@ { "Field": "stornobankblz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -21578,7 +21578,7 @@ { "Field": "stornobankbank", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -21600,7 +21600,7 @@ { "Field": "stornogutschriftbeleg", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -21622,7 +21622,7 @@ { "Field": "stornomanuellebearbeitung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -21633,7 +21633,7 @@ { "Field": "stornokommentar", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -21644,7 +21644,7 @@ { "Field": "stornobezahlt", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -21666,7 +21666,7 @@ { "Field": "stornobezahltvon", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -21688,7 +21688,7 @@ { "Field": "stornorueckzahlungper", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -21732,7 +21732,7 @@ { "Field": "kennen", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -21787,7 +21787,7 @@ { "Field": "transaktionsnummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -21963,7 +21963,7 @@ { "Field": "aktion", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -22018,7 +22018,7 @@ { "Field": "shopextid", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -22029,7 +22029,7 @@ { "Field": "shopextstatus", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -22040,7 +22040,7 @@ { "Field": "ihrebestellnummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -22051,7 +22051,7 @@ { "Field": "anschreiben", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -22238,7 +22238,7 @@ { "Field": "waehrung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "''EUR''", @@ -22304,7 +22304,7 @@ { "Field": "typ", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "''firma''", @@ -22326,7 +22326,7 @@ { "Field": "auftragseingangper", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -22359,7 +22359,7 @@ { "Field": "systemfreitext", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -22403,7 +22403,7 @@ { "Field": "internebezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -22502,7 +22502,7 @@ { "Field": "sprache", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -22513,7 +22513,7 @@ { "Field": "bundesland", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -22524,7 +22524,7 @@ { "Field": "gln", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -22535,7 +22535,7 @@ { "Field": "liefergln", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -22546,7 +22546,7 @@ { "Field": "lieferemail", "Type": "varchar(200)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -22579,7 +22579,7 @@ { "Field": "deliverythresholdvatid", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -22623,7 +22623,7 @@ { "Field": "lieferantennummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -22634,7 +22634,7 @@ { "Field": "lieferantkdrnummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -22689,7 +22689,7 @@ { "Field": "kostenstelle", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -22700,7 +22700,7 @@ { "Field": "bodyzusatz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -22711,7 +22711,7 @@ { "Field": "lieferbedingung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -22722,7 +22722,7 @@ { "Field": "titel", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -22733,7 +22733,7 @@ { "Field": "liefertitel", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -22799,7 +22799,7 @@ { "Field": "bundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -22810,7 +22810,7 @@ { "Field": "lieferbundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -22821,7 +22821,7 @@ { "Field": "kundennummer_buchhaltung", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -22832,7 +22832,7 @@ { "Field": "storage_country", "Type": "varchar(3)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -22972,7 +22972,7 @@ }, { "name": "auftrag_position", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -23022,7 +23022,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -23033,7 +23033,7 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -23044,7 +23044,7 @@ { "Field": "internerkommentar", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -23055,7 +23055,7 @@ { "Field": "nummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -23088,7 +23088,7 @@ { "Field": "waehrung", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -23110,7 +23110,7 @@ { "Field": "vpe", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -23132,7 +23132,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -23143,7 +23143,7 @@ { "Field": "umsatzsteuer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -23154,7 +23154,7 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -23341,7 +23341,7 @@ { "Field": "einheit", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -23352,7 +23352,7 @@ { "Field": "webid", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -23385,7 +23385,7 @@ { "Field": "zolltarifnummer", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'0'", @@ -23396,7 +23396,7 @@ { "Field": "herkunftsland", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'0'", @@ -23407,7 +23407,7 @@ { "Field": "artikelnummerkunde", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -23418,7 +23418,7 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -23429,7 +23429,7 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -23440,7 +23440,7 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -23451,7 +23451,7 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -23462,7 +23462,7 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -23473,7 +23473,7 @@ { "Field": "freifeld6", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -23484,7 +23484,7 @@ { "Field": "freifeld7", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -23495,7 +23495,7 @@ { "Field": "freifeld8", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -23506,7 +23506,7 @@ { "Field": "freifeld9", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -23517,7 +23517,7 @@ { "Field": "freifeld10", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -23550,7 +23550,7 @@ { "Field": "kostenstelle", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -23572,7 +23572,7 @@ { "Field": "steuertext", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -23583,7 +23583,7 @@ { "Field": "erloese", "Type": "varchar(8)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -23605,7 +23605,7 @@ { "Field": "einkaufspreiswaehrung", "Type": "varchar(8)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -23649,7 +23649,7 @@ { "Field": "ekwaehrung", "Type": "varchar(8)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -23671,7 +23671,7 @@ { "Field": "freifeld11", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -23682,7 +23682,7 @@ { "Field": "freifeld12", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -23693,7 +23693,7 @@ { "Field": "freifeld13", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -23704,7 +23704,7 @@ { "Field": "freifeld14", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -23715,7 +23715,7 @@ { "Field": "freifeld15", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -23726,7 +23726,7 @@ { "Field": "freifeld16", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -23737,7 +23737,7 @@ { "Field": "freifeld17", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -23748,7 +23748,7 @@ { "Field": "freifeld18", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -23759,7 +23759,7 @@ { "Field": "freifeld19", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -23770,7 +23770,7 @@ { "Field": "freifeld20", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -23781,7 +23781,7 @@ { "Field": "freifeld21", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -23792,7 +23792,7 @@ { "Field": "freifeld22", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -23803,7 +23803,7 @@ { "Field": "freifeld23", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -23814,7 +23814,7 @@ { "Field": "freifeld24", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -23825,7 +23825,7 @@ { "Field": "freifeld25", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -23836,7 +23836,7 @@ { "Field": "freifeld26", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -23847,7 +23847,7 @@ { "Field": "freifeld27", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -23858,7 +23858,7 @@ { "Field": "freifeld28", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -23869,7 +23869,7 @@ { "Field": "freifeld29", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -23880,7 +23880,7 @@ { "Field": "freifeld30", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -23891,7 +23891,7 @@ { "Field": "freifeld31", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -23902,7 +23902,7 @@ { "Field": "freifeld32", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -23913,7 +23913,7 @@ { "Field": "freifeld33", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -23924,7 +23924,7 @@ { "Field": "freifeld34", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -23935,7 +23935,7 @@ { "Field": "freifeld35", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -23946,7 +23946,7 @@ { "Field": "freifeld36", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -23957,7 +23957,7 @@ { "Field": "freifeld37", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -23968,7 +23968,7 @@ { "Field": "freifeld38", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -23979,7 +23979,7 @@ { "Field": "freifeld39", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -23990,7 +23990,7 @@ { "Field": "freifeld40", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -24001,7 +24001,7 @@ { "Field": "formelmenge", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -24012,7 +24012,7 @@ { "Field": "formelpreis", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -24056,7 +24056,7 @@ { "Field": "zollwaehrung", "Type": "varchar(3)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -24276,7 +24276,7 @@ }, { "name": "auftrag_protokoll", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -24315,7 +24315,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -24326,7 +24326,7 @@ { "Field": "grund", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -24356,7 +24356,7 @@ }, { "name": "autoresponder_blacklist", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -24384,7 +24384,7 @@ { "Field": "mailaddress", "Type": "varchar(512)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -24406,7 +24406,7 @@ }, { "name": "backup", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -24434,7 +24434,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -24445,7 +24445,7 @@ { "Field": "dateiname", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -24478,7 +24478,7 @@ }, { "name": "beleg_chargesnmhd", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -24495,7 +24495,7 @@ { "Field": "doctype", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -24528,7 +24528,7 @@ { "Field": "type", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -24539,7 +24539,7 @@ { "Field": "type2", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -24550,7 +24550,7 @@ { "Field": "type3", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -24561,7 +24561,7 @@ { "Field": "wert", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -24572,7 +24572,7 @@ { "Field": "wert2", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -24583,7 +24583,7 @@ { "Field": "wert3", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -24616,7 +24616,7 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -24678,7 +24678,7 @@ }, { "name": "beleg_zwischenpositionen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -24695,7 +24695,7 @@ { "Field": "doctype", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -24739,7 +24739,7 @@ { "Field": "postype", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -24750,7 +24750,7 @@ { "Field": "wert", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -24780,7 +24780,7 @@ }, { "name": "belegeimport", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -24830,7 +24830,7 @@ { "Field": "art", "Type": "varchar(20)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -24841,7 +24841,7 @@ { "Field": "status", "Type": "varchar(24)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -24852,7 +24852,7 @@ { "Field": "beleg_status", "Type": "varchar(24)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -24863,7 +24863,7 @@ { "Field": "beleg_datum", "Type": "varchar(24)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -24874,7 +24874,7 @@ { "Field": "beleg_lieferdatum", "Type": "varchar(24)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -24885,7 +24885,7 @@ { "Field": "beleg_tatsaechlicheslieferdatum", "Type": "varchar(24)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -24896,7 +24896,7 @@ { "Field": "beleg_versandart", "Type": "varchar(24)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -24907,7 +24907,7 @@ { "Field": "beleg_zahlungsweise", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -24918,7 +24918,7 @@ { "Field": "beleg_belegnr", "Type": "varchar(20)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -24929,7 +24929,7 @@ { "Field": "beleg_hauptbelegnr", "Type": "varchar(20)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -24940,7 +24940,7 @@ { "Field": "beleg_kundennummer", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -24951,7 +24951,7 @@ { "Field": "beleg_lieferantennummer", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -24962,7 +24962,7 @@ { "Field": "beleg_name", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -24973,7 +24973,7 @@ { "Field": "beleg_abteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -24984,7 +24984,7 @@ { "Field": "beleg_unterabteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -24995,7 +24995,7 @@ { "Field": "beleg_adresszusatz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25006,7 +25006,7 @@ { "Field": "beleg_ansprechpartner", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25017,7 +25017,7 @@ { "Field": "beleg_telefon", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25028,7 +25028,7 @@ { "Field": "beleg_email", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25039,7 +25039,7 @@ { "Field": "beleg_land", "Type": "varchar(2)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25050,7 +25050,7 @@ { "Field": "beleg_strasse", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25061,7 +25061,7 @@ { "Field": "beleg_plz", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25072,7 +25072,7 @@ { "Field": "beleg_ort", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25094,7 +25094,7 @@ { "Field": "beleg_aktion", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25105,7 +25105,7 @@ { "Field": "beleg_internebemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25116,7 +25116,7 @@ { "Field": "beleg_internebezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25127,7 +25127,7 @@ { "Field": "beleg_freitext", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25138,7 +25138,7 @@ { "Field": "beleg_ihrebestellnummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25149,7 +25149,7 @@ { "Field": "beleg_lieferbedingung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25160,7 +25160,7 @@ { "Field": "beleg_art", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25182,7 +25182,7 @@ { "Field": "artikel_nummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25193,7 +25193,7 @@ { "Field": "artikel_ean", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25204,7 +25204,7 @@ { "Field": "artikel_bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25215,7 +25215,7 @@ { "Field": "artikel_beschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25270,7 +25270,7 @@ { "Field": "artikel_waehrung", "Type": "varchar(3)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25303,7 +25303,7 @@ { "Field": "artikel_umsatzsteuer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25314,7 +25314,7 @@ { "Field": "artikel_einheit", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25325,7 +25325,7 @@ { "Field": "artikel_zolltarifnummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25336,7 +25336,7 @@ { "Field": "artikel_herkunftsland", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25347,7 +25347,7 @@ { "Field": "artikel_artikelnummerkunde", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25358,7 +25358,7 @@ { "Field": "artikel_freifeld1", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25369,7 +25369,7 @@ { "Field": "artikel_freifeld2", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25380,7 +25380,7 @@ { "Field": "artikel_freifeld3", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25391,7 +25391,7 @@ { "Field": "artikel_freifeld4", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25402,7 +25402,7 @@ { "Field": "artikel_freifeld5", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25413,7 +25413,7 @@ { "Field": "artikel_freifeld6", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25424,7 +25424,7 @@ { "Field": "artikel_freifeld7", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25435,7 +25435,7 @@ { "Field": "artikel_freifeld8", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25446,7 +25446,7 @@ { "Field": "artikel_freifeld9", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25457,7 +25457,7 @@ { "Field": "artikel_freifeld10", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25468,7 +25468,7 @@ { "Field": "artikel_freifeld11", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25479,7 +25479,7 @@ { "Field": "artikel_freifeld12", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25490,7 +25490,7 @@ { "Field": "artikel_freifeld13", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25501,7 +25501,7 @@ { "Field": "artikel_freifeld14", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25512,7 +25512,7 @@ { "Field": "artikel_freifeld15", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25523,7 +25523,7 @@ { "Field": "artikel_freifeld16", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25534,7 +25534,7 @@ { "Field": "artikel_freifeld17", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25545,7 +25545,7 @@ { "Field": "artikel_freifeld18", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25556,7 +25556,7 @@ { "Field": "artikel_freifeld19", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25567,7 +25567,7 @@ { "Field": "artikel_freifeld20", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25600,7 +25600,7 @@ { "Field": "adresse_typ", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25611,7 +25611,7 @@ { "Field": "adresse_ustid", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25622,7 +25622,7 @@ { "Field": "adresse_anschreiben", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25644,7 +25644,7 @@ { "Field": "adresse_freifeld1", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25655,7 +25655,7 @@ { "Field": "adresse_freifeld2", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25666,7 +25666,7 @@ { "Field": "adresse_freifeld3", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25677,7 +25677,7 @@ { "Field": "adresse_freifeld4", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25688,7 +25688,7 @@ { "Field": "adresse_freifeld5", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25699,7 +25699,7 @@ { "Field": "adresse_freifeld6", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25710,7 +25710,7 @@ { "Field": "adresse_freifeld7", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25721,7 +25721,7 @@ { "Field": "adresse_freifeld8", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25732,7 +25732,7 @@ { "Field": "adresse_freifeld9", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25743,7 +25743,7 @@ { "Field": "adresse_freifeld10", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25754,7 +25754,7 @@ { "Field": "adresse_freifeld11", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25765,7 +25765,7 @@ { "Field": "adresse_freifeld12", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25776,7 +25776,7 @@ { "Field": "adresse_freifeld13", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25787,7 +25787,7 @@ { "Field": "adresse_freifeld14", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25798,7 +25798,7 @@ { "Field": "adresse_freifeld15", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25809,7 +25809,7 @@ { "Field": "adresse_freifeld16", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25820,7 +25820,7 @@ { "Field": "adresse_freifeld17", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25831,7 +25831,7 @@ { "Field": "adresse_freifeld18", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25842,7 +25842,7 @@ { "Field": "adresse_freifeld19", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25853,7 +25853,7 @@ { "Field": "adresse_freifeld20", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25864,7 +25864,7 @@ { "Field": "beleg_sprache", "Type": "varchar(20)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25875,7 +25875,7 @@ { "Field": "beleg_auftragsnummer", "Type": "varchar(20)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25886,7 +25886,7 @@ { "Field": "beleg_rechnungsnumer", "Type": "varchar(20)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25897,7 +25897,7 @@ { "Field": "beleg_liefername", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25908,7 +25908,7 @@ { "Field": "beleg_lieferabteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25919,7 +25919,7 @@ { "Field": "beleg_lieferunterabteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25930,7 +25930,7 @@ { "Field": "beleg_lieferland", "Type": "varchar(2)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25941,7 +25941,7 @@ { "Field": "beleg_lieferstrasse", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25952,7 +25952,7 @@ { "Field": "beleg_lieferort", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25963,7 +25963,7 @@ { "Field": "beleg_lieferplz", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25974,7 +25974,7 @@ { "Field": "beleg_lieferadresszusatz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25985,7 +25985,7 @@ { "Field": "beleg_lieferansprechpartner", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -25996,7 +25996,7 @@ { "Field": "beleg_abschlagauftrag", "Type": "varchar(20)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -26007,7 +26007,7 @@ { "Field": "beleg_abschlagauftragbezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -26051,7 +26051,7 @@ { "Field": "beleg_bodyzusatz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -26062,7 +26062,7 @@ { "Field": "beleg_bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -26073,7 +26073,7 @@ { "Field": "beleg_waehrung", "Type": "varchar(20)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -26084,7 +26084,7 @@ { "Field": "beleg_bundesstaat", "Type": "varchar(20)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -26095,7 +26095,7 @@ { "Field": "beleg_internet", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -26117,7 +26117,7 @@ }, { "name": "belegeimport_running", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -26145,7 +26145,7 @@ { "Field": "art", "Type": "varchar(20)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -26156,7 +26156,7 @@ { "Field": "status", "Type": "varchar(20)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -26167,7 +26167,7 @@ { "Field": "filename", "Type": "varchar(256)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -26178,7 +26178,7 @@ { "Field": "command", "Type": "varchar(20)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -26200,7 +26200,7 @@ }, { "name": "belegevorlagen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -26217,7 +26217,7 @@ { "Field": "belegtyp", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -26228,7 +26228,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -26250,7 +26250,7 @@ { "Field": "json", "Type": "mediumtext", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -26261,7 +26261,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -26294,7 +26294,7 @@ }, { "name": "berichte", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -26311,7 +26311,7 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -26322,7 +26322,7 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -26333,7 +26333,7 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -26344,7 +26344,7 @@ { "Field": "struktur", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -26355,7 +26355,7 @@ { "Field": "spaltennamen", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -26366,7 +26366,7 @@ { "Field": "spaltenbreite", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -26377,7 +26377,7 @@ { "Field": "spaltenausrichtung", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -26388,7 +26388,7 @@ { "Field": "variablen", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -26399,7 +26399,7 @@ { "Field": "sumcols", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -26410,7 +26410,7 @@ { "Field": "doctype", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "MUL", "Default": null, @@ -26432,7 +26432,7 @@ { "Field": "doctype_actionmenuname", "Type": "varchar(256)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -26443,7 +26443,7 @@ { "Field": "doctype_actionmenufiletype", "Type": "varchar(256)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'csv'", @@ -26487,7 +26487,7 @@ { "Field": "ftphost", "Type": "varchar(512)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -26509,7 +26509,7 @@ { "Field": "ftpuser", "Type": "varchar(512)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -26520,7 +26520,7 @@ { "Field": "ftppassword", "Type": "varchar(512)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -26553,7 +26553,7 @@ { "Field": "ftpnamealternativ", "Type": "varchar(512)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -26575,7 +26575,7 @@ { "Field": "emailempfaenger", "Type": "varchar(512)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -26586,7 +26586,7 @@ { "Field": "emailbetreff", "Type": "varchar(512)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -26619,7 +26619,7 @@ { "Field": "emailnamealternativ", "Type": "varchar(512)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -26630,7 +26630,7 @@ { "Field": "typ", "Type": "varchar(16)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'ftp'", @@ -26660,7 +26660,7 @@ }, { "name": "bestbeforebatchtoposition", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -26677,7 +26677,7 @@ { "Field": "doctype", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -26710,7 +26710,7 @@ { "Field": "bestbeforedatebatch", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -26742,7 +26742,7 @@ }, { "name": "bestellung", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -26770,7 +26770,7 @@ { "Field": "projekt", "Type": "varchar(222)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -26781,7 +26781,7 @@ { "Field": "bestellungsart", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -26792,7 +26792,7 @@ { "Field": "belegnr", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -26803,7 +26803,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -26814,7 +26814,7 @@ { "Field": "angebot", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -26825,7 +26825,7 @@ { "Field": "freitext", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -26836,7 +26836,7 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -26847,7 +26847,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -26869,7 +26869,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -26880,7 +26880,7 @@ { "Field": "vorname", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -26891,7 +26891,7 @@ { "Field": "abteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -26902,7 +26902,7 @@ { "Field": "unterabteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -26913,7 +26913,7 @@ { "Field": "strasse", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -26924,7 +26924,7 @@ { "Field": "adresszusatz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -26935,7 +26935,7 @@ { "Field": "plz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -26946,7 +26946,7 @@ { "Field": "ort", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -26957,7 +26957,7 @@ { "Field": "land", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -26979,7 +26979,7 @@ { "Field": "liefername", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -26990,7 +26990,7 @@ { "Field": "lieferabteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -27001,7 +27001,7 @@ { "Field": "lieferunterabteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -27012,7 +27012,7 @@ { "Field": "lieferland", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -27023,7 +27023,7 @@ { "Field": "lieferstrasse", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -27034,7 +27034,7 @@ { "Field": "lieferort", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -27045,7 +27045,7 @@ { "Field": "lieferplz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -27056,7 +27056,7 @@ { "Field": "lieferadresszusatz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -27067,7 +27067,7 @@ { "Field": "lieferansprechpartner", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -27078,7 +27078,7 @@ { "Field": "ustid", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -27100,7 +27100,7 @@ { "Field": "email", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -27111,7 +27111,7 @@ { "Field": "telefon", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -27122,7 +27122,7 @@ { "Field": "telefax", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -27133,7 +27133,7 @@ { "Field": "betreff", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -27144,7 +27144,7 @@ { "Field": "kundennummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -27155,7 +27155,7 @@ { "Field": "lieferantennummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -27166,7 +27166,7 @@ { "Field": "versandart", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -27188,7 +27188,7 @@ { "Field": "einkaeufer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -27210,7 +27210,7 @@ { "Field": "zahlungsweise", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -27221,7 +27221,7 @@ { "Field": "zahlungsstatus", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -27276,7 +27276,7 @@ { "Field": "bank_inhaber", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -27287,7 +27287,7 @@ { "Field": "bank_institut", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -27320,7 +27320,7 @@ { "Field": "paypalaccount", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -27375,7 +27375,7 @@ { "Field": "versendet_per", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -27386,7 +27386,7 @@ { "Field": "versendet_durch", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -27419,7 +27419,7 @@ { "Field": "ansprechpartner", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -27430,7 +27430,7 @@ { "Field": "anschreiben", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -27518,7 +27518,7 @@ { "Field": "waehrung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "''EUR''", @@ -27573,7 +27573,7 @@ { "Field": "typ", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "''firma''", @@ -27584,7 +27584,7 @@ { "Field": "verbindlichkeiteninfo", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -27639,7 +27639,7 @@ { "Field": "bestellungbestaetigtper", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -27650,7 +27650,7 @@ { "Field": "bestellungbestaetigtabnummer", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -27683,7 +27683,7 @@ { "Field": "internebezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -27716,7 +27716,7 @@ { "Field": "sprache", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -27727,7 +27727,7 @@ { "Field": "kundennummerlieferant", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -27782,7 +27782,7 @@ { "Field": "kostenstelle", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -27793,7 +27793,7 @@ { "Field": "bodyzusatz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -27804,7 +27804,7 @@ { "Field": "lieferbedingung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -27815,7 +27815,7 @@ { "Field": "titel", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -27826,7 +27826,7 @@ { "Field": "liefertitel", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -27859,7 +27859,7 @@ { "Field": "bundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -27870,7 +27870,7 @@ { "Field": "lieferbundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -27940,7 +27940,7 @@ }, { "name": "bestellung_position", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -27990,7 +27990,7 @@ { "Field": "bezeichnunglieferant", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -28001,7 +28001,7 @@ { "Field": "bestellnummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -28012,7 +28012,7 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -28045,7 +28045,7 @@ { "Field": "waehrung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -28067,7 +28067,7 @@ { "Field": "vpe", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -28089,7 +28089,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -28100,7 +28100,7 @@ { "Field": "umsatzsteuer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -28111,7 +28111,7 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -28144,7 +28144,7 @@ { "Field": "manuellgeliefertbearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -28188,7 +28188,7 @@ { "Field": "einheit", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -28199,7 +28199,7 @@ { "Field": "zolltarifnummer", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'0'", @@ -28210,7 +28210,7 @@ { "Field": "herkunftsland", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'0'", @@ -28221,7 +28221,7 @@ { "Field": "artikelnummerkunde", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -28254,7 +28254,7 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -28265,7 +28265,7 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -28276,7 +28276,7 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -28287,7 +28287,7 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -28298,7 +28298,7 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -28309,7 +28309,7 @@ { "Field": "freifeld6", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -28320,7 +28320,7 @@ { "Field": "freifeld7", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -28331,7 +28331,7 @@ { "Field": "freifeld8", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -28342,7 +28342,7 @@ { "Field": "freifeld9", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -28353,7 +28353,7 @@ { "Field": "freifeld10", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -28408,7 +28408,7 @@ { "Field": "kostenstelle", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -28430,7 +28430,7 @@ { "Field": "steuertext", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -28441,7 +28441,7 @@ { "Field": "erloese", "Type": "varchar(8)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -28463,7 +28463,7 @@ { "Field": "freifeld11", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -28474,7 +28474,7 @@ { "Field": "freifeld12", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -28485,7 +28485,7 @@ { "Field": "freifeld13", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -28496,7 +28496,7 @@ { "Field": "freifeld14", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -28507,7 +28507,7 @@ { "Field": "freifeld15", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -28518,7 +28518,7 @@ { "Field": "freifeld16", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -28529,7 +28529,7 @@ { "Field": "freifeld17", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -28540,7 +28540,7 @@ { "Field": "freifeld18", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -28551,7 +28551,7 @@ { "Field": "freifeld19", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -28562,7 +28562,7 @@ { "Field": "freifeld20", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -28573,7 +28573,7 @@ { "Field": "freifeld21", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -28584,7 +28584,7 @@ { "Field": "freifeld22", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -28595,7 +28595,7 @@ { "Field": "freifeld23", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -28606,7 +28606,7 @@ { "Field": "freifeld24", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -28617,7 +28617,7 @@ { "Field": "freifeld25", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -28628,7 +28628,7 @@ { "Field": "freifeld26", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -28639,7 +28639,7 @@ { "Field": "freifeld27", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -28650,7 +28650,7 @@ { "Field": "freifeld28", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -28661,7 +28661,7 @@ { "Field": "freifeld29", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -28672,7 +28672,7 @@ { "Field": "freifeld30", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -28683,7 +28683,7 @@ { "Field": "freifeld31", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -28694,7 +28694,7 @@ { "Field": "freifeld32", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -28705,7 +28705,7 @@ { "Field": "freifeld33", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -28716,7 +28716,7 @@ { "Field": "freifeld34", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -28727,7 +28727,7 @@ { "Field": "freifeld35", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -28738,7 +28738,7 @@ { "Field": "freifeld36", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -28749,7 +28749,7 @@ { "Field": "freifeld37", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -28760,7 +28760,7 @@ { "Field": "freifeld38", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -28771,7 +28771,7 @@ { "Field": "freifeld39", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -28782,7 +28782,7 @@ { "Field": "freifeld40", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -28884,7 +28884,7 @@ }, { "name": "bestellung_protokoll", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -28923,7 +28923,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -28934,7 +28934,7 @@ { "Field": "grund", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -28964,7 +28964,7 @@ }, { "name": "bestellvorschlag", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -29015,7 +29015,7 @@ }, { "name": "bestellvorschlag_app", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -29175,7 +29175,7 @@ { "Field": "kommentar", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -29197,7 +29197,7 @@ { "Field": "typ", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -29312,7 +29312,7 @@ }, { "name": "bestellvorschlag_app_staffeln", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -29392,7 +29392,7 @@ }, { "name": "boxnachrichten", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -29431,7 +29431,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -29442,7 +29442,7 @@ { "Field": "nachricht", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -29486,7 +29486,7 @@ { "Field": "objekt", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -29530,7 +29530,7 @@ }, { "name": "bundesstaaten", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -29547,7 +29547,7 @@ { "Field": "land", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -29558,7 +29558,7 @@ { "Field": "iso", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -29569,7 +29569,7 @@ { "Field": "bundesstaat", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -29602,7 +29602,7 @@ }, { "name": "caldav_changes", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -29619,7 +29619,7 @@ { "Field": "uri", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -29630,7 +29630,7 @@ { "Field": "change_type", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -29652,7 +29652,7 @@ }, { "name": "calendar", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -29691,7 +29691,7 @@ }, { "name": "change_log", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -29708,7 +29708,7 @@ { "Field": "bearbeiter", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -29719,7 +29719,7 @@ { "Field": "module", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -29730,7 +29730,7 @@ { "Field": "action", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -29741,7 +29741,7 @@ { "Field": "tabelle", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -29793,7 +29793,7 @@ }, { "name": "change_log_field", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -29821,7 +29821,7 @@ { "Field": "fieldname", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -29832,7 +29832,7 @@ { "Field": "oldvalue", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -29843,7 +29843,7 @@ { "Field": "newvalue", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -29873,7 +29873,7 @@ }, { "name": "chargen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -29890,7 +29890,7 @@ { "Field": "charge", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -29923,7 +29923,7 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -29956,7 +29956,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -29989,7 +29989,7 @@ }, { "name": "chargen_log", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -30039,7 +30039,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -30050,7 +30050,7 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -30105,7 +30105,7 @@ { "Field": "doctype", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -30187,7 +30187,7 @@ }, { "name": "chargenverwaltung", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -30237,7 +30237,7 @@ { "Field": "vpe", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -30259,7 +30259,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -30292,7 +30292,7 @@ }, { "name": "chat", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -30331,7 +30331,7 @@ { "Field": "message", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -30391,7 +30391,7 @@ }, { "name": "chat_gelesen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -30469,7 +30469,7 @@ }, { "name": "checkaltertable", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -30486,7 +30486,7 @@ { "Field": "checksum", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -30508,7 +30508,7 @@ }, { "name": "collectivedebitor", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -30547,7 +30547,7 @@ { "Field": "country", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -30580,7 +30580,7 @@ { "Field": "account", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -30624,7 +30624,7 @@ }, { "name": "cronjob_kommissionierung", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -30652,7 +30652,7 @@ { "Field": "bezeichnung", "Type": "varchar(40)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -30674,7 +30674,7 @@ }, { "name": "cronjob_log", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -30735,7 +30735,7 @@ { "Field": "cronjob_name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -30757,7 +30757,7 @@ { "Field": "status", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -30788,7 +30788,7 @@ }, { "name": "cronjob_starter_running", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -30805,7 +30805,7 @@ { "Field": "uid", "Type": "varchar(23)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -30827,7 +30827,7 @@ { "Field": "type", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -30880,7 +30880,7 @@ }, { "name": "datei", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -30897,7 +30897,7 @@ { "Field": "titel", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -30908,7 +30908,7 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -30919,7 +30919,7 @@ { "Field": "nummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -30974,7 +30974,7 @@ }, { "name": "datei_stichwoerter", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -31002,7 +31002,7 @@ { "Field": "subjekt", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -31013,7 +31013,7 @@ { "Field": "objekt", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -31024,7 +31024,7 @@ { "Field": "parameter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -31068,7 +31068,7 @@ { "Field": "objekt2", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -31106,7 +31106,7 @@ }, { "name": "datei_stichwortvorlagen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -31123,7 +31123,7 @@ { "Field": "beschriftung", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -31145,7 +31145,7 @@ { "Field": "modul", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -31167,7 +31167,7 @@ }, { "name": "datei_version", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -31195,7 +31195,7 @@ { "Field": "ersteller", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -31228,7 +31228,7 @@ { "Field": "dateiname", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -31239,7 +31239,7 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -31261,7 +31261,7 @@ { "Field": "size", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -31291,7 +31291,7 @@ }, { "name": "dateibaum", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -31319,7 +31319,7 @@ { "Field": "pfad", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -31341,7 +31341,7 @@ }, { "name": "datev_buchungen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -31358,7 +31358,7 @@ { "Field": "wkz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -31391,7 +31391,7 @@ { "Field": "belegfeld1", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -31402,7 +31402,7 @@ { "Field": "belegfeld2", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -31424,7 +31424,7 @@ { "Field": "konto", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -31446,7 +31446,7 @@ { "Field": "kost1", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -31457,7 +31457,7 @@ { "Field": "kost2", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -31468,7 +31468,7 @@ { "Field": "kostmenge", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -31490,7 +31490,7 @@ { "Field": "buchungstext", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -31501,7 +31501,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -31567,7 +31567,7 @@ }, { "name": "datevconnect_online_export", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -31584,7 +31584,7 @@ { "Field": "datum", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -31606,7 +31606,7 @@ { "Field": "status", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -31628,7 +31628,7 @@ }, { "name": "delivery_problemcase", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -31645,7 +31645,7 @@ { "Field": "problemcase", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -31678,7 +31678,7 @@ }, { "name": "device_jobs", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -31695,7 +31695,7 @@ { "Field": "deviceidsource", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -31706,7 +31706,7 @@ { "Field": "deviceiddest", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -31717,7 +31717,7 @@ { "Field": "job", "Type": "longtext", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -31750,7 +31750,7 @@ { "Field": "art", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -31783,7 +31783,7 @@ }, { "name": "docscan", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -31811,7 +31811,7 @@ { "Field": "kategorie", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -31833,7 +31833,7 @@ }, { "name": "docscan_metadata", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -31861,7 +31861,7 @@ { "Field": "meta_key", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -31872,7 +31872,7 @@ { "Field": "meta_value", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -31894,7 +31894,7 @@ }, { "name": "document_customization_infoblock", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -31911,7 +31911,7 @@ { "Field": "keyword", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -31922,7 +31922,7 @@ { "Field": "doctype", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -31933,7 +31933,7 @@ { "Field": "fontstyle", "Type": "varchar(2)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -31944,7 +31944,7 @@ { "Field": "alignment", "Type": "varchar(2)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -31955,7 +31955,7 @@ { "Field": "content", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -31999,7 +31999,7 @@ }, { "name": "document_customization_infoblock_translation", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -32027,7 +32027,7 @@ { "Field": "language_code", "Type": "varchar(2)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -32038,7 +32038,7 @@ { "Field": "content", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -32060,7 +32060,7 @@ { "Field": "fontstyle", "Type": "varchar(2)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -32071,7 +32071,7 @@ { "Field": "alignment", "Type": "varchar(2)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -32101,7 +32101,7 @@ }, { "name": "dokumente", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -32140,7 +32140,7 @@ { "Field": "typ", "Type": "varchar(24)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -32151,7 +32151,7 @@ { "Field": "von", "Type": "varchar(512)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -32162,7 +32162,7 @@ { "Field": "firma", "Type": "varchar(512)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -32173,7 +32173,7 @@ { "Field": "an", "Type": "varchar(512)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -32184,7 +32184,7 @@ { "Field": "email_an", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -32195,7 +32195,7 @@ { "Field": "firma_an", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -32206,7 +32206,7 @@ { "Field": "adresse", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -32217,7 +32217,7 @@ { "Field": "plz", "Type": "varchar(16)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -32228,7 +32228,7 @@ { "Field": "ort", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -32239,7 +32239,7 @@ { "Field": "land", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -32261,7 +32261,7 @@ { "Field": "betreff", "Type": "varchar(1023)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -32272,7 +32272,7 @@ { "Field": "content", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -32294,7 +32294,7 @@ { "Field": "send_as", "Type": "varchar(24)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -32305,7 +32305,7 @@ { "Field": "email", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -32371,7 +32371,7 @@ { "Field": "ansprechpartner", "Type": "varchar(512)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -32382,7 +32382,7 @@ { "Field": "email_cc", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -32393,7 +32393,7 @@ { "Field": "email_bcc", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -32404,7 +32404,7 @@ { "Field": "bearbeiter", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -32437,7 +32437,7 @@ { "Field": "internebezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -32467,7 +32467,7 @@ }, { "name": "dokumente_send", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -32484,7 +32484,7 @@ { "Field": "dokument", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -32506,7 +32506,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -32528,7 +32528,7 @@ { "Field": "ansprechpartner", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -32561,7 +32561,7 @@ { "Field": "art", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -32572,7 +32572,7 @@ { "Field": "betreff", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -32583,7 +32583,7 @@ { "Field": "text", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -32657,7 +32657,7 @@ }, { "name": "dropshipping", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -32715,7 +32715,7 @@ }, { "name": "dropshipping_gruppe", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -32732,7 +32732,7 @@ { "Field": "bezeichnung", "Type": "varchar(200)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -32974,7 +32974,7 @@ { "Field": "belegeautoversand", "Type": "varchar(16)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'standardauftrag'", @@ -33004,7 +33004,7 @@ }, { "name": "drucker", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -33021,7 +33021,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -33032,7 +33032,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -33043,7 +33043,7 @@ { "Field": "befehl", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -33076,7 +33076,7 @@ { "Field": "tomail", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -33087,7 +33087,7 @@ { "Field": "tomailtext", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -33098,7 +33098,7 @@ { "Field": "tomailsubject", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -33109,7 +33109,7 @@ { "Field": "adapterboxip", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -33120,7 +33120,7 @@ { "Field": "adapterboxseriennummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -33131,7 +33131,7 @@ { "Field": "adapterboxpasswort", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -33142,7 +33142,7 @@ { "Field": "anbindung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -33175,7 +33175,7 @@ { "Field": "format", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -33197,7 +33197,7 @@ { "Field": "json", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -33219,7 +33219,7 @@ }, { "name": "drucker_spooler", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -33247,7 +33247,7 @@ { "Field": "filename", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -33269,7 +33269,7 @@ { "Field": "description", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -33280,7 +33280,7 @@ { "Field": "anzahl", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -33291,7 +33291,7 @@ { "Field": "befehl", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -33302,7 +33302,7 @@ { "Field": "anbindung", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -33373,7 +33373,7 @@ }, { "name": "dsgvo_loeschauftrag", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -33412,7 +33412,7 @@ { "Field": "kommentar", "Type": "varchar(512)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -33434,7 +33434,7 @@ }, { "name": "dta", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -33473,7 +33473,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -33484,7 +33484,7 @@ { "Field": "konto", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -33495,7 +33495,7 @@ { "Field": "blz", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -33517,7 +33517,7 @@ { "Field": "vz1", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -33528,7 +33528,7 @@ { "Field": "vz2", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -33539,7 +33539,7 @@ { "Field": "vz3", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -33594,7 +33594,7 @@ { "Field": "status", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -33616,7 +33616,7 @@ { "Field": "waehrung", "Type": "varchar(3)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'EUR'", @@ -33660,7 +33660,7 @@ { "Field": "mandatsreferenzart", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -33671,7 +33671,7 @@ { "Field": "mandatsreferenzwdhart", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -33693,7 +33693,7 @@ }, { "name": "dta_datei", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -33710,7 +33710,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -33721,7 +33721,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -33732,7 +33732,7 @@ { "Field": "inhalt", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -33754,7 +33754,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -33765,7 +33765,7 @@ { "Field": "art", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -33809,7 +33809,7 @@ }, { "name": "dta_datei_verband", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -33837,7 +33837,7 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -33848,7 +33848,7 @@ { "Field": "dateiname", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -33859,7 +33859,7 @@ { "Field": "email", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -33870,7 +33870,7 @@ { "Field": "betreff", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -33881,7 +33881,7 @@ { "Field": "nachricht", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -33903,7 +33903,7 @@ { "Field": "status", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -33947,7 +33947,7 @@ { "Field": "partnerid", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -33958,7 +33958,7 @@ { "Field": "kundennummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -33980,7 +33980,7 @@ }, { "name": "eangenerator", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -33997,7 +33997,7 @@ { "Field": "ean", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -34030,7 +34030,7 @@ }, { "name": "ebay_articles_to_sync", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -34058,7 +34058,7 @@ { "Field": "request", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -34069,7 +34069,7 @@ { "Field": "type", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -34129,7 +34129,7 @@ }, { "name": "ebay_artikelzuordnungen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -34146,7 +34146,7 @@ { "Field": "itemid", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -34168,7 +34168,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -34179,7 +34179,7 @@ { "Field": "variation", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -34190,7 +34190,7 @@ { "Field": "sku", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -34245,7 +34245,7 @@ }, { "name": "ebay_auktionen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -34262,7 +34262,7 @@ { "Field": "bild", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -34273,7 +34273,7 @@ { "Field": "url", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -34284,7 +34284,7 @@ { "Field": "itemid", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -34295,7 +34295,7 @@ { "Field": "sku", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -34317,7 +34317,7 @@ { "Field": "typ", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -34339,7 +34339,7 @@ { "Field": "dauer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -34449,7 +34449,7 @@ }, { "name": "ebay_bulk_call", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -34477,7 +34477,7 @@ { "Field": "request", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -34488,7 +34488,7 @@ { "Field": "type", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -34499,7 +34499,7 @@ { "Field": "parameter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -34540,7 +34540,7 @@ }, { "name": "ebay_bulk_jobs", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -34557,7 +34557,7 @@ { "Field": "job_id", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "MUL", "Default": null, @@ -34568,7 +34568,7 @@ { "Field": "file_id", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -34579,7 +34579,7 @@ { "Field": "response_file_id", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -34601,7 +34601,7 @@ { "Field": "uuid", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -34612,7 +34612,7 @@ { "Field": "type", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -34623,7 +34623,7 @@ { "Field": "description", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -34634,7 +34634,7 @@ { "Field": "notes", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -34645,7 +34645,7 @@ { "Field": "status", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -34656,7 +34656,7 @@ { "Field": "next_action", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -34716,7 +34716,7 @@ }, { "name": "ebay_fee_overview", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -34744,7 +34744,7 @@ { "Field": "itemid", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -34766,7 +34766,7 @@ { "Field": "fee_type", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -34777,7 +34777,7 @@ { "Field": "fee_description", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -34788,7 +34788,7 @@ { "Field": "fee_amount", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -34810,7 +34810,7 @@ { "Field": "fee_memo", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -34832,7 +34832,7 @@ }, { "name": "ebay_kategoriespezifisch", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -34904,7 +34904,7 @@ { "Field": "specname", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -34915,7 +34915,7 @@ { "Field": "typ", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -34926,7 +34926,7 @@ { "Field": "cardinality", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -34948,7 +34948,7 @@ { "Field": "options", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -34959,7 +34959,7 @@ { "Field": "val", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -34992,7 +34992,7 @@ }, { "name": "ebay_kategorievorschlag", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -35020,7 +35020,7 @@ { "Field": "kategorie", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -35042,7 +35042,7 @@ { "Field": "vorschlagbezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -35053,7 +35053,7 @@ { "Field": "vorschlagparentsid", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -35064,7 +35064,7 @@ { "Field": "vorschlagparentsbezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -35097,7 +35097,7 @@ }, { "name": "ebay_kategoriezustand", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -35114,7 +35114,7 @@ { "Field": "kategorie", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -35136,7 +35136,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -35169,7 +35169,7 @@ }, { "name": "ebay_picture_hosting_service", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -35219,7 +35219,7 @@ { "Field": "url", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -35265,7 +35265,7 @@ }, { "name": "ebay_rahmenbedingungen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -35304,7 +35304,7 @@ { "Field": "profilid", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -35315,7 +35315,7 @@ { "Field": "profiltype", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -35326,7 +35326,7 @@ { "Field": "profilname", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -35337,7 +35337,7 @@ { "Field": "profilsummary", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -35348,7 +35348,7 @@ { "Field": "category", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -35381,7 +35381,7 @@ }, { "name": "ebay_rest_token", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -35409,7 +35409,7 @@ { "Field": "token", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -35420,7 +35420,7 @@ { "Field": "scope", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -35453,7 +35453,7 @@ }, { "name": "ebay_staging_listing", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -35503,7 +35503,7 @@ { "Field": "item_id_external", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -35514,7 +35514,7 @@ { "Field": "ebay_primary_category_id_external", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -35525,7 +35525,7 @@ { "Field": "ebay_primary_store_category_id_external", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -35536,7 +35536,7 @@ { "Field": "ebay_secondary_store_category_id_external", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -35547,7 +35547,7 @@ { "Field": "ebay_secondary_category_id_external", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -35558,7 +35558,7 @@ { "Field": "ebay_shipping_profile_id_external", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -35569,7 +35569,7 @@ { "Field": "ebay_return_profile_id_external", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -35580,7 +35580,7 @@ { "Field": "ebay_payment_profile_id_external", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -35624,7 +35624,7 @@ { "Field": "type", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -35635,7 +35635,7 @@ { "Field": "status", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -35646,7 +35646,7 @@ { "Field": "sku", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -35657,7 +35657,7 @@ { "Field": "ean", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -35668,7 +35668,7 @@ { "Field": "title", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -35679,7 +35679,7 @@ { "Field": "listing_duration", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -35690,7 +35690,7 @@ { "Field": "inventory_tracking_method", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -35701,7 +35701,7 @@ { "Field": "condition_display_name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -35712,7 +35712,7 @@ { "Field": "condition_id_external", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -35723,7 +35723,7 @@ { "Field": "condition_description", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -35734,7 +35734,7 @@ { "Field": "delivery_time", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -35745,7 +35745,7 @@ { "Field": "description", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -35783,7 +35783,7 @@ }, { "name": "ebay_staging_listing_specific", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -35811,7 +35811,7 @@ { "Field": "property", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -35822,7 +35822,7 @@ { "Field": "value", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -35852,7 +35852,7 @@ }, { "name": "ebay_staging_listing_variant", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -35891,7 +35891,7 @@ { "Field": "sku", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -35902,7 +35902,7 @@ { "Field": "title", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -35940,7 +35940,7 @@ }, { "name": "ebay_staging_listing_variant_specific", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -35968,7 +35968,7 @@ { "Field": "property", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -35979,7 +35979,7 @@ { "Field": "value", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -36001,7 +36001,7 @@ }, { "name": "ebay_storekategorien", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -36040,7 +36040,7 @@ { "Field": "kategorie", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -36051,7 +36051,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -36073,7 +36073,7 @@ }, { "name": "ebay_template", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -36101,7 +36101,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -36112,7 +36112,7 @@ { "Field": "template", "Type": "longtext", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -36134,7 +36134,7 @@ }, { "name": "ebay_variantenbilder", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -36162,7 +36162,7 @@ { "Field": "url", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -36195,7 +36195,7 @@ }, { "name": "ebay_versand", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -36212,7 +36212,7 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -36223,7 +36223,7 @@ { "Field": "carrier", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -36234,7 +36234,7 @@ { "Field": "customcarrier", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -36267,7 +36267,7 @@ { "Field": "service", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -36278,7 +36278,7 @@ { "Field": "kategorie", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -36322,7 +36322,7 @@ }, { "name": "ebay_versand_zuordnung", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -36383,7 +36383,7 @@ }, { "name": "eigenschaften", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -36422,7 +36422,7 @@ { "Field": "hauptkategorie", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -36433,7 +36433,7 @@ { "Field": "unterkategorie", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -36444,7 +36444,7 @@ { "Field": "einheit", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -36455,7 +36455,7 @@ { "Field": "wert", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -36477,7 +36477,7 @@ }, { "name": "einkaufspreise", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -36516,7 +36516,7 @@ { "Field": "objekt", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -36527,7 +36527,7 @@ { "Field": "projekt", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -36549,7 +36549,7 @@ { "Field": "waehrung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -36571,7 +36571,7 @@ { "Field": "vpe", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'1'", @@ -36648,7 +36648,7 @@ { "Field": "bestellnummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -36659,7 +36659,7 @@ { "Field": "bezeichnunglieferant", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -36681,7 +36681,7 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -36692,7 +36692,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -36802,7 +36802,7 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -36824,7 +36824,7 @@ { "Field": "lieferzeit_standard_einheit", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -36835,7 +36835,7 @@ { "Field": "lieferzeit_aktuell_einheit", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -36889,7 +36889,7 @@ }, { "name": "emailbackup", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -36906,7 +36906,7 @@ { "Field": "angezeigtername", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -36917,7 +36917,7 @@ { "Field": "internebeschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -36928,7 +36928,7 @@ { "Field": "benutzername", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -36939,7 +36939,7 @@ { "Field": "passwort", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -36950,7 +36950,7 @@ { "Field": "server", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -36961,7 +36961,7 @@ { "Field": "smtp", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -36994,7 +36994,7 @@ { "Field": "imap_sentfolder", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "''inbox.sent''", @@ -37049,7 +37049,7 @@ { "Field": "autoresponderbetreff", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -37060,7 +37060,7 @@ { "Field": "autorespondertext", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -37115,7 +37115,7 @@ { "Field": "loeschtage", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -37159,7 +37159,7 @@ { "Field": "ticketqueue", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -37170,7 +37170,7 @@ { "Field": "ticketprojekt", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -37225,7 +37225,7 @@ { "Field": "smtp_frommail", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -37236,7 +37236,7 @@ { "Field": "smtp_fromname", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -37247,7 +37247,7 @@ { "Field": "client_alias", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -37258,7 +37258,7 @@ { "Field": "smtp_authtype", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -37269,7 +37269,7 @@ { "Field": "smtp_authparam", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -37313,7 +37313,7 @@ { "Field": "signatur", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -37346,7 +37346,7 @@ { "Field": "email", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -37368,7 +37368,7 @@ }, { "name": "emailbackup_mails", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -37396,7 +37396,7 @@ { "Field": "subject", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -37407,7 +37407,7 @@ { "Field": "sender", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -37418,7 +37418,7 @@ { "Field": "action", "Type": "longtext", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -37429,7 +37429,7 @@ { "Field": "action_html", "Type": "longtext", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -37451,7 +37451,7 @@ { "Field": "anhang", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -37484,7 +37484,7 @@ { "Field": "checksum", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -37528,7 +37528,7 @@ { "Field": "phpobj", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -37605,7 +37605,7 @@ { "Field": "mail_replyto", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -37616,7 +37616,7 @@ { "Field": "verfasser_replyto", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -37702,7 +37702,7 @@ }, { "name": "epost_files", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -37741,7 +37741,7 @@ { "Field": "status", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -37752,7 +37752,7 @@ { "Field": "datei", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -37774,7 +37774,7 @@ }, { "name": "etiketten", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -37791,7 +37791,7 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -37802,7 +37802,7 @@ { "Field": "xml", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -37813,7 +37813,7 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -37835,7 +37835,7 @@ { "Field": "verwendenals", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -37901,7 +37901,7 @@ { "Field": "format", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -37945,7 +37945,7 @@ }, { "name": "etsy_taxonomy", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -37962,7 +37962,7 @@ { "Field": "title", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -37973,7 +37973,7 @@ { "Field": "path", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -37984,7 +37984,7 @@ { "Field": "description", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -37995,7 +37995,7 @@ { "Field": "version", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -38006,7 +38006,7 @@ { "Field": "id_external", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -38017,7 +38017,7 @@ { "Field": "parent_id_external", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "''0''", @@ -38039,7 +38039,7 @@ }, { "name": "etsy_transaction", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -38067,7 +38067,7 @@ { "Field": "etsy_transaction_id", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -38089,7 +38089,7 @@ { "Field": "etsy_title", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -38100,7 +38100,7 @@ { "Field": "etsy_buyer_email", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -38144,7 +38144,7 @@ }, { "name": "event", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -38161,7 +38161,7 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -38172,7 +38172,7 @@ { "Field": "kategorie", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -38194,7 +38194,7 @@ { "Field": "objekt", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -38205,7 +38205,7 @@ { "Field": "parameter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -38216,7 +38216,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -38238,7 +38238,7 @@ }, { "name": "event_api", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -38266,7 +38266,7 @@ { "Field": "eventname", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -38277,7 +38277,7 @@ { "Field": "parameter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -38288,7 +38288,7 @@ { "Field": "module", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -38299,7 +38299,7 @@ { "Field": "action", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -38321,7 +38321,7 @@ { "Field": "kommentar", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -38354,7 +38354,7 @@ }, { "name": "exportlink_sent", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -38371,7 +38371,7 @@ { "Field": "reg", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -38382,7 +38382,7 @@ { "Field": "grund", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -38450,7 +38450,7 @@ }, { "name": "exportvorlage", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -38467,7 +38467,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -38478,7 +38478,7 @@ { "Field": "ziel", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -38489,7 +38489,7 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -38500,7 +38500,7 @@ { "Field": "fields", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -38511,7 +38511,7 @@ { "Field": "fields_where", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -38533,7 +38533,7 @@ { "Field": "mitarbeiterletzterexport", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -38544,7 +38544,7 @@ { "Field": "exporttrennzeichen", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -38566,7 +38566,7 @@ { "Field": "exportdatenmaskierung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -38577,7 +38577,7 @@ { "Field": "exportzeichensatz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -38632,7 +38632,7 @@ }, { "name": "extended_approval_protocol", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -38660,7 +38660,7 @@ { "Field": "doctype", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -38671,7 +38671,7 @@ { "Field": "requestertype", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -38704,7 +38704,7 @@ { "Field": "releasetype", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -38726,7 +38726,7 @@ { "Field": "type", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -38759,7 +38759,7 @@ }, { "name": "extended_approval_responsibility", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -38776,7 +38776,7 @@ { "Field": "doctype", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -38787,7 +38787,7 @@ { "Field": "requestertype", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -38820,7 +38820,7 @@ { "Field": "releasetype", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -38864,7 +38864,7 @@ }, { "name": "fee_reduction", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -38881,7 +38881,7 @@ { "Field": "doctype", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -38936,7 +38936,7 @@ { "Field": "price_type", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -38947,7 +38947,7 @@ { "Field": "currency", "Type": "varchar(8)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -38958,7 +38958,7 @@ { "Field": "comment", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -39015,7 +39015,7 @@ }, { "name": "fibu_buchungen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -39032,7 +39032,7 @@ { "Field": "von_typ", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -39054,7 +39054,7 @@ { "Field": "nach_typ", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -39087,7 +39087,7 @@ { "Field": "waehrung", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'EUR'", @@ -39120,7 +39120,7 @@ { "Field": "internebemerkung", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -39142,7 +39142,7 @@ }, { "name": "file_link", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -39170,7 +39170,7 @@ { "Field": "label", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -39181,7 +39181,7 @@ { "Field": "file_link", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -39192,7 +39192,7 @@ { "Field": "internal_note", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -39214,7 +39214,7 @@ }, { "name": "firma", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -39231,7 +39231,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -39264,7 +39264,7 @@ }, { "name": "firmendaten", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -39314,7 +39314,7 @@ { "Field": "benutzername", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -39325,7 +39325,7 @@ { "Field": "passwort", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -39336,7 +39336,7 @@ { "Field": "host", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -39347,7 +39347,7 @@ { "Field": "port", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -39369,7 +39369,7 @@ { "Field": "signatur", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -39446,7 +39446,7 @@ { "Field": "deviceserials", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -39457,7 +39457,7 @@ { "Field": "lizenz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -39468,7 +39468,7 @@ { "Field": "schluessel", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -39688,7 +39688,7 @@ { "Field": "zahlung_rechnung_sofort_de", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -39699,7 +39699,7 @@ { "Field": "zahlung_rechnung_de", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -39710,7 +39710,7 @@ { "Field": "zahlung_vorkasse_de", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -39721,7 +39721,7 @@ { "Field": "zahlung_lastschrift_de", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -39732,7 +39732,7 @@ { "Field": "zahlung_nachnahme_de", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -39743,7 +39743,7 @@ { "Field": "zahlung_bar_de", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -39754,7 +39754,7 @@ { "Field": "zahlung_paypal_de", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -39765,7 +39765,7 @@ { "Field": "zahlung_amazon_de", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -39776,7 +39776,7 @@ { "Field": "zahlung_kreditkarte_de", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -39787,7 +39787,7 @@ { "Field": "zahlung_ratenzahlung_de", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -39809,7 +39809,7 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -39820,7 +39820,7 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -39831,7 +39831,7 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -39842,7 +39842,7 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -39853,7 +39853,7 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -39864,7 +39864,7 @@ { "Field": "freifeld6", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -39875,7 +39875,7 @@ { "Field": "firmenfarbehell", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -39886,7 +39886,7 @@ { "Field": "firmenfarbedunkel", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -39897,7 +39897,7 @@ { "Field": "firmenfarbeganzdunkel", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -39908,7 +39908,7 @@ { "Field": "navigationfarbe", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -39919,7 +39919,7 @@ { "Field": "navigationfarbeschrift", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -39930,7 +39930,7 @@ { "Field": "unternavigationfarbe", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -39941,7 +39941,7 @@ { "Field": "unternavigationfarbeschrift", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -39963,7 +39963,7 @@ { "Field": "rechnung_header", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -39974,7 +39974,7 @@ { "Field": "lieferschein_header", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -39985,7 +39985,7 @@ { "Field": "angebot_header", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -39996,7 +39996,7 @@ { "Field": "auftrag_header", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -40007,7 +40007,7 @@ { "Field": "gutschrift_header", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -40018,7 +40018,7 @@ { "Field": "bestellung_header", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -40029,7 +40029,7 @@ { "Field": "arbeitsnachweis_header", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -40040,7 +40040,7 @@ { "Field": "provisionsgutschrift_header", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -40051,7 +40051,7 @@ { "Field": "rechnung_footer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -40062,7 +40062,7 @@ { "Field": "lieferschein_footer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -40073,7 +40073,7 @@ { "Field": "angebot_footer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -40084,7 +40084,7 @@ { "Field": "auftrag_footer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -40095,7 +40095,7 @@ { "Field": "gutschrift_footer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -40106,7 +40106,7 @@ { "Field": "bestellung_footer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -40117,7 +40117,7 @@ { "Field": "arbeitsnachweis_footer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -40128,7 +40128,7 @@ { "Field": "provisionsgutschrift_footer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -40139,7 +40139,7 @@ { "Field": "eu_lieferung_vermerk", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40150,7 +40150,7 @@ { "Field": "export_lieferung_vermerk", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40161,7 +40161,7 @@ { "Field": "zahlung_amazon_bestellung_de", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40172,7 +40172,7 @@ { "Field": "zahlung_billsafe_de", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40183,7 +40183,7 @@ { "Field": "zahlung_sofortueberweisung_de", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40194,7 +40194,7 @@ { "Field": "zahlung_secupay_de", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40205,7 +40205,7 @@ { "Field": "adressefreifeld1", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40216,7 +40216,7 @@ { "Field": "adressefreifeld2", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40227,7 +40227,7 @@ { "Field": "adressefreifeld3", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40238,7 +40238,7 @@ { "Field": "adressefreifeld4", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40249,7 +40249,7 @@ { "Field": "adressefreifeld5", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40260,7 +40260,7 @@ { "Field": "adressefreifeld6", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40271,7 +40271,7 @@ { "Field": "adressefreifeld7", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40282,7 +40282,7 @@ { "Field": "adressefreifeld8", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40293,7 +40293,7 @@ { "Field": "adressefreifeld9", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40304,7 +40304,7 @@ { "Field": "adressefreifeld10", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40315,7 +40315,7 @@ { "Field": "zahlung_eckarte_de", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40326,7 +40326,7 @@ { "Field": "devicekey", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40359,7 +40359,7 @@ { "Field": "bcc1", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40370,7 +40370,7 @@ { "Field": "bcc2", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40381,7 +40381,7 @@ { "Field": "firmenfarbe", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40392,7 +40392,7 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40436,7 +40436,7 @@ { "Field": "email_html_template", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40447,7 +40447,7 @@ { "Field": "freifeld7", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40458,7 +40458,7 @@ { "Field": "freifeld8", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40469,7 +40469,7 @@ { "Field": "freifeld9", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40480,7 +40480,7 @@ { "Field": "freifeld10", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40491,7 +40491,7 @@ { "Field": "freifeld11", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40502,7 +40502,7 @@ { "Field": "freifeld12", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40513,7 +40513,7 @@ { "Field": "freifeld13", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40524,7 +40524,7 @@ { "Field": "freifeld14", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40535,7 +40535,7 @@ { "Field": "freifeld15", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40546,7 +40546,7 @@ { "Field": "freifeld16", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40557,7 +40557,7 @@ { "Field": "freifeld17", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40568,7 +40568,7 @@ { "Field": "freifeld18", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40579,7 +40579,7 @@ { "Field": "freifeld19", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40590,7 +40590,7 @@ { "Field": "freifeld20", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40601,7 +40601,7 @@ { "Field": "freifeld21", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40612,7 +40612,7 @@ { "Field": "freifeld22", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40623,7 +40623,7 @@ { "Field": "freifeld23", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40634,7 +40634,7 @@ { "Field": "freifeld24", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40645,7 +40645,7 @@ { "Field": "freifeld25", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40656,7 +40656,7 @@ { "Field": "freifeld26", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40667,7 +40667,7 @@ { "Field": "freifeld27", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40678,7 +40678,7 @@ { "Field": "freifeld28", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40689,7 +40689,7 @@ { "Field": "freifeld29", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40700,7 +40700,7 @@ { "Field": "freifeld30", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40711,7 +40711,7 @@ { "Field": "freifeld31", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40722,7 +40722,7 @@ { "Field": "freifeld32", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40733,7 +40733,7 @@ { "Field": "freifeld33", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40744,7 +40744,7 @@ { "Field": "freifeld34", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40755,7 +40755,7 @@ { "Field": "freifeld35", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40766,7 +40766,7 @@ { "Field": "freifeld36", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40777,7 +40777,7 @@ { "Field": "freifeld37", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40788,7 +40788,7 @@ { "Field": "freifeld38", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40799,7 +40799,7 @@ { "Field": "freifeld39", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40810,7 +40810,7 @@ { "Field": "freifeld40", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40821,7 +40821,7 @@ { "Field": "adressefreifeld11", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40832,7 +40832,7 @@ { "Field": "adressefreifeld12", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40843,7 +40843,7 @@ { "Field": "adressefreifeld13", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40854,7 +40854,7 @@ { "Field": "adressefreifeld14", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40865,7 +40865,7 @@ { "Field": "adressefreifeld15", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40876,7 +40876,7 @@ { "Field": "adressefreifeld16", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40887,7 +40887,7 @@ { "Field": "adressefreifeld17", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40898,7 +40898,7 @@ { "Field": "adressefreifeld18", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40909,7 +40909,7 @@ { "Field": "adressefreifeld19", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40920,7 +40920,7 @@ { "Field": "adressefreifeld20", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40931,7 +40931,7 @@ { "Field": "proformarechnung_header", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -40942,7 +40942,7 @@ { "Field": "proformarechnung_footer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -40964,7 +40964,7 @@ }, { "name": "firmendaten_werte", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -40981,7 +40981,7 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -40992,7 +40992,7 @@ { "Field": "typ", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -41003,7 +41003,7 @@ { "Field": "typ1", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -41014,7 +41014,7 @@ { "Field": "typ2", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -41025,7 +41025,7 @@ { "Field": "wert", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -41036,7 +41036,7 @@ { "Field": "default_value", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -41080,7 +41080,7 @@ }, { "name": "formeln", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -41097,7 +41097,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -41108,7 +41108,7 @@ { "Field": "kennung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -41130,7 +41130,7 @@ { "Field": "formel", "Type": "varchar(500)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -41160,7 +41160,7 @@ }, { "name": "formula_position", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -41177,7 +41177,7 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -41188,7 +41188,7 @@ { "Field": "formula", "Type": "varchar(500)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -41199,7 +41199,7 @@ { "Field": "doctype", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -41254,7 +41254,7 @@ }, { "name": "free_article", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -41348,7 +41348,7 @@ }, { "name": "free_article_included", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -41425,7 +41425,7 @@ }, { "name": "geschaeftsbrief_vorlagen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -41442,7 +41442,7 @@ { "Field": "sprache", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -41453,7 +41453,7 @@ { "Field": "betreff", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -41464,7 +41464,7 @@ { "Field": "text", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -41475,7 +41475,7 @@ { "Field": "subjekt", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -41519,7 +41519,7 @@ }, { "name": "gls", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -41536,7 +41536,7 @@ { "Field": "vorlage", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -41547,7 +41547,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -41558,7 +41558,7 @@ { "Field": "name2", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -41569,7 +41569,7 @@ { "Field": "name3", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -41580,7 +41580,7 @@ { "Field": "telefon", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -41591,7 +41591,7 @@ { "Field": "email", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -41602,7 +41602,7 @@ { "Field": "land", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -41613,7 +41613,7 @@ { "Field": "plz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -41624,7 +41624,7 @@ { "Field": "ort", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -41635,7 +41635,7 @@ { "Field": "strasse", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -41646,7 +41646,7 @@ { "Field": "hausnr", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -41657,7 +41657,7 @@ { "Field": "adresszusatz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -41668,7 +41668,7 @@ { "Field": "notiz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -41701,7 +41701,7 @@ }, { "name": "goodspostingdocument", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -41718,7 +41718,7 @@ { "Field": "belegnr", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -41729,7 +41729,7 @@ { "Field": "status", "Type": "varchar(16)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'angelegt'", @@ -41740,7 +41740,7 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -41773,7 +41773,7 @@ { "Field": "document_type", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -41817,7 +41817,7 @@ { "Field": "storagesort", "Type": "varchar(16)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -41828,7 +41828,7 @@ { "Field": "document_info", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -41850,7 +41850,7 @@ }, { "name": "goodspostingdocument_movement", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -41889,7 +41889,7 @@ { "Field": "serial", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -41900,7 +41900,7 @@ { "Field": "batch", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -41974,7 +41974,7 @@ }, { "name": "goodspostingdocument_position", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -42013,7 +42013,7 @@ { "Field": "reason", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -42024,7 +42024,7 @@ { "Field": "relation_document", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -42142,7 +42142,7 @@ }, { "name": "goodspostingdocument_protocol", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -42170,7 +42170,7 @@ { "Field": "message", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -42181,7 +42181,7 @@ { "Field": "created_by", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -42222,7 +42222,7 @@ }, { "name": "google_access_token", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -42250,7 +42250,7 @@ { "Field": "token", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -42291,7 +42291,7 @@ }, { "name": "google_account", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -42319,7 +42319,7 @@ { "Field": "refresh_token", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -42330,7 +42330,7 @@ { "Field": "identifier", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -42360,7 +42360,7 @@ }, { "name": "google_account_property", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -42388,7 +42388,7 @@ { "Field": "varname", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -42399,7 +42399,7 @@ { "Field": "value", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -42421,7 +42421,7 @@ }, { "name": "google_account_scope", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -42449,7 +42449,7 @@ { "Field": "scope", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -42479,7 +42479,7 @@ }, { "name": "googleapi", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -42496,7 +42496,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -42507,7 +42507,7 @@ { "Field": "description", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -42518,7 +42518,7 @@ { "Field": "type", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -42540,7 +42540,7 @@ { "Field": "user", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -42551,7 +42551,7 @@ { "Field": "password", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -42562,7 +42562,7 @@ { "Field": "redirect_uri", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -42573,7 +42573,7 @@ { "Field": "token", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -42595,7 +42595,7 @@ { "Field": "refresh_token", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -42617,7 +42617,7 @@ { "Field": "id_name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -42639,7 +42639,7 @@ }, { "name": "googleapi_calendar_sync", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -42667,7 +42667,7 @@ { "Field": "foreign_id", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -42711,7 +42711,7 @@ { "Field": "html_link", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -42741,7 +42741,7 @@ }, { "name": "googleapi_user", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -42769,7 +42769,7 @@ { "Field": "googleapi_id_name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -42802,7 +42802,7 @@ { "Field": "identifier", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -42813,7 +42813,7 @@ { "Field": "refresh_token", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -42824,7 +42824,7 @@ { "Field": "access_token", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -42857,7 +42857,7 @@ }, { "name": "gpsstechuhr", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -42896,7 +42896,7 @@ { "Field": "koordinaten", "Type": "varchar(512)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -42929,7 +42929,7 @@ }, { "name": "gruppen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -42946,7 +42946,7 @@ { "Field": "name", "Type": "varchar(512)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -42957,7 +42957,7 @@ { "Field": "art", "Type": "varchar(512)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -42968,7 +42968,7 @@ { "Field": "kennziffer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -42979,7 +42979,7 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -43078,7 +43078,7 @@ { "Field": "kundennummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -43089,7 +43089,7 @@ { "Field": "partnerid", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -43122,7 +43122,7 @@ { "Field": "dta_dateiname", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -43133,7 +43133,7 @@ { "Field": "dta_mail", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -43144,7 +43144,7 @@ { "Field": "dta_mail_betreff", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -43155,7 +43155,7 @@ { "Field": "dta_mail_text", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -43166,7 +43166,7 @@ { "Field": "dtavariablen", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -43529,7 +43529,7 @@ { "Field": "rechnung_name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -43540,7 +43540,7 @@ { "Field": "rechnung_strasse", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -43551,7 +43551,7 @@ { "Field": "rechnung_ort", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -43562,7 +43562,7 @@ { "Field": "rechnung_plz", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -43573,7 +43573,7 @@ { "Field": "rechnung_abteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -43584,7 +43584,7 @@ { "Field": "rechnung_land", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -43595,7 +43595,7 @@ { "Field": "rechnung_email", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -43639,7 +43639,7 @@ { "Field": "webid", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -43672,7 +43672,7 @@ { "Field": "objektname", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -43683,7 +43683,7 @@ { "Field": "objekttyp", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -43694,7 +43694,7 @@ { "Field": "parameter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -43705,7 +43705,7 @@ { "Field": "objektname2", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -43716,7 +43716,7 @@ { "Field": "objekttyp2", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -43727,7 +43727,7 @@ { "Field": "parameter2", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -43738,7 +43738,7 @@ { "Field": "objektname3", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -43749,7 +43749,7 @@ { "Field": "objekttyp3", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -43760,7 +43760,7 @@ { "Field": "parameter3", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -43804,7 +43804,7 @@ }, { "name": "gruppen_kategorien", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -43821,7 +43821,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -43854,7 +43854,7 @@ }, { "name": "gruppenmapping", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -43893,7 +43893,7 @@ { "Field": "parameter1", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "''0''", @@ -43904,7 +43904,7 @@ { "Field": "parameter2", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "''0''", @@ -43915,7 +43915,7 @@ { "Field": "parameter3", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "''0''", @@ -43967,7 +43967,7 @@ }, { "name": "gruppenrechnung_auswahl", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -44063,7 +44063,7 @@ }, { "name": "gutschrift", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -44091,7 +44091,7 @@ { "Field": "projekt", "Type": "varchar(222)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -44102,7 +44102,7 @@ { "Field": "anlegeart", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -44113,7 +44113,7 @@ { "Field": "belegnr", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -44146,7 +44146,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -44157,7 +44157,7 @@ { "Field": "freitext", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -44168,7 +44168,7 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -44179,7 +44179,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -44201,7 +44201,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -44212,7 +44212,7 @@ { "Field": "abteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -44223,7 +44223,7 @@ { "Field": "unterabteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -44234,7 +44234,7 @@ { "Field": "strasse", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -44245,7 +44245,7 @@ { "Field": "adresszusatz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -44256,7 +44256,7 @@ { "Field": "plz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -44267,7 +44267,7 @@ { "Field": "ort", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -44278,7 +44278,7 @@ { "Field": "land", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -44289,7 +44289,7 @@ { "Field": "ustid", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -44344,7 +44344,7 @@ { "Field": "email", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -44355,7 +44355,7 @@ { "Field": "telefon", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -44366,7 +44366,7 @@ { "Field": "telefax", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -44377,7 +44377,7 @@ { "Field": "betreff", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -44388,7 +44388,7 @@ { "Field": "kundennummer", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -44410,7 +44410,7 @@ { "Field": "versandart", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -44432,7 +44432,7 @@ { "Field": "buchhaltung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -44443,7 +44443,7 @@ { "Field": "zahlungsweise", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -44454,7 +44454,7 @@ { "Field": "zahlungsstatus", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -44531,7 +44531,7 @@ { "Field": "bank_inhaber", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -44542,7 +44542,7 @@ { "Field": "bank_institut", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -44575,7 +44575,7 @@ { "Field": "kreditkarte_typ", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -44586,7 +44586,7 @@ { "Field": "kreditkarte_inhaber", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -44597,7 +44597,7 @@ { "Field": "kreditkarte_nummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -44608,7 +44608,7 @@ { "Field": "kreditkarte_pruefnummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -44641,7 +44641,7 @@ { "Field": "paypalaccount", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -44685,7 +44685,7 @@ { "Field": "versendet_per", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -44696,7 +44696,7 @@ { "Field": "versendet_durch", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -44751,7 +44751,7 @@ { "Field": "manuell_vorabbezahlt_hinweis", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -44839,7 +44839,7 @@ { "Field": "aktion", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -44850,7 +44850,7 @@ { "Field": "vertrieb", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -44894,7 +44894,7 @@ { "Field": "ihrebestellnummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -44905,7 +44905,7 @@ { "Field": "anschreiben", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -45070,7 +45070,7 @@ { "Field": "waehrung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "''EUR''", @@ -45136,7 +45136,7 @@ { "Field": "typ", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "''firma''", @@ -45202,7 +45202,7 @@ { "Field": "internebezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -45224,7 +45224,7 @@ { "Field": "ansprechpartner", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -45235,7 +45235,7 @@ { "Field": "sprache", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -45246,7 +45246,7 @@ { "Field": "gln", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -45257,7 +45257,7 @@ { "Field": "deliverythresholdvatid", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -45312,7 +45312,7 @@ { "Field": "kostenstelle", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -45323,7 +45323,7 @@ { "Field": "bodyzusatz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -45334,7 +45334,7 @@ { "Field": "lieferbedingung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -45345,7 +45345,7 @@ { "Field": "titel", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -45389,7 +45389,7 @@ { "Field": "bundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -45400,7 +45400,7 @@ { "Field": "kundennummer_buchhaltung", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -45411,7 +45411,7 @@ { "Field": "storage_country", "Type": "varchar(3)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -45489,7 +45489,7 @@ }, { "name": "gutschrift_position", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -45539,7 +45539,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -45550,7 +45550,7 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -45561,7 +45561,7 @@ { "Field": "internerkommentar", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -45572,7 +45572,7 @@ { "Field": "nummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -45605,7 +45605,7 @@ { "Field": "waehrung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -45627,7 +45627,7 @@ { "Field": "vpe", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -45649,7 +45649,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -45660,7 +45660,7 @@ { "Field": "umsatzsteuer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -45671,7 +45671,7 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -45803,7 +45803,7 @@ { "Field": "einheit", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -45825,7 +45825,7 @@ { "Field": "zolltarifnummer", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'0'", @@ -45836,7 +45836,7 @@ { "Field": "herkunftsland", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'0'", @@ -45847,7 +45847,7 @@ { "Field": "artikelnummerkunde", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -45858,7 +45858,7 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -45869,7 +45869,7 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -45880,7 +45880,7 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -45891,7 +45891,7 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -45902,7 +45902,7 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -45913,7 +45913,7 @@ { "Field": "freifeld6", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -45924,7 +45924,7 @@ { "Field": "freifeld7", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -45935,7 +45935,7 @@ { "Field": "freifeld8", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -45946,7 +45946,7 @@ { "Field": "freifeld9", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -45957,7 +45957,7 @@ { "Field": "freifeld10", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -46001,7 +46001,7 @@ { "Field": "kostenstelle", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -46023,7 +46023,7 @@ { "Field": "steuertext", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -46034,7 +46034,7 @@ { "Field": "erloese", "Type": "varchar(8)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -46056,7 +46056,7 @@ { "Field": "einkaufspreiswaehrung", "Type": "varchar(8)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -46100,7 +46100,7 @@ { "Field": "ekwaehrung", "Type": "varchar(8)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -46122,7 +46122,7 @@ { "Field": "freifeld11", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -46133,7 +46133,7 @@ { "Field": "freifeld12", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -46144,7 +46144,7 @@ { "Field": "freifeld13", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -46155,7 +46155,7 @@ { "Field": "freifeld14", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -46166,7 +46166,7 @@ { "Field": "freifeld15", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -46177,7 +46177,7 @@ { "Field": "freifeld16", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -46188,7 +46188,7 @@ { "Field": "freifeld17", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -46199,7 +46199,7 @@ { "Field": "freifeld18", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -46210,7 +46210,7 @@ { "Field": "freifeld19", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -46221,7 +46221,7 @@ { "Field": "freifeld20", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -46232,7 +46232,7 @@ { "Field": "freifeld21", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -46243,7 +46243,7 @@ { "Field": "freifeld22", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -46254,7 +46254,7 @@ { "Field": "freifeld23", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -46265,7 +46265,7 @@ { "Field": "freifeld24", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -46276,7 +46276,7 @@ { "Field": "freifeld25", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -46287,7 +46287,7 @@ { "Field": "freifeld26", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -46298,7 +46298,7 @@ { "Field": "freifeld27", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -46309,7 +46309,7 @@ { "Field": "freifeld28", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -46320,7 +46320,7 @@ { "Field": "freifeld29", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -46331,7 +46331,7 @@ { "Field": "freifeld30", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -46342,7 +46342,7 @@ { "Field": "freifeld31", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -46353,7 +46353,7 @@ { "Field": "freifeld32", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -46364,7 +46364,7 @@ { "Field": "freifeld33", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -46375,7 +46375,7 @@ { "Field": "freifeld34", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -46386,7 +46386,7 @@ { "Field": "freifeld35", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -46397,7 +46397,7 @@ { "Field": "freifeld36", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -46408,7 +46408,7 @@ { "Field": "freifeld37", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -46419,7 +46419,7 @@ { "Field": "freifeld38", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -46430,7 +46430,7 @@ { "Field": "freifeld39", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -46441,7 +46441,7 @@ { "Field": "freifeld40", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -46452,7 +46452,7 @@ { "Field": "formelmenge", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -46463,7 +46463,7 @@ { "Field": "formelpreis", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -46644,7 +46644,7 @@ }, { "name": "gutschrift_protokoll", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -46683,7 +46683,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -46694,7 +46694,7 @@ { "Field": "grund", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -46724,7 +46724,7 @@ }, { "name": "hook", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -46741,7 +46741,7 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -46752,7 +46752,7 @@ { "Field": "alias", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -46785,7 +46785,7 @@ { "Field": "description", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -46823,7 +46823,7 @@ }, { "name": "hook_action", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -46851,7 +46851,7 @@ { "Field": "action", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -46884,7 +46884,7 @@ }, { "name": "hook_layout", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -46901,7 +46901,7 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -46912,7 +46912,7 @@ { "Field": "dokumenttyp", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -46923,7 +46923,7 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -46934,7 +46934,7 @@ { "Field": "funktion", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -46945,7 +46945,7 @@ { "Field": "typ", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -46956,7 +46956,7 @@ { "Field": "block", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -46967,7 +46967,7 @@ { "Field": "blocktyp", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -47000,7 +47000,7 @@ }, { "name": "hook_menu", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -47017,7 +47017,7 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -47058,7 +47058,7 @@ }, { "name": "hook_menu_register", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -47086,7 +47086,7 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -47097,7 +47097,7 @@ { "Field": "funktion", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -47149,7 +47149,7 @@ }, { "name": "hook_module", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -47166,7 +47166,7 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -47199,7 +47199,7 @@ }, { "name": "hook_navigation", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -47216,7 +47216,7 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -47227,7 +47227,7 @@ { "Field": "action", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -47238,7 +47238,7 @@ { "Field": "first", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -47249,7 +47249,7 @@ { "Field": "sec", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -47260,7 +47260,7 @@ { "Field": "aftersec", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -47304,7 +47304,7 @@ }, { "name": "hook_register", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -47332,7 +47332,7 @@ { "Field": "function", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -47376,7 +47376,7 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -47417,7 +47417,7 @@ }, { "name": "importmasterdata", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -47478,7 +47478,7 @@ { "Field": "filename", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -47489,7 +47489,7 @@ { "Field": "status", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": "''created''", @@ -47500,7 +47500,7 @@ { "Field": "message", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -47557,7 +47557,7 @@ }, { "name": "importvorlage", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -47574,7 +47574,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -47585,7 +47585,7 @@ { "Field": "ziel", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -47596,7 +47596,7 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -47607,7 +47607,7 @@ { "Field": "fields", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -47629,7 +47629,7 @@ { "Field": "mitarbeiterletzterimport", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -47640,7 +47640,7 @@ { "Field": "importtrennzeichen", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -47662,7 +47662,7 @@ { "Field": "importdatenmaskierung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -47673,7 +47673,7 @@ { "Field": "importzeichensatz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -47695,7 +47695,7 @@ { "Field": "charset", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'utf8'", @@ -47717,7 +47717,7 @@ }, { "name": "importvorlage_log", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -47767,7 +47767,7 @@ { "Field": "tabelle", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -47811,7 +47811,7 @@ }, { "name": "inhalt", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -47828,7 +47828,7 @@ { "Field": "sprache", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -47839,7 +47839,7 @@ { "Field": "inhalt", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -47850,7 +47850,7 @@ { "Field": "kurztext", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -47861,7 +47861,7 @@ { "Field": "html", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -47872,7 +47872,7 @@ { "Field": "title", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -47883,7 +47883,7 @@ { "Field": "description", "Type": "varchar(512)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -47894,7 +47894,7 @@ { "Field": "keywords", "Type": "varchar(512)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -47905,7 +47905,7 @@ { "Field": "inhaltstyp", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -47960,7 +47960,7 @@ { "Field": "template", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -47971,7 +47971,7 @@ { "Field": "finalparse", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -47982,7 +47982,7 @@ { "Field": "navigation", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -48004,7 +48004,7 @@ }, { "name": "inventur", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -48032,7 +48032,7 @@ { "Field": "projekt", "Type": "varchar(222)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -48043,7 +48043,7 @@ { "Field": "belegnr", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -48054,7 +48054,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -48065,7 +48065,7 @@ { "Field": "auftrag", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -48087,7 +48087,7 @@ { "Field": "freitext", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -48098,7 +48098,7 @@ { "Field": "status", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -48131,7 +48131,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -48142,7 +48142,7 @@ { "Field": "abteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -48153,7 +48153,7 @@ { "Field": "unterabteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -48164,7 +48164,7 @@ { "Field": "strasse", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -48175,7 +48175,7 @@ { "Field": "adresszusatz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -48186,7 +48186,7 @@ { "Field": "ansprechpartner", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -48197,7 +48197,7 @@ { "Field": "plz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -48208,7 +48208,7 @@ { "Field": "ort", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -48219,7 +48219,7 @@ { "Field": "land", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -48230,7 +48230,7 @@ { "Field": "ustid", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -48241,7 +48241,7 @@ { "Field": "email", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -48252,7 +48252,7 @@ { "Field": "telefon", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -48263,7 +48263,7 @@ { "Field": "telefax", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -48274,7 +48274,7 @@ { "Field": "betreff", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -48285,7 +48285,7 @@ { "Field": "kundennummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -48296,7 +48296,7 @@ { "Field": "versandart", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -48307,7 +48307,7 @@ { "Field": "versand", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -48351,7 +48351,7 @@ { "Field": "versendet_per", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -48362,7 +48362,7 @@ { "Field": "versendet_durch", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -48472,7 +48472,7 @@ }, { "name": "inventur_position", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -48522,7 +48522,7 @@ { "Field": "nummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -48533,7 +48533,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -48544,7 +48544,7 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -48555,7 +48555,7 @@ { "Field": "internerkommentar", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -48588,7 +48588,7 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -48641,7 +48641,7 @@ }, { "name": "inventur_protokoll", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -48680,7 +48680,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -48691,7 +48691,7 @@ { "Field": "grund", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -48721,7 +48721,7 @@ }, { "name": "item_template", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -48749,7 +48749,7 @@ { "Field": "type", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -48760,7 +48760,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -48793,7 +48793,7 @@ }, { "name": "jqcalendar", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -48821,7 +48821,7 @@ { "Field": "titel", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -48832,7 +48832,7 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -48843,7 +48843,7 @@ { "Field": "ort", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -48898,7 +48898,7 @@ }, { "name": "kalender", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -48915,7 +48915,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "''default''", @@ -48926,7 +48926,7 @@ { "Field": "farbe", "Type": "varchar(15)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'3300ff'", @@ -48948,7 +48948,7 @@ }, { "name": "kalender_event", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -48976,7 +48976,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -48987,7 +48987,7 @@ { "Field": "beschreibung", "Type": "longtext", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -49031,7 +49031,7 @@ { "Field": "color", "Type": "varchar(7)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'#6f93db'", @@ -49053,7 +49053,7 @@ { "Field": "ort", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -49141,7 +49141,7 @@ { "Field": "typ", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -49152,7 +49152,7 @@ { "Field": "uri", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -49163,7 +49163,7 @@ { "Field": "uid", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -49193,7 +49193,7 @@ }, { "name": "kalender_gruppen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -49210,7 +49210,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -49221,7 +49221,7 @@ { "Field": "farbe", "Type": "varchar(8)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -49254,7 +49254,7 @@ }, { "name": "kalender_gruppen_mitglieder", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -49331,7 +49331,7 @@ }, { "name": "kalender_temp", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -49359,7 +49359,7 @@ { "Field": "szelle", "Type": "varchar(15)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -49381,7 +49381,7 @@ { "Field": "ndatum", "Type": "varchar(8)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -49427,7 +49427,7 @@ }, { "name": "kalender_user", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -49504,7 +49504,7 @@ }, { "name": "kasse", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -49532,7 +49532,7 @@ { "Field": "auswahl", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -49565,7 +49565,7 @@ { "Field": "grund", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -49587,7 +49587,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -49785,7 +49785,7 @@ { "Field": "storniert_grund", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -49796,7 +49796,7 @@ { "Field": "storniert_bearbeiter", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -49807,7 +49807,7 @@ { "Field": "sachkonto", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -49818,7 +49818,7 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -49859,7 +49859,7 @@ }, { "name": "kasse_log", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -49898,7 +49898,7 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -49942,7 +49942,7 @@ }, { "name": "kommissionierung", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -49970,7 +49970,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -49992,7 +49992,7 @@ { "Field": "kommentar", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -50025,7 +50025,7 @@ { "Field": "bezeichnung", "Type": "varchar(40)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -50058,7 +50058,7 @@ }, { "name": "kommissionierung_position", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -50130,7 +50130,7 @@ }, { "name": "kommissionierung_position_ls", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -50213,7 +50213,7 @@ }, { "name": "kommissionskonsignationslager_positionen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -50370,13 +50370,13 @@ }, { "name": "konfiguration", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "PRI", "Default": null, @@ -50387,7 +50387,7 @@ { "Field": "wert", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -50431,7 +50431,7 @@ }, { "name": "konten", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -50448,7 +50448,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -50459,7 +50459,7 @@ { "Field": "kurzbezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -50470,7 +50470,7 @@ { "Field": "type", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -50481,7 +50481,7 @@ { "Field": "erstezeile", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -50503,7 +50503,7 @@ { "Field": "blz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -50514,7 +50514,7 @@ { "Field": "konto", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -50525,7 +50525,7 @@ { "Field": "swift", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -50536,7 +50536,7 @@ { "Field": "iban", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -50569,7 +50569,7 @@ { "Field": "hbcikennung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -50580,7 +50580,7 @@ { "Field": "inhaber", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -50646,7 +50646,7 @@ { "Field": "liveimport", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -50657,7 +50657,7 @@ { "Field": "liveimport_passwort", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -50679,7 +50679,7 @@ { "Field": "importtrennzeichen", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -50690,7 +50690,7 @@ { "Field": "codierung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -50712,7 +50712,7 @@ { "Field": "importdatenmaskierung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -50734,7 +50734,7 @@ { "Field": "glaeubiger", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -50800,7 +50800,7 @@ { "Field": "importfelddatum", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -50811,7 +50811,7 @@ { "Field": "importfelddatumformat", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -50822,7 +50822,7 @@ { "Field": "importfelddatumformatausgabe", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -50833,7 +50833,7 @@ { "Field": "importfeldbetrag", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -50844,7 +50844,7 @@ { "Field": "importfeldbetragformat", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -50855,7 +50855,7 @@ { "Field": "importfeldbuchungstext", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -50866,7 +50866,7 @@ { "Field": "importfeldbuchungstextformat", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -50877,7 +50877,7 @@ { "Field": "importfeldwaehrung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -50888,7 +50888,7 @@ { "Field": "importfeldwaehrungformat", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -50899,7 +50899,7 @@ { "Field": "importfeldhabensollkennung", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -50910,7 +50910,7 @@ { "Field": "importfeldkennunghaben", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -50921,7 +50921,7 @@ { "Field": "importfeldkennungsoll", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -50943,7 +50943,7 @@ { "Field": "importfeldhaben", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -50954,7 +50954,7 @@ { "Field": "importfeldsoll", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -51028,7 +51028,7 @@ }, { "name": "kontoauszuege", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -51078,7 +51078,7 @@ { "Field": "vorgang", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -51089,7 +51089,7 @@ { "Field": "originalvorgang", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -51166,7 +51166,7 @@ { "Field": "waehrung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -51177,7 +51177,7 @@ { "Field": "originalwaehrung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -51210,7 +51210,7 @@ { "Field": "buchungstext", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -51221,7 +51221,7 @@ { "Field": "gegenkonto", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -51232,7 +51232,7 @@ { "Field": "belegfeld1", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -51243,7 +51243,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -51265,7 +51265,7 @@ { "Field": "pruefsumme", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -51276,7 +51276,7 @@ { "Field": "kostenstelle", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -51320,7 +51320,7 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -51364,7 +51364,7 @@ { "Field": "doctype", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -51386,7 +51386,7 @@ { "Field": "vorauswahltyp", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -51397,7 +51397,7 @@ { "Field": "vorauswahlparameter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -51419,7 +51419,7 @@ { "Field": "klaergrund", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -51430,7 +51430,7 @@ { "Field": "bezugtyp", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -51441,7 +51441,7 @@ { "Field": "bezugparameter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -51509,7 +51509,7 @@ }, { "name": "kontoauszuege_zahlungsausgang", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -51537,7 +51537,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -51570,7 +51570,7 @@ { "Field": "objekt", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -51652,7 +51652,7 @@ }, { "name": "kontoauszuege_zahlungseingang", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -51680,7 +51680,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -51713,7 +51713,7 @@ { "Field": "objekt", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -51806,7 +51806,7 @@ }, { "name": "kontorahmen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -51823,7 +51823,7 @@ { "Field": "sachkonto", "Type": "varchar(16)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -51834,7 +51834,7 @@ { "Field": "beschriftung", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -51845,7 +51845,7 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -51900,7 +51900,7 @@ }, { "name": "kontorahmen_checked", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -51950,7 +51950,7 @@ }, { "name": "kopiebelegempfaenger", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -51967,7 +51967,7 @@ { "Field": "belegtyp", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -51978,7 +51978,7 @@ { "Field": "art", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -51989,7 +51989,7 @@ { "Field": "projekt", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -52011,7 +52011,7 @@ { "Field": "empfaenger_email", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -52022,7 +52022,7 @@ { "Field": "empfaenger_name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -52088,7 +52088,7 @@ }, { "name": "kostenstelle", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -52105,7 +52105,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -52116,7 +52116,7 @@ { "Field": "projekt", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -52127,7 +52127,7 @@ { "Field": "verantwortlicher", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -52138,7 +52138,7 @@ { "Field": "logdatei", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -52160,7 +52160,7 @@ }, { "name": "kostenstelle_buchung", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -52188,7 +52188,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -52199,7 +52199,7 @@ { "Field": "datum", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -52210,7 +52210,7 @@ { "Field": "buchungstext", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -52221,7 +52221,7 @@ { "Field": "sonstiges", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -52243,7 +52243,7 @@ }, { "name": "kostenstellen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -52260,7 +52260,7 @@ { "Field": "nummer", "Type": "varchar(20)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -52271,7 +52271,7 @@ { "Field": "beschreibung", "Type": "varchar(512)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -52282,7 +52282,7 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -52304,7 +52304,7 @@ }, { "name": "kundevorlage", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -52332,7 +52332,7 @@ { "Field": "zahlungsweise", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -52376,7 +52376,7 @@ { "Field": "versandart", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -52409,7 +52409,7 @@ }, { "name": "label_automatic", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -52448,7 +52448,7 @@ { "Field": "action", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -52459,7 +52459,7 @@ { "Field": "selection", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -52481,7 +52481,7 @@ }, { "name": "label_group", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -52498,7 +52498,7 @@ { "Field": "group_table", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "UNI", "Default": null, @@ -52509,7 +52509,7 @@ { "Field": "title", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -52550,7 +52550,7 @@ }, { "name": "label_reference", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -52578,7 +52578,7 @@ { "Field": "reference_table", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -52682,7 +52682,7 @@ }, { "name": "label_type", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -52710,7 +52710,7 @@ { "Field": "type", "Type": "varchar(24)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "UNI", "Default": null, @@ -52721,7 +52721,7 @@ { "Field": "title", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -52732,7 +52732,7 @@ { "Field": "hexcolor", "Type": "varchar(7)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'#ffffff'", @@ -52784,7 +52784,7 @@ }, { "name": "laender", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -52801,7 +52801,7 @@ { "Field": "iso", "Type": "varchar(3)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -52812,7 +52812,7 @@ { "Field": "iso3", "Type": "varchar(3)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -52823,7 +52823,7 @@ { "Field": "num_code", "Type": "varchar(3)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -52834,7 +52834,7 @@ { "Field": "bezeichnung_de", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -52845,7 +52845,7 @@ { "Field": "bezeichnung_en", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -52878,7 +52878,7 @@ }, { "name": "lager", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -52895,7 +52895,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -52906,7 +52906,7 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -52994,7 +52994,7 @@ }, { "name": "lager_bewegung", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -53044,7 +53044,7 @@ { "Field": "vpe", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -53077,7 +53077,7 @@ { "Field": "referenz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -53088,7 +53088,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -53176,7 +53176,7 @@ { "Field": "doctype", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -53247,7 +53247,7 @@ }, { "name": "lager_charge", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -53264,7 +53264,7 @@ { "Field": "charge", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -53330,7 +53330,7 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -53368,7 +53368,7 @@ }, { "name": "lager_differenzen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -53484,7 +53484,7 @@ }, { "name": "lager_mindesthaltbarkeitsdatum", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -53567,7 +53567,7 @@ { "Field": "charge", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -53578,7 +53578,7 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -53616,7 +53616,7 @@ }, { "name": "lager_platz", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -53644,7 +53644,7 @@ { "Field": "kurzbezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -53655,7 +53655,7 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -53798,7 +53798,7 @@ { "Field": "abckategorie", "Type": "varchar(1)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -53809,7 +53809,7 @@ { "Field": "regalart", "Type": "varchar(100)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -53861,7 +53861,7 @@ }, { "name": "lager_platz_inhalt", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -53911,7 +53911,7 @@ { "Field": "vpe", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -53922,7 +53922,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -54026,7 +54026,7 @@ }, { "name": "lager_platz_vpe", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -54197,7 +54197,7 @@ }, { "name": "lager_reserviert", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -54247,7 +54247,7 @@ { "Field": "grund", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -54258,7 +54258,7 @@ { "Field": "objekt", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -54269,7 +54269,7 @@ { "Field": "parameter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -54302,7 +54302,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -54396,7 +54396,7 @@ }, { "name": "lager_seriennummern", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -54446,7 +54446,7 @@ { "Field": "seriennummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -54457,7 +54457,7 @@ { "Field": "charge", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -54479,7 +54479,7 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -54501,7 +54501,7 @@ }, { "name": "lagermindestmengen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -54604,7 +54604,7 @@ }, { "name": "lagerstueckliste", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -54684,7 +54684,7 @@ }, { "name": "lagerwert", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -54822,7 +54822,7 @@ { "Field": "waehrungkalk", "Type": "varchar(16)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -54833,7 +54833,7 @@ { "Field": "waehrungletzt", "Type": "varchar(16)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -54893,7 +54893,7 @@ }, { "name": "layouttemplate_attachment", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -54910,7 +54910,7 @@ { "Field": "module", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -54954,7 +54954,7 @@ { "Field": "language", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -54965,7 +54965,7 @@ { "Field": "country", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -55009,7 +55009,7 @@ { "Field": "filename", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -55031,7 +55031,7 @@ }, { "name": "layouttemplate_attachment_items", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -55048,7 +55048,7 @@ { "Field": "object", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -55103,7 +55103,7 @@ }, { "name": "layoutvorlagen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -55120,7 +55120,7 @@ { "Field": "name", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -55131,7 +55131,7 @@ { "Field": "typ", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -55153,7 +55153,7 @@ { "Field": "format", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -55164,7 +55164,7 @@ { "Field": "kategorie", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -55197,7 +55197,7 @@ }, { "name": "layoutvorlagen_positionen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -55225,7 +55225,7 @@ { "Field": "name", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -55236,7 +55236,7 @@ { "Field": "beschreibung", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -55247,7 +55247,7 @@ { "Field": "typ", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -55258,7 +55258,7 @@ { "Field": "position_typ", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -55324,7 +55324,7 @@ { "Field": "schrift_art", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -55357,7 +55357,7 @@ { "Field": "schrift_farbe", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -55368,7 +55368,7 @@ { "Field": "schrift_align", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -55379,7 +55379,7 @@ { "Field": "hintergrund_farbe", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -55390,7 +55390,7 @@ { "Field": "rahmen", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -55401,7 +55401,7 @@ { "Field": "rahmen_farbe", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -55423,7 +55423,7 @@ { "Field": "inhalt_deutsch", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -55434,7 +55434,7 @@ { "Field": "inhalt_englisch", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -55500,7 +55500,7 @@ { "Field": "bild_deutsch_typ", "Type": "varchar(5)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -55511,7 +55511,7 @@ { "Field": "bild_englisch_typ", "Type": "varchar(5)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -55574,7 +55574,7 @@ }, { "name": "lieferadressen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -55591,7 +55591,7 @@ { "Field": "typ", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -55602,7 +55602,7 @@ { "Field": "sprache", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -55613,7 +55613,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -55624,7 +55624,7 @@ { "Field": "abteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -55635,7 +55635,7 @@ { "Field": "unterabteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -55646,7 +55646,7 @@ { "Field": "land", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -55657,7 +55657,7 @@ { "Field": "strasse", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -55668,7 +55668,7 @@ { "Field": "ort", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -55679,7 +55679,7 @@ { "Field": "plz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -55690,7 +55690,7 @@ { "Field": "telefon", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -55701,7 +55701,7 @@ { "Field": "telefax", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -55712,7 +55712,7 @@ { "Field": "email", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -55723,7 +55723,7 @@ { "Field": "sonstiges", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -55734,7 +55734,7 @@ { "Field": "adresszusatz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -55745,7 +55745,7 @@ { "Field": "steuer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -55756,7 +55756,7 @@ { "Field": "adresse", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -55778,7 +55778,7 @@ { "Field": "ansprechpartner", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -55800,7 +55800,7 @@ { "Field": "interne_bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -55811,7 +55811,7 @@ { "Field": "hinweis", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -55822,7 +55822,7 @@ { "Field": "gln", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -55833,7 +55833,7 @@ { "Field": "ustid", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -55844,7 +55844,7 @@ { "Field": "lieferbedingung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -55855,7 +55855,7 @@ { "Field": "ust_befreit", "Type": "varchar(1)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -55885,7 +55885,7 @@ }, { "name": "lieferantvorlage", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -55913,7 +55913,7 @@ { "Field": "kundennummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -55924,7 +55924,7 @@ { "Field": "zahlungsweise", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -55968,7 +55968,7 @@ { "Field": "versandart", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -56001,7 +56001,7 @@ }, { "name": "lieferbedingungen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -56018,7 +56018,7 @@ { "Field": "lieferbedingungen", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -56029,7 +56029,7 @@ { "Field": "kennzeichen", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -56051,7 +56051,7 @@ }, { "name": "lieferschein", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -56079,7 +56079,7 @@ { "Field": "projekt", "Type": "varchar(222)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -56090,7 +56090,7 @@ { "Field": "lieferscheinart", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -56101,7 +56101,7 @@ { "Field": "belegnr", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -56112,7 +56112,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -56123,7 +56123,7 @@ { "Field": "auftrag", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -56145,7 +56145,7 @@ { "Field": "freitext", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -56156,7 +56156,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -56178,7 +56178,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -56189,7 +56189,7 @@ { "Field": "abteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -56200,7 +56200,7 @@ { "Field": "unterabteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -56211,7 +56211,7 @@ { "Field": "strasse", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -56222,7 +56222,7 @@ { "Field": "adresszusatz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -56233,7 +56233,7 @@ { "Field": "ansprechpartner", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -56244,7 +56244,7 @@ { "Field": "plz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -56255,7 +56255,7 @@ { "Field": "ort", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -56266,7 +56266,7 @@ { "Field": "land", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -56277,7 +56277,7 @@ { "Field": "ustid", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -56288,7 +56288,7 @@ { "Field": "email", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -56299,7 +56299,7 @@ { "Field": "telefon", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -56310,7 +56310,7 @@ { "Field": "telefax", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -56321,7 +56321,7 @@ { "Field": "betreff", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -56332,7 +56332,7 @@ { "Field": "kundennummer", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -56343,7 +56343,7 @@ { "Field": "versandart", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -56354,7 +56354,7 @@ { "Field": "versand", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -56398,7 +56398,7 @@ { "Field": "versendet_per", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -56409,7 +56409,7 @@ { "Field": "versendet_durch", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -56453,7 +56453,7 @@ { "Field": "vertrieb", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -56475,7 +56475,7 @@ { "Field": "ihrebestellnummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -56486,7 +56486,7 @@ { "Field": "anschreiben", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -56530,7 +56530,7 @@ { "Field": "lieferantenretoureinfo", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -56585,7 +56585,7 @@ { "Field": "typ", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "''firma''", @@ -56596,7 +56596,7 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -56673,7 +56673,7 @@ { "Field": "internebezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -56706,7 +56706,7 @@ { "Field": "sprache", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -56717,7 +56717,7 @@ { "Field": "bundesland", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -56728,7 +56728,7 @@ { "Field": "gln", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -56794,7 +56794,7 @@ { "Field": "kostenstelle", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -56805,7 +56805,7 @@ { "Field": "bodyzusatz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -56816,7 +56816,7 @@ { "Field": "lieferbedingung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -56827,7 +56827,7 @@ { "Field": "titel", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -56860,7 +56860,7 @@ { "Field": "bundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -56987,7 +56987,7 @@ }, { "name": "lieferschein_position", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -57037,7 +57037,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -57048,7 +57048,7 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -57059,7 +57059,7 @@ { "Field": "internerkommentar", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -57070,7 +57070,7 @@ { "Field": "nummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -57081,7 +57081,7 @@ { "Field": "seriennummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -57114,7 +57114,7 @@ { "Field": "vpe", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -57136,7 +57136,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -57147,7 +57147,7 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -57202,7 +57202,7 @@ { "Field": "einheit", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -57213,7 +57213,7 @@ { "Field": "zolltarifnummer", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'0'", @@ -57224,7 +57224,7 @@ { "Field": "herkunftsland", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'0'", @@ -57235,7 +57235,7 @@ { "Field": "artikelnummerkunde", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -57246,7 +57246,7 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -57257,7 +57257,7 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -57268,7 +57268,7 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -57279,7 +57279,7 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -57290,7 +57290,7 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -57301,7 +57301,7 @@ { "Field": "freifeld6", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -57312,7 +57312,7 @@ { "Field": "freifeld7", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -57323,7 +57323,7 @@ { "Field": "freifeld8", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -57334,7 +57334,7 @@ { "Field": "freifeld9", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -57345,7 +57345,7 @@ { "Field": "freifeld10", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -57389,7 +57389,7 @@ { "Field": "lagertext", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -57422,7 +57422,7 @@ { "Field": "freifeld11", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -57433,7 +57433,7 @@ { "Field": "freifeld12", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -57444,7 +57444,7 @@ { "Field": "freifeld13", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -57455,7 +57455,7 @@ { "Field": "freifeld14", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -57466,7 +57466,7 @@ { "Field": "freifeld15", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -57477,7 +57477,7 @@ { "Field": "freifeld16", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -57488,7 +57488,7 @@ { "Field": "freifeld17", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -57499,7 +57499,7 @@ { "Field": "freifeld18", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -57510,7 +57510,7 @@ { "Field": "freifeld19", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -57521,7 +57521,7 @@ { "Field": "freifeld20", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -57532,7 +57532,7 @@ { "Field": "freifeld21", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -57543,7 +57543,7 @@ { "Field": "freifeld22", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -57554,7 +57554,7 @@ { "Field": "freifeld23", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -57565,7 +57565,7 @@ { "Field": "freifeld24", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -57576,7 +57576,7 @@ { "Field": "freifeld25", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -57587,7 +57587,7 @@ { "Field": "freifeld26", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -57598,7 +57598,7 @@ { "Field": "freifeld27", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -57609,7 +57609,7 @@ { "Field": "freifeld28", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -57620,7 +57620,7 @@ { "Field": "freifeld29", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -57631,7 +57631,7 @@ { "Field": "freifeld30", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -57642,7 +57642,7 @@ { "Field": "freifeld31", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -57653,7 +57653,7 @@ { "Field": "freifeld32", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -57664,7 +57664,7 @@ { "Field": "freifeld33", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -57675,7 +57675,7 @@ { "Field": "freifeld34", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -57686,7 +57686,7 @@ { "Field": "freifeld35", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -57697,7 +57697,7 @@ { "Field": "freifeld36", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -57708,7 +57708,7 @@ { "Field": "freifeld37", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -57719,7 +57719,7 @@ { "Field": "freifeld38", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -57730,7 +57730,7 @@ { "Field": "freifeld39", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -57741,7 +57741,7 @@ { "Field": "freifeld40", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -57774,7 +57774,7 @@ { "Field": "zollwaehrung", "Type": "varchar(3)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -57807,7 +57807,7 @@ { "Field": "nve", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -57818,7 +57818,7 @@ { "Field": "packstueck", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -57897,7 +57897,7 @@ }, { "name": "lieferschein_protokoll", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -57936,7 +57936,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -57947,7 +57947,7 @@ { "Field": "grund", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -57977,7 +57977,7 @@ }, { "name": "lieferschwelle", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -57994,7 +57994,7 @@ { "Field": "ursprungsland", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -58005,7 +58005,7 @@ { "Field": "empfaengerland", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -58027,7 +58027,7 @@ { "Field": "ustid", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -58159,7 +58159,7 @@ { "Field": "jahr", "Type": "varchar(4)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -58200,7 +58200,7 @@ }, { "name": "lieferschwelle_artikel", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -58228,7 +58228,7 @@ { "Field": "empfaengerland", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -58250,7 +58250,7 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -58299,7 +58299,7 @@ }, { "name": "liefertermine_positionen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -58371,7 +58371,7 @@ }, { "name": "linkeditor", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -58388,7 +58388,7 @@ { "Field": "rule", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -58399,7 +58399,7 @@ { "Field": "replacewith", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -58410,7 +58410,7 @@ { "Field": "active", "Type": "varchar(1)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'1'", @@ -58432,7 +58432,7 @@ }, { "name": "log", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -58460,7 +58460,7 @@ { "Field": "level", "Type": "varchar(16)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -58471,7 +58471,7 @@ { "Field": "message", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -58482,7 +58482,7 @@ { "Field": "class", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -58493,7 +58493,7 @@ { "Field": "method", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -58515,7 +58515,7 @@ { "Field": "origin_type", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -58526,7 +58526,7 @@ { "Field": "origin_detail", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -58537,7 +58537,7 @@ { "Field": "dump", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -58559,7 +58559,7 @@ }, { "name": "logdatei", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -58576,7 +58576,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -58587,7 +58587,7 @@ { "Field": "befehl", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -58598,7 +58598,7 @@ { "Field": "statement", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -58642,7 +58642,7 @@ }, { "name": "logfile", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -58659,7 +58659,7 @@ { "Field": "meldung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -58670,7 +58670,7 @@ { "Field": "dump", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -58681,7 +58681,7 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -58692,7 +58692,7 @@ { "Field": "action", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -58703,7 +58703,7 @@ { "Field": "bearbeiter", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -58714,7 +58714,7 @@ { "Field": "funktionsname", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -58747,7 +58747,7 @@ }, { "name": "magento2_extended_mapping", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -58775,7 +58775,7 @@ { "Field": "magento2_extended_mapping_name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -58786,7 +58786,7 @@ { "Field": "magento2_extended_mapping_type", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -58797,7 +58797,7 @@ { "Field": "magento2_extended_mapping_parameter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -58860,7 +58860,7 @@ }, { "name": "mailausgang", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -58877,7 +58877,7 @@ { "Field": "subject", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -58899,7 +58899,7 @@ { "Field": "from", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -58910,7 +58910,7 @@ { "Field": "to", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -58921,7 +58921,7 @@ { "Field": "status", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "''0''", @@ -58965,7 +58965,7 @@ }, { "name": "managementboard_liquiditaet", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -58982,7 +58982,7 @@ { "Field": "bezeichnung", "Type": "varchar(200)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -59059,7 +59059,7 @@ }, { "name": "managementboard_liquiditaet_datum", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -59076,7 +59076,7 @@ { "Field": "doctype", "Type": "varchar(200)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -59120,7 +59120,7 @@ }, { "name": "mandatory_field", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -59137,7 +59137,7 @@ { "Field": "module", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -59148,7 +59148,7 @@ { "Field": "action", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -59159,7 +59159,7 @@ { "Field": "field_id", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -59170,7 +59170,7 @@ { "Field": "error_message", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -59181,7 +59181,7 @@ { "Field": "type", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -59225,7 +59225,7 @@ { "Field": "comparator", "Type": "varchar(15)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -59236,7 +59236,7 @@ { "Field": "compareto", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -59274,7 +59274,7 @@ }, { "name": "massenbearbeitung", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -59302,7 +59302,7 @@ { "Field": "feld", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -59313,7 +59313,7 @@ { "Field": "wert", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -59324,7 +59324,7 @@ { "Field": "subjekt", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -59335,7 +59335,7 @@ { "Field": "objekt", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -59357,7 +59357,7 @@ }, { "name": "matrix_article_options_translation", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -59385,7 +59385,7 @@ { "Field": "language_from", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -59396,7 +59396,7 @@ { "Field": "name_from", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -59407,7 +59407,7 @@ { "Field": "name_external_from", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -59418,7 +59418,7 @@ { "Field": "language_to", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -59429,7 +59429,7 @@ { "Field": "name_to", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -59440,7 +59440,7 @@ { "Field": "name_external_to", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -59451,7 +59451,7 @@ { "Field": "articlenumber_suffix_from", "Type": "varchar(16)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -59462,7 +59462,7 @@ { "Field": "articlenumber_suffix_to", "Type": "varchar(16)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -59495,7 +59495,7 @@ }, { "name": "matrix_article_translation", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -59512,7 +59512,7 @@ { "Field": "language_from", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -59523,7 +59523,7 @@ { "Field": "name_from", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -59534,7 +59534,7 @@ { "Field": "name_external_from", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -59545,7 +59545,7 @@ { "Field": "language_to", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -59556,7 +59556,7 @@ { "Field": "name_to", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -59567,7 +59567,7 @@ { "Field": "name_external_to", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -59611,7 +59611,7 @@ }, { "name": "matrix_list_view", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -59650,7 +59650,7 @@ { "Field": "article_number", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -59660,8 +59660,8 @@ }, { "Field": "hash", - "Type": "text", - "Collation": "utf8mb4_general_ci", + "Type": "varchar(255)", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -59672,7 +59672,7 @@ { "Field": "dimension1", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -59694,7 +59694,7 @@ { "Field": "dimension2", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -59716,7 +59716,7 @@ { "Field": "dimension3", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -59738,7 +59738,7 @@ { "Field": "dimension4", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -59760,7 +59760,7 @@ { "Field": "dimension5", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -59782,7 +59782,7 @@ { "Field": "dimension6", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -59804,7 +59804,7 @@ { "Field": "dimension7", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -59826,7 +59826,7 @@ { "Field": "dimension8", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -59848,7 +59848,7 @@ { "Field": "dimension9", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -59870,7 +59870,7 @@ { "Field": "dimension10", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -59892,7 +59892,7 @@ { "Field": "dimension11", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -59914,7 +59914,7 @@ { "Field": "dimension12", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -59936,7 +59936,7 @@ { "Field": "dimension13", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -59958,7 +59958,7 @@ { "Field": "dimension14", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -59980,7 +59980,7 @@ { "Field": "dimension15", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -60002,7 +60002,7 @@ { "Field": "dimension16", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -60024,7 +60024,7 @@ { "Field": "dimension17", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -60046,7 +60046,7 @@ { "Field": "dimension18", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -60068,7 +60068,7 @@ { "Field": "dimension19", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -60090,7 +60090,7 @@ { "Field": "dimension20", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -60121,8 +60121,8 @@ }, { "Key_name": "matrix_article_id", - "Index_type": "HASH", - "Non_unique": "", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "matrix_article_id", "hash" @@ -60132,7 +60132,7 @@ }, { "name": "matrix_list_view_status", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -60201,7 +60201,7 @@ }, { "name": "matrixprodukt_eigenschaftengruppen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -60229,7 +60229,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -60240,7 +60240,7 @@ { "Field": "name_ext", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -60262,7 +60262,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -60306,7 +60306,7 @@ }, { "name": "matrixprodukt_eigenschaftengruppen_artikel", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -60345,7 +60345,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -60356,7 +60356,7 @@ { "Field": "name_ext", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -60378,7 +60378,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -60463,7 +60463,7 @@ }, { "name": "matrixprodukt_eigenschaftenoptionen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -60502,7 +60502,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -60513,7 +60513,7 @@ { "Field": "name_ext", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -60546,7 +60546,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -60557,7 +60557,7 @@ { "Field": "artikelnummer", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -60568,7 +60568,7 @@ { "Field": "articlenumber_suffix", "Type": "varchar(16)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -60590,7 +60590,7 @@ }, { "name": "matrixprodukt_eigenschaftenoptionen_artikel", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -60640,7 +60640,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -60651,7 +60651,7 @@ { "Field": "name_ext", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -60695,7 +60695,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -60706,7 +60706,7 @@ { "Field": "artikelnummer", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -60717,7 +60717,7 @@ { "Field": "articlenumber_suffix", "Type": "varchar(16)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -60747,7 +60747,7 @@ }, { "name": "matrixprodukt_optionen_zu_artikel", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -60813,7 +60813,7 @@ }, { "name": "maximum_discount", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -60863,7 +60863,7 @@ }, { "name": "mhd_log", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -60924,7 +60924,7 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -60979,7 +60979,7 @@ { "Field": "doctype", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -61012,7 +61012,7 @@ { "Field": "charge", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -61072,7 +61072,7 @@ }, { "name": "mitarbeiterzeiterfassung", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -61100,7 +61100,7 @@ { "Field": "kuerzel", "Type": "varchar(50)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -61199,7 +61199,7 @@ { "Field": "buchungsart", "Type": "varchar(100)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -61232,7 +61232,7 @@ }, { "name": "mitarbeiterzeiterfassung_einstellungen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -61260,7 +61260,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -61359,7 +61359,7 @@ { "Field": "rundenkommen", "Type": "varchar(48)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'nicht_runden'", @@ -61370,7 +61370,7 @@ { "Field": "rundengehen", "Type": "varchar(48)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'nicht_runden'", @@ -61601,7 +61601,7 @@ }, { "name": "mitarbeiterzeiterfassung_sollstunden", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -61706,7 +61706,7 @@ { "Field": "kuerzel", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -61717,7 +61717,7 @@ { "Field": "kommentar", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -61750,7 +61750,7 @@ { "Field": "rundenkommen", "Type": "varchar(48)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -61761,7 +61761,7 @@ { "Field": "rundengehen", "Type": "varchar(48)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -61915,7 +61915,7 @@ { "Field": "vacation_request_token", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -61926,7 +61926,7 @@ { "Field": "internal_comment", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -61964,7 +61964,7 @@ }, { "name": "mlm_abrechnung", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -62058,7 +62058,7 @@ }, { "name": "mlm_abrechnung_adresse", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -62130,7 +62130,7 @@ { "Field": "mlmabrechnung", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -62141,7 +62141,7 @@ { "Field": "alteposition", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -62152,7 +62152,7 @@ { "Field": "neueposition", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -62163,7 +62163,7 @@ { "Field": "erreichteposition", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -62185,7 +62185,7 @@ { "Field": "waehrung", "Type": "varchar(3)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'EUR'", @@ -62218,7 +62218,7 @@ { "Field": "rechnung_name", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -62229,7 +62229,7 @@ { "Field": "rechnung_strasse", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -62240,7 +62240,7 @@ { "Field": "rechnung_ort", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -62251,7 +62251,7 @@ { "Field": "rechnung_plz", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -62262,7 +62262,7 @@ { "Field": "rechnung_land", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -62273,7 +62273,7 @@ { "Field": "steuernummer", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -62317,7 +62317,7 @@ { "Field": "bezahlt_bearbeiter", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -62339,7 +62339,7 @@ { "Field": "bezahlt_status", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -62361,7 +62361,7 @@ }, { "name": "mlm_abrechnung_log", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -62400,7 +62400,7 @@ { "Field": "meldung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -62422,7 +62422,7 @@ }, { "name": "mlm_downline", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -62472,7 +62472,7 @@ }, { "name": "mlm_positionierung", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -62500,7 +62500,7 @@ { "Field": "positionierung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -62577,7 +62577,7 @@ }, { "name": "mlm_wartekonto", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -62616,7 +62616,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -62627,7 +62627,7 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -62704,7 +62704,7 @@ }, { "name": "module_action", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -62720,8 +62720,8 @@ }, { "Field": "module", - "Type": "text", - "Collation": "utf8mb4_general_ci", + "Type": "varchar(255)", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -62731,8 +62731,8 @@ }, { "Field": "action", - "Type": "text", - "Collation": "utf8mb4_general_ci", + "Type": "varchar(255)", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -62752,8 +62752,8 @@ }, { "Key_name": "module", - "Index_type": "HASH", - "Non_unique": "", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "module", "action" @@ -62763,7 +62763,7 @@ }, { "name": "module_lock", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -62780,7 +62780,7 @@ { "Field": "module", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -62791,7 +62791,7 @@ { "Field": "action", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -62813,7 +62813,7 @@ { "Field": "salt", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -62846,7 +62846,7 @@ }, { "name": "module_stat", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -62863,7 +62863,7 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -62874,7 +62874,7 @@ { "Field": "action", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -62928,7 +62928,7 @@ }, { "name": "module_stat_detail", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -62945,7 +62945,7 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -62956,7 +62956,7 @@ { "Field": "action", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -63000,7 +63000,7 @@ { "Field": "uid", "Type": "varchar(40)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -63058,7 +63058,7 @@ }, { "name": "module_status", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -63075,7 +63075,7 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -63108,7 +63108,7 @@ }, { "name": "navigation_alternative", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -63125,7 +63125,7 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -63136,7 +63136,7 @@ { "Field": "action", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -63147,7 +63147,7 @@ { "Field": "first", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -63158,7 +63158,7 @@ { "Field": "sec", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -63202,7 +63202,7 @@ }, { "name": "newsletter_blacklist", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -63219,7 +63219,7 @@ { "Field": "email", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -63241,13 +63241,13 @@ }, { "name": "newslettercache", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { "Field": "checksum", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -63258,7 +63258,7 @@ { "Field": "comment", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -63271,7 +63271,7 @@ }, { "name": "notification_message", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -63299,7 +63299,7 @@ { "Field": "type", "Type": "varchar(16)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'default'", @@ -63310,7 +63310,7 @@ { "Field": "title", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -63321,7 +63321,7 @@ { "Field": "message", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -63332,7 +63332,7 @@ { "Field": "tags", "Type": "varchar(512)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -63343,7 +63343,7 @@ { "Field": "options_json", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -63395,7 +63395,7 @@ }, { "name": "object_stat", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -63412,7 +63412,7 @@ { "Field": "object_type", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -63423,7 +63423,7 @@ { "Field": "object_parameter", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -63434,7 +63434,7 @@ { "Field": "event_type", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -63489,7 +63489,7 @@ }, { "name": "objekt_lager_platz", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -63517,7 +63517,7 @@ { "Field": "objekt", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -63561,7 +63561,7 @@ { "Field": "kommentar", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -63572,7 +63572,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -63629,7 +63629,7 @@ }, { "name": "objekt_protokoll", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -63646,7 +63646,7 @@ { "Field": "objekt", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -63668,7 +63668,7 @@ { "Field": "action_long", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -63679,7 +63679,7 @@ { "Field": "meldung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "''0''", @@ -63690,7 +63690,7 @@ { "Field": "bearbeiter", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -63723,7 +63723,7 @@ }, { "name": "offenevorgaenge", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -63751,7 +63751,7 @@ { "Field": "titel", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -63762,7 +63762,7 @@ { "Field": "href", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -63773,7 +63773,7 @@ { "Field": "beschriftung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -63784,7 +63784,7 @@ { "Field": "linkremove", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -63825,7 +63825,7 @@ }, { "name": "onlineshop_transfer_cart", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -63853,7 +63853,7 @@ { "Field": "cart_original", "Type": "mediumtext", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -63864,7 +63864,7 @@ { "Field": "cart_transfer", "Type": "mediumtext", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -63875,7 +63875,7 @@ { "Field": "template", "Type": "mediumtext", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -63886,7 +63886,7 @@ { "Field": "extid", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "MUL", "Default": null, @@ -63897,7 +63897,7 @@ { "Field": "internet", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -63908,7 +63908,7 @@ { "Field": "status", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -63957,7 +63957,7 @@ }, { "name": "onlineshops_tasks", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -63985,7 +63985,7 @@ { "Field": "command", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -63996,7 +63996,7 @@ { "Field": "status", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": "''inactive''", @@ -64051,7 +64051,7 @@ }, { "name": "openstreetmap_status", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -64101,7 +64101,7 @@ }, { "name": "paketannahme", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -64151,7 +64151,7 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -64173,7 +64173,7 @@ { "Field": "gewicht", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -64184,7 +64184,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -64206,7 +64206,7 @@ { "Field": "vorlage", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -64217,7 +64217,7 @@ { "Field": "vorlageid", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -64228,7 +64228,7 @@ { "Field": "zahlung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -64250,7 +64250,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -64305,7 +64305,7 @@ { "Field": "bearbeiter_distribution", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -64316,7 +64316,7 @@ { "Field": "postgrund", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -64338,7 +64338,7 @@ { "Field": "renr", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -64349,7 +64349,7 @@ { "Field": "lsnr", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -64371,7 +64371,7 @@ }, { "name": "paketdistribution", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -64388,7 +64388,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -64454,7 +64454,7 @@ { "Field": "vpe", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -64476,7 +64476,7 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -64531,7 +64531,7 @@ }, { "name": "partner", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -64559,7 +64559,7 @@ { "Field": "ref", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -64570,7 +64570,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -64658,7 +64658,7 @@ }, { "name": "partner_verkauf", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -64752,7 +64752,7 @@ }, { "name": "parts_list_alternative", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -64791,7 +64791,7 @@ { "Field": "reason", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -64813,7 +64813,7 @@ }, { "name": "payment_transaction", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -64841,7 +64841,7 @@ { "Field": "payment_status", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -64885,7 +64885,7 @@ { "Field": "currency", "Type": "varchar(8)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -64896,7 +64896,7 @@ { "Field": "payment_reason", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -64907,7 +64907,7 @@ { "Field": "payment_json", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -64940,7 +64940,7 @@ { "Field": "payment_info", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -65005,7 +65005,7 @@ }, { "name": "payment_transaction_group", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -65044,7 +65044,7 @@ { "Field": "comment", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -65055,7 +65055,7 @@ { "Field": "created_by", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -65085,7 +65085,7 @@ }, { "name": "payment_transaction_preview", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -65179,7 +65179,7 @@ { "Field": "currency", "Type": "varchar(8)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -65190,7 +65190,7 @@ { "Field": "payment_reason", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -65201,7 +65201,7 @@ { "Field": "payment_info", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -65239,7 +65239,7 @@ }, { "name": "paymentaccount_import_job", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -65300,7 +65300,7 @@ { "Field": "status", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'created'", @@ -65331,7 +65331,7 @@ }, { "name": "paymentaccount_import_scheduler", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -65390,7 +65390,7 @@ }, { "name": "paymentimport_lock", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -65418,7 +65418,7 @@ { "Field": "locked_by_type", "Type": "varchar(16)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -65481,7 +65481,7 @@ }, { "name": "pdfarchiv", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -65509,7 +65509,7 @@ { "Field": "checksum", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -65531,7 +65531,7 @@ { "Field": "table_name", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -65542,7 +65542,7 @@ { "Field": "doctype", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -65553,7 +65553,7 @@ { "Field": "doctypeorig", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -65564,7 +65564,7 @@ { "Field": "dateiname", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -65575,7 +65575,7 @@ { "Field": "bearbeiter", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -65586,7 +65586,7 @@ { "Field": "belegnummer", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -65630,7 +65630,7 @@ { "Field": "parameter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -65668,7 +65668,7 @@ }, { "name": "pdfmirror_md5pool", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -65696,7 +65696,7 @@ { "Field": "checksum", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -65718,7 +65718,7 @@ { "Field": "table_name", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -65729,7 +65729,7 @@ { "Field": "bearbeiter", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -65773,7 +65773,7 @@ }, { "name": "permissionhistory", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -65801,7 +65801,7 @@ { "Field": "granting_user_name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -65823,7 +65823,7 @@ { "Field": "receiving_user_name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -65834,7 +65834,7 @@ { "Field": "module", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -65845,7 +65845,7 @@ { "Field": "action", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -65889,7 +65889,7 @@ }, { "name": "pinwand", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -65906,7 +65906,7 @@ { "Field": "name", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -65939,7 +65939,7 @@ }, { "name": "pinwand_user", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -65998,7 +65998,7 @@ }, { "name": "pos_abschluss", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -66070,7 +66070,7 @@ }, { "name": "pos_kassierer", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -66109,7 +66109,7 @@ { "Field": "kassenkennung", "Type": "varchar(16)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -66142,7 +66142,7 @@ }, { "name": "pos_order", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -66236,7 +66236,7 @@ { "Field": "zahlungsweise", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -66258,7 +66258,7 @@ { "Field": "lager", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -66324,7 +66324,7 @@ { "Field": "tip_konto", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -66354,7 +66354,7 @@ }, { "name": "pos_rksv", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -66470,7 +66470,7 @@ { "Field": "umsatzzaehler_aes", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -66481,7 +66481,7 @@ { "Field": "signatur", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -66492,7 +66492,7 @@ { "Field": "jwscompact", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -66503,7 +66503,7 @@ { "Field": "belegart", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -66536,7 +66536,7 @@ }, { "name": "pos_sessions", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -66564,7 +66564,7 @@ { "Field": "kassierer", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'0'", @@ -66575,7 +66575,7 @@ { "Field": "sesssionbezeichnung", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -66586,7 +66586,7 @@ { "Field": "data", "Type": "longtext", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -66630,7 +66630,7 @@ }, { "name": "pos_tagesabschluss", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -66691,7 +66691,7 @@ { "Field": "nummer", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -66729,7 +66729,7 @@ }, { "name": "pos_zaehlungen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -66955,7 +66955,7 @@ { "Field": "kommentar", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -66966,7 +66966,7 @@ { "Field": "bearbeiter", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -66999,7 +66999,7 @@ }, { "name": "preisanfrage", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -67027,7 +67027,7 @@ { "Field": "projekt", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -67038,7 +67038,7 @@ { "Field": "belegnr", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -67049,7 +67049,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -67060,7 +67060,7 @@ { "Field": "auftrag", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -67082,7 +67082,7 @@ { "Field": "freitext", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -67093,7 +67093,7 @@ { "Field": "status", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -67126,7 +67126,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -67137,7 +67137,7 @@ { "Field": "abteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -67148,7 +67148,7 @@ { "Field": "unterabteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -67159,7 +67159,7 @@ { "Field": "strasse", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -67170,7 +67170,7 @@ { "Field": "adresszusatz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -67181,7 +67181,7 @@ { "Field": "ansprechpartner", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -67192,7 +67192,7 @@ { "Field": "plz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -67203,7 +67203,7 @@ { "Field": "ort", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -67214,7 +67214,7 @@ { "Field": "land", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -67225,7 +67225,7 @@ { "Field": "ustid", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -67236,7 +67236,7 @@ { "Field": "email", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -67247,7 +67247,7 @@ { "Field": "telefon", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -67258,7 +67258,7 @@ { "Field": "telefax", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -67269,7 +67269,7 @@ { "Field": "betreff", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -67280,7 +67280,7 @@ { "Field": "lieferantennummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -67291,7 +67291,7 @@ { "Field": "versandart", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -67302,7 +67302,7 @@ { "Field": "versand", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -67346,7 +67346,7 @@ { "Field": "versendet_per", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -67357,7 +67357,7 @@ { "Field": "versendet_durch", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -67401,7 +67401,7 @@ { "Field": "reservierart", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -67412,7 +67412,7 @@ { "Field": "auslagerart", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": "''sammel''", @@ -67467,7 +67467,7 @@ { "Field": "internebezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -67478,7 +67478,7 @@ { "Field": "anschreiben", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -67566,7 +67566,7 @@ { "Field": "waehrung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "''EUR''", @@ -67577,7 +67577,7 @@ { "Field": "typ", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "''firma''", @@ -67610,7 +67610,7 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -67621,7 +67621,7 @@ { "Field": "sprache", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -67632,7 +67632,7 @@ { "Field": "bodyzusatz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -67643,7 +67643,7 @@ { "Field": "lieferbedingung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -67654,7 +67654,7 @@ { "Field": "titel", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -67665,7 +67665,7 @@ { "Field": "bundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -67698,7 +67698,7 @@ }, { "name": "preisanfrage_position", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -67748,7 +67748,7 @@ { "Field": "nummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -67759,7 +67759,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -67770,7 +67770,7 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -67781,7 +67781,7 @@ { "Field": "internerkommentar", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -67814,7 +67814,7 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -67847,7 +67847,7 @@ { "Field": "vpe", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -67858,7 +67858,7 @@ { "Field": "einheit", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -67902,7 +67902,7 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -67913,7 +67913,7 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -67924,7 +67924,7 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -67935,7 +67935,7 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -67946,7 +67946,7 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -67957,7 +67957,7 @@ { "Field": "freifeld6", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -67968,7 +67968,7 @@ { "Field": "freifeld7", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -67979,7 +67979,7 @@ { "Field": "freifeld8", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -67990,7 +67990,7 @@ { "Field": "freifeld9", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -68001,7 +68001,7 @@ { "Field": "freifeld10", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -68012,7 +68012,7 @@ { "Field": "freifeld11", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -68023,7 +68023,7 @@ { "Field": "freifeld12", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -68034,7 +68034,7 @@ { "Field": "freifeld13", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -68045,7 +68045,7 @@ { "Field": "freifeld14", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -68056,7 +68056,7 @@ { "Field": "freifeld15", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -68067,7 +68067,7 @@ { "Field": "freifeld16", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -68078,7 +68078,7 @@ { "Field": "freifeld17", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -68089,7 +68089,7 @@ { "Field": "freifeld18", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -68100,7 +68100,7 @@ { "Field": "freifeld19", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -68111,7 +68111,7 @@ { "Field": "freifeld20", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -68122,7 +68122,7 @@ { "Field": "freifeld21", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -68133,7 +68133,7 @@ { "Field": "freifeld22", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -68144,7 +68144,7 @@ { "Field": "freifeld23", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -68155,7 +68155,7 @@ { "Field": "freifeld24", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -68166,7 +68166,7 @@ { "Field": "freifeld25", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -68177,7 +68177,7 @@ { "Field": "freifeld26", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -68188,7 +68188,7 @@ { "Field": "freifeld27", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -68199,7 +68199,7 @@ { "Field": "freifeld28", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -68210,7 +68210,7 @@ { "Field": "freifeld29", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -68221,7 +68221,7 @@ { "Field": "freifeld30", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -68232,7 +68232,7 @@ { "Field": "freifeld31", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -68243,7 +68243,7 @@ { "Field": "freifeld32", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -68254,7 +68254,7 @@ { "Field": "freifeld33", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -68265,7 +68265,7 @@ { "Field": "freifeld34", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -68276,7 +68276,7 @@ { "Field": "freifeld35", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -68287,7 +68287,7 @@ { "Field": "freifeld36", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -68298,7 +68298,7 @@ { "Field": "freifeld37", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -68309,7 +68309,7 @@ { "Field": "freifeld38", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -68320,7 +68320,7 @@ { "Field": "freifeld39", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -68331,7 +68331,7 @@ { "Field": "freifeld40", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -68361,7 +68361,7 @@ }, { "name": "preisanfrage_protokoll", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -68400,7 +68400,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -68411,7 +68411,7 @@ { "Field": "grund", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -68433,7 +68433,7 @@ }, { "name": "presta_image_association", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -68494,7 +68494,7 @@ }, { "name": "presta_matrix_association", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -68555,7 +68555,7 @@ }, { "name": "produktion", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -68583,7 +68583,7 @@ { "Field": "art", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -68594,7 +68594,7 @@ { "Field": "projekt", "Type": "varchar(222)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -68605,7 +68605,7 @@ { "Field": "belegnr", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -68616,7 +68616,7 @@ { "Field": "internet", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -68627,7 +68627,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -68638,7 +68638,7 @@ { "Field": "angebot", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -68649,7 +68649,7 @@ { "Field": "freitext", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -68660,7 +68660,7 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -68671,7 +68671,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'angelegt'", @@ -68693,7 +68693,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -68704,7 +68704,7 @@ { "Field": "abteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -68715,7 +68715,7 @@ { "Field": "unterabteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -68726,7 +68726,7 @@ { "Field": "strasse", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -68737,7 +68737,7 @@ { "Field": "adresszusatz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -68748,7 +68748,7 @@ { "Field": "ansprechpartner", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -68759,7 +68759,7 @@ { "Field": "plz", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -68770,7 +68770,7 @@ { "Field": "ort", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -68781,7 +68781,7 @@ { "Field": "land", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -68792,7 +68792,7 @@ { "Field": "ustid", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -68825,7 +68825,7 @@ { "Field": "email", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -68836,7 +68836,7 @@ { "Field": "telefon", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -68847,7 +68847,7 @@ { "Field": "telefax", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -68858,7 +68858,7 @@ { "Field": "betreff", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -68869,7 +68869,7 @@ { "Field": "kundennummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -68880,7 +68880,7 @@ { "Field": "versandart", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -68891,7 +68891,7 @@ { "Field": "vertrieb", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -68902,7 +68902,7 @@ { "Field": "zahlungsweise", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -68946,7 +68946,7 @@ { "Field": "bank_inhaber", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -68957,7 +68957,7 @@ { "Field": "bank_institut", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -68968,7 +68968,7 @@ { "Field": "bank_blz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -68979,7 +68979,7 @@ { "Field": "bank_konto", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -68990,7 +68990,7 @@ { "Field": "kreditkarte_typ", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -69001,7 +69001,7 @@ { "Field": "kreditkarte_inhaber", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -69012,7 +69012,7 @@ { "Field": "kreditkarte_nummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -69023,7 +69023,7 @@ { "Field": "kreditkarte_pruefnummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -69034,7 +69034,7 @@ { "Field": "kreditkarte_monat", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -69045,7 +69045,7 @@ { "Field": "kreditkarte_jahr", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -69089,7 +69089,7 @@ { "Field": "versendet_per", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -69100,7 +69100,7 @@ { "Field": "versendet_durch", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -69155,7 +69155,7 @@ { "Field": "liefername", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -69166,7 +69166,7 @@ { "Field": "lieferabteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -69177,7 +69177,7 @@ { "Field": "lieferunterabteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -69188,7 +69188,7 @@ { "Field": "lieferland", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -69199,7 +69199,7 @@ { "Field": "lieferstrasse", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -69210,7 +69210,7 @@ { "Field": "lieferort", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -69221,7 +69221,7 @@ { "Field": "lieferplz", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -69232,7 +69232,7 @@ { "Field": "lieferadresszusatz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -69243,7 +69243,7 @@ { "Field": "lieferansprechpartner", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -69254,7 +69254,7 @@ { "Field": "packstation_inhaber", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -69265,7 +69265,7 @@ { "Field": "packstation_station", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -69276,7 +69276,7 @@ { "Field": "packstation_ident", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -69287,7 +69287,7 @@ { "Field": "packstation_plz", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -69298,7 +69298,7 @@ { "Field": "packstation_ort", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -69529,7 +69529,7 @@ { "Field": "stornogrund", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -69540,7 +69540,7 @@ { "Field": "stornosonstiges", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -69551,7 +69551,7 @@ { "Field": "stornorueckzahlung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -69573,7 +69573,7 @@ { "Field": "stornobankinhaber", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -69584,7 +69584,7 @@ { "Field": "stornobankkonto", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -69595,7 +69595,7 @@ { "Field": "stornobankblz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -69606,7 +69606,7 @@ { "Field": "stornobankbank", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -69628,7 +69628,7 @@ { "Field": "stornogutschriftbeleg", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -69650,7 +69650,7 @@ { "Field": "stornomanuellebearbeitung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -69661,7 +69661,7 @@ { "Field": "stornokommentar", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -69672,7 +69672,7 @@ { "Field": "stornobezahlt", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -69694,7 +69694,7 @@ { "Field": "stornobezahltvon", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -69716,7 +69716,7 @@ { "Field": "stornorueckzahlungper", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -69760,7 +69760,7 @@ { "Field": "kennen", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -69782,7 +69782,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -69804,7 +69804,7 @@ { "Field": "anschreiben", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -69892,7 +69892,7 @@ { "Field": "waehrung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "''EUR''", @@ -69936,7 +69936,7 @@ { "Field": "typ", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "''firma''", @@ -69947,7 +69947,7 @@ { "Field": "reservierart", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -69958,7 +69958,7 @@ { "Field": "auslagerart", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": "''sammel''", @@ -70013,7 +70013,7 @@ { "Field": "charge", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -70079,7 +70079,7 @@ { "Field": "internebezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -70178,7 +70178,7 @@ { "Field": "abschlussbemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -70282,7 +70282,7 @@ }, { "name": "produktion_arbeitsanweisung", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -70332,7 +70332,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -70343,7 +70343,7 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -70376,7 +70376,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -70420,7 +70420,7 @@ { "Field": "status", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -70450,7 +70450,7 @@ }, { "name": "produktion_arbeitsanweisung_batch", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -70522,7 +70522,7 @@ { "Field": "batch", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -70533,7 +70533,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -70582,7 +70582,7 @@ }, { "name": "produktion_baugruppen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -70632,7 +70632,7 @@ { "Field": "baugruppennr", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -70643,7 +70643,7 @@ { "Field": "seriennummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -70654,7 +70654,7 @@ { "Field": "pruefer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -70665,7 +70665,7 @@ { "Field": "kommentar", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -70750,7 +70750,7 @@ }, { "name": "produktion_baugruppen_charge", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -70800,7 +70800,7 @@ { "Field": "chargennummer", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -70822,7 +70822,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -70879,7 +70879,7 @@ }, { "name": "produktion_charge", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -70918,7 +70918,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -70929,7 +70929,7 @@ { "Field": "kommentar", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -70940,7 +70940,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -70951,7 +70951,7 @@ { "Field": "chargennummer", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -70973,7 +70973,7 @@ { "Field": "typ", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -71033,7 +71033,7 @@ }, { "name": "produktion_etiketten", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -71135,7 +71135,7 @@ }, { "name": "produktion_funktionsprotokoll", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -71185,7 +71185,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -71196,7 +71196,7 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -71218,7 +71218,7 @@ { "Field": "typ", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "''frage''", @@ -71229,7 +71229,7 @@ { "Field": "widget", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -71240,7 +71240,7 @@ { "Field": "klassen", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -71251,7 +71251,7 @@ { "Field": "beschreibung_textfeld1", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -71262,7 +71262,7 @@ { "Field": "beschreibung_textfeld2", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -71295,7 +71295,7 @@ { "Field": "config", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -71339,7 +71339,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -71369,7 +71369,7 @@ }, { "name": "produktion_funktionsprotokoll_position", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -71408,7 +71408,7 @@ { "Field": "textfeld1", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -71419,7 +71419,7 @@ { "Field": "textfeld2", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -71430,7 +71430,7 @@ { "Field": "eingabejson", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -71441,7 +71441,7 @@ { "Field": "eingabehtml", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -71452,7 +71452,7 @@ { "Field": "ausgabejson", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -71463,7 +71463,7 @@ { "Field": "ausgabehtml", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -71496,7 +71496,7 @@ { "Field": "klasse", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -71507,7 +71507,7 @@ { "Field": "kommentar", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -71518,7 +71518,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -71570,7 +71570,7 @@ }, { "name": "produktion_position", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -71620,7 +71620,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -71631,7 +71631,7 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -71642,7 +71642,7 @@ { "Field": "internerkommentar", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -71653,7 +71653,7 @@ { "Field": "nummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -71686,7 +71686,7 @@ { "Field": "waehrung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -71708,7 +71708,7 @@ { "Field": "vpe", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -71730,7 +71730,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -71741,7 +71741,7 @@ { "Field": "umsatzsteuer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -71752,7 +71752,7 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -71851,7 +71851,7 @@ { "Field": "einheit", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -71873,7 +71873,7 @@ { "Field": "steuertext", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -71884,7 +71884,7 @@ { "Field": "erloese", "Type": "varchar(8)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -71906,7 +71906,7 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -71917,7 +71917,7 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -71928,7 +71928,7 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -71939,7 +71939,7 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -71950,7 +71950,7 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -71961,7 +71961,7 @@ { "Field": "freifeld6", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -71972,7 +71972,7 @@ { "Field": "freifeld7", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -71983,7 +71983,7 @@ { "Field": "freifeld8", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -71994,7 +71994,7 @@ { "Field": "freifeld9", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -72005,7 +72005,7 @@ { "Field": "freifeld10", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -72016,7 +72016,7 @@ { "Field": "freifeld11", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -72027,7 +72027,7 @@ { "Field": "freifeld12", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -72038,7 +72038,7 @@ { "Field": "freifeld13", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -72049,7 +72049,7 @@ { "Field": "freifeld14", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -72060,7 +72060,7 @@ { "Field": "freifeld15", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -72071,7 +72071,7 @@ { "Field": "freifeld16", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -72082,7 +72082,7 @@ { "Field": "freifeld17", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -72093,7 +72093,7 @@ { "Field": "freifeld18", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -72104,7 +72104,7 @@ { "Field": "freifeld19", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -72115,7 +72115,7 @@ { "Field": "freifeld20", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -72126,7 +72126,7 @@ { "Field": "freifeld21", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -72137,7 +72137,7 @@ { "Field": "freifeld22", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -72148,7 +72148,7 @@ { "Field": "freifeld23", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -72159,7 +72159,7 @@ { "Field": "freifeld24", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -72170,7 +72170,7 @@ { "Field": "freifeld25", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -72181,7 +72181,7 @@ { "Field": "freifeld26", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -72192,7 +72192,7 @@ { "Field": "freifeld27", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -72203,7 +72203,7 @@ { "Field": "freifeld28", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -72214,7 +72214,7 @@ { "Field": "freifeld29", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -72225,7 +72225,7 @@ { "Field": "freifeld30", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -72236,7 +72236,7 @@ { "Field": "freifeld31", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -72247,7 +72247,7 @@ { "Field": "freifeld32", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -72258,7 +72258,7 @@ { "Field": "freifeld33", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -72269,7 +72269,7 @@ { "Field": "freifeld34", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -72280,7 +72280,7 @@ { "Field": "freifeld35", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -72291,7 +72291,7 @@ { "Field": "freifeld36", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -72302,7 +72302,7 @@ { "Field": "freifeld37", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -72313,7 +72313,7 @@ { "Field": "freifeld38", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -72324,7 +72324,7 @@ { "Field": "freifeld39", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -72335,7 +72335,7 @@ { "Field": "freifeld40", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -72403,7 +72403,7 @@ }, { "name": "produktion_protokoll", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -72442,7 +72442,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -72453,7 +72453,7 @@ { "Field": "grund", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -72483,7 +72483,7 @@ }, { "name": "produktion_unterseriennummern", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -72533,7 +72533,7 @@ { "Field": "seriennummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -72544,7 +72544,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -72577,7 +72577,7 @@ { "Field": "kommentar", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -72607,7 +72607,7 @@ }, { "name": "produktionslager", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -72646,7 +72646,7 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -72657,7 +72657,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -72679,7 +72679,7 @@ { "Field": "vpe", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -72701,7 +72701,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -72712,7 +72712,7 @@ { "Field": "produzent", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -72756,7 +72756,7 @@ }, { "name": "proformarechnung", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -72795,7 +72795,7 @@ { "Field": "projekt", "Type": "varchar(222)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -72806,7 +72806,7 @@ { "Field": "anlegeart", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -72817,7 +72817,7 @@ { "Field": "belegnr", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -72828,7 +72828,7 @@ { "Field": "auftrag", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -72850,7 +72850,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -72861,7 +72861,7 @@ { "Field": "freitext", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -72872,7 +72872,7 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -72883,7 +72883,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -72905,7 +72905,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -72916,7 +72916,7 @@ { "Field": "abteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -72927,7 +72927,7 @@ { "Field": "unterabteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -72938,7 +72938,7 @@ { "Field": "strasse", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -72949,7 +72949,7 @@ { "Field": "adresszusatz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -72960,7 +72960,7 @@ { "Field": "ansprechpartner", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -72971,7 +72971,7 @@ { "Field": "plz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -72982,7 +72982,7 @@ { "Field": "ort", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -72993,7 +72993,7 @@ { "Field": "land", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -73004,7 +73004,7 @@ { "Field": "ustid", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -73059,7 +73059,7 @@ { "Field": "email", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -73070,7 +73070,7 @@ { "Field": "telefon", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -73081,7 +73081,7 @@ { "Field": "telefax", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -73092,7 +73092,7 @@ { "Field": "betreff", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -73103,7 +73103,7 @@ { "Field": "kundennummer", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -73125,7 +73125,7 @@ { "Field": "versandart", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -73147,7 +73147,7 @@ { "Field": "buchhaltung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -73158,7 +73158,7 @@ { "Field": "zahlungsweise", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -73169,7 +73169,7 @@ { "Field": "zahlungsstatus", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -73279,7 +73279,7 @@ { "Field": "versendet_per", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -73290,7 +73290,7 @@ { "Field": "versendet_durch", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -73312,7 +73312,7 @@ { "Field": "mahnwesen", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -73345,7 +73345,7 @@ { "Field": "mahnwesen_internebemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -73565,7 +73565,7 @@ { "Field": "aktion", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -73576,7 +73576,7 @@ { "Field": "vertrieb", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -73653,7 +73653,7 @@ { "Field": "ihrebestellnummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -73664,7 +73664,7 @@ { "Field": "anschreiben", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -73862,7 +73862,7 @@ { "Field": "waehrung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "''EUR''", @@ -73917,7 +73917,7 @@ { "Field": "typ", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "''firma''", @@ -73961,7 +73961,7 @@ { "Field": "systemfreitext", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -73994,7 +73994,7 @@ { "Field": "internebezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -74038,7 +74038,7 @@ { "Field": "sprache", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -74060,7 +74060,7 @@ { "Field": "titel", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -74082,7 +74082,7 @@ { "Field": "bodyzusatz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -74093,7 +74093,7 @@ { "Field": "lieferbedingung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -74104,7 +74104,7 @@ { "Field": "liefername", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -74115,7 +74115,7 @@ { "Field": "lieferabteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -74126,7 +74126,7 @@ { "Field": "lieferunterabteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -74137,7 +74137,7 @@ { "Field": "lieferland", "Type": "varchar(2)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -74148,7 +74148,7 @@ { "Field": "lieferstrasse", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -74159,7 +74159,7 @@ { "Field": "lieferort", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -74170,7 +74170,7 @@ { "Field": "lieferplz", "Type": "varchar(20)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -74181,7 +74181,7 @@ { "Field": "lieferadresszusatz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -74192,7 +74192,7 @@ { "Field": "lieferansprechpartner", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -74203,7 +74203,7 @@ { "Field": "liefertitel", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -74214,7 +74214,7 @@ { "Field": "liefergln", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -74247,7 +74247,7 @@ { "Field": "verzollinformationen", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -74258,7 +74258,7 @@ { "Field": "verzollungname", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -74269,7 +74269,7 @@ { "Field": "verzollungabteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -74280,7 +74280,7 @@ { "Field": "verzollungunterabteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -74291,7 +74291,7 @@ { "Field": "verzollungland", "Type": "varchar(2)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -74302,7 +74302,7 @@ { "Field": "verzollungstrasse", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -74313,7 +74313,7 @@ { "Field": "verzollungort", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -74324,7 +74324,7 @@ { "Field": "verzollungplz", "Type": "varchar(20)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -74335,7 +74335,7 @@ { "Field": "verzollungadresszusatz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -74346,7 +74346,7 @@ { "Field": "verzollungansprechpartner", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -74357,7 +74357,7 @@ { "Field": "verzollungtitel", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -74368,7 +74368,7 @@ { "Field": "formelmenge", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -74390,7 +74390,7 @@ { "Field": "bundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -74401,7 +74401,7 @@ { "Field": "lieferbundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -74423,7 +74423,7 @@ }, { "name": "proformarechnung_lieferschein", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -74495,7 +74495,7 @@ }, { "name": "proformarechnung_position", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -74545,7 +74545,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -74556,7 +74556,7 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -74567,7 +74567,7 @@ { "Field": "internerkommentar", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -74578,7 +74578,7 @@ { "Field": "nummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -74611,7 +74611,7 @@ { "Field": "waehrung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -74633,7 +74633,7 @@ { "Field": "vpe", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -74655,7 +74655,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -74666,7 +74666,7 @@ { "Field": "umsatzsteuer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -74677,7 +74677,7 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -74842,7 +74842,7 @@ { "Field": "einheit", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -74864,7 +74864,7 @@ { "Field": "zolltarifnummer", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'0'", @@ -74875,7 +74875,7 @@ { "Field": "herkunftsland", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'0'", @@ -74886,7 +74886,7 @@ { "Field": "artikelnummerkunde", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -74930,7 +74930,7 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -74941,7 +74941,7 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -74952,7 +74952,7 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -74963,7 +74963,7 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -74974,7 +74974,7 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -74985,7 +74985,7 @@ { "Field": "freifeld6", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -74996,7 +74996,7 @@ { "Field": "freifeld7", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -75007,7 +75007,7 @@ { "Field": "freifeld8", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -75018,7 +75018,7 @@ { "Field": "freifeld9", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -75029,7 +75029,7 @@ { "Field": "freifeld10", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -75051,7 +75051,7 @@ { "Field": "steuertext", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -75062,7 +75062,7 @@ { "Field": "erloese", "Type": "varchar(8)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -75073,7 +75073,7 @@ { "Field": "kostenstelle", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -75095,7 +75095,7 @@ { "Field": "freifeld11", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -75106,7 +75106,7 @@ { "Field": "freifeld12", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -75117,7 +75117,7 @@ { "Field": "freifeld13", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -75128,7 +75128,7 @@ { "Field": "freifeld14", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -75139,7 +75139,7 @@ { "Field": "freifeld15", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -75150,7 +75150,7 @@ { "Field": "freifeld16", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -75161,7 +75161,7 @@ { "Field": "freifeld17", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -75172,7 +75172,7 @@ { "Field": "freifeld18", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -75183,7 +75183,7 @@ { "Field": "freifeld19", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -75194,7 +75194,7 @@ { "Field": "freifeld20", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -75205,7 +75205,7 @@ { "Field": "freifeld21", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -75216,7 +75216,7 @@ { "Field": "freifeld22", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -75227,7 +75227,7 @@ { "Field": "freifeld23", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -75238,7 +75238,7 @@ { "Field": "freifeld24", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -75249,7 +75249,7 @@ { "Field": "freifeld25", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -75260,7 +75260,7 @@ { "Field": "freifeld26", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -75271,7 +75271,7 @@ { "Field": "freifeld27", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -75282,7 +75282,7 @@ { "Field": "freifeld28", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -75293,7 +75293,7 @@ { "Field": "freifeld29", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -75304,7 +75304,7 @@ { "Field": "freifeld30", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -75315,7 +75315,7 @@ { "Field": "freifeld31", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -75326,7 +75326,7 @@ { "Field": "freifeld32", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -75337,7 +75337,7 @@ { "Field": "freifeld33", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -75348,7 +75348,7 @@ { "Field": "freifeld34", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -75359,7 +75359,7 @@ { "Field": "freifeld35", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -75370,7 +75370,7 @@ { "Field": "freifeld36", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -75381,7 +75381,7 @@ { "Field": "freifeld37", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -75392,7 +75392,7 @@ { "Field": "freifeld38", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -75403,7 +75403,7 @@ { "Field": "freifeld39", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -75414,7 +75414,7 @@ { "Field": "freifeld40", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -75425,7 +75425,7 @@ { "Field": "formelmenge", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -75436,7 +75436,7 @@ { "Field": "formelpreis", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -75477,7 +75477,7 @@ }, { "name": "proformarechnung_protokoll", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -75516,7 +75516,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -75527,7 +75527,7 @@ { "Field": "grund", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -75549,7 +75549,7 @@ }, { "name": "projekt", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -75566,7 +75566,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -75577,7 +75577,7 @@ { "Field": "abkuerzung", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -75588,7 +75588,7 @@ { "Field": "verantwortlicher", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -75599,7 +75599,7 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -75610,7 +75610,7 @@ { "Field": "sonstiges", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -75621,7 +75621,7 @@ { "Field": "aktiv", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -75632,7 +75632,7 @@ { "Field": "farbe", "Type": "varchar(16)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -75687,7 +75687,7 @@ { "Field": "checkname", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -75709,7 +75709,7 @@ { "Field": "zahlungsmailbedinungen", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -75819,7 +75819,7 @@ { "Field": "logdatei", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -75885,7 +75885,7 @@ { "Field": "waehrung", "Type": "varchar(3)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'EUR'", @@ -76006,7 +76006,7 @@ { "Field": "dpdkundennr", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -76017,7 +76017,7 @@ { "Field": "dhlkundennr", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -76028,7 +76028,7 @@ { "Field": "dhlformat", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -76039,7 +76039,7 @@ { "Field": "dpdformat", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -76061,7 +76061,7 @@ { "Field": "dpdpfad", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -76072,7 +76072,7 @@ { "Field": "dhlpfad", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -76083,7 +76083,7 @@ { "Field": "upspfad", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'0'", @@ -76138,7 +76138,7 @@ { "Field": "intraship_user", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -76149,7 +76149,7 @@ { "Field": "intraship_signature", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -76160,7 +76160,7 @@ { "Field": "intraship_ekp", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -76171,7 +76171,7 @@ { "Field": "intraship_api_user", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -76182,7 +76182,7 @@ { "Field": "intraship_api_password", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -76193,7 +76193,7 @@ { "Field": "intraship_company_name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -76204,7 +76204,7 @@ { "Field": "intraship_street_name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -76215,7 +76215,7 @@ { "Field": "intraship_street_number", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -76226,7 +76226,7 @@ { "Field": "intraship_zip", "Type": "varchar(12)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -76237,7 +76237,7 @@ { "Field": "intraship_country", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'germany'", @@ -76248,7 +76248,7 @@ { "Field": "intraship_city", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -76259,7 +76259,7 @@ { "Field": "intraship_email", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -76270,7 +76270,7 @@ { "Field": "intraship_phone", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -76281,7 +76281,7 @@ { "Field": "intraship_internet", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -76292,7 +76292,7 @@ { "Field": "intraship_contact_person", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -76303,7 +76303,7 @@ { "Field": "intraship_account_owner", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -76314,7 +76314,7 @@ { "Field": "intraship_account_number", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -76325,7 +76325,7 @@ { "Field": "intraship_bank_code", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -76336,7 +76336,7 @@ { "Field": "intraship_bank_name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -76347,7 +76347,7 @@ { "Field": "intraship_iban", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -76358,7 +76358,7 @@ { "Field": "intraship_bic", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -76413,7 +76413,7 @@ { "Field": "intraship_PackageType", "Type": "varchar(8)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'pl'", @@ -76424,7 +76424,7 @@ { "Field": "abrechnungsart", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -76435,7 +76435,7 @@ { "Field": "kommissionierverfahren", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -76468,7 +76468,7 @@ { "Field": "absendeadresse", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -76479,7 +76479,7 @@ { "Field": "absendename", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -76490,7 +76490,7 @@ { "Field": "absendesignatur", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -76655,7 +76655,7 @@ { "Field": "next_angebot", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -76666,7 +76666,7 @@ { "Field": "next_auftrag", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -76677,7 +76677,7 @@ { "Field": "next_rechnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -76688,7 +76688,7 @@ { "Field": "next_lieferschein", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -76699,7 +76699,7 @@ { "Field": "next_arbeitsnachweis", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -76710,7 +76710,7 @@ { "Field": "next_reisekosten", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -76721,7 +76721,7 @@ { "Field": "next_bestellung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -76732,7 +76732,7 @@ { "Field": "next_gutschrift", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -76743,7 +76743,7 @@ { "Field": "next_kundennummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -76754,7 +76754,7 @@ { "Field": "next_lieferantennummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -76765,7 +76765,7 @@ { "Field": "next_mitarbeiternummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -76776,7 +76776,7 @@ { "Field": "next_waren", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -76787,7 +76787,7 @@ { "Field": "next_produktion", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -76798,7 +76798,7 @@ { "Field": "next_sonstiges", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -76809,7 +76809,7 @@ { "Field": "next_anfrage", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -76820,7 +76820,7 @@ { "Field": "next_artikelnummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -76853,7 +76853,7 @@ { "Field": "dhlzahlungmandant", "Type": "varchar(3)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -76875,7 +76875,7 @@ { "Field": "land", "Type": "varchar(2)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'de'", @@ -76963,7 +76963,7 @@ { "Field": "kasse_lagerprozess", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -76974,7 +76974,7 @@ { "Field": "kasse_belegausgabe", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -76996,7 +76996,7 @@ { "Field": "kasse_text_bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "''interne bemerkung''", @@ -77007,7 +77007,7 @@ { "Field": "kasse_text_freitext", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "''text auf beleg''", @@ -77271,7 +77271,7 @@ { "Field": "kasse_vorauswahl_anrede", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'herr'", @@ -77337,7 +77337,7 @@ { "Field": "dpdendung", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'.csv'", @@ -77348,7 +77348,7 @@ { "Field": "dhlendung", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'.csv'", @@ -77403,7 +77403,7 @@ { "Field": "go_apiurl_prefix", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -77414,7 +77414,7 @@ { "Field": "go_apiurl_postfix", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -77425,7 +77425,7 @@ { "Field": "go_apiurl_user", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -77436,7 +77436,7 @@ { "Field": "go_username", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -77447,7 +77447,7 @@ { "Field": "go_password", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -77458,7 +77458,7 @@ { "Field": "go_ax4nr", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -77469,7 +77469,7 @@ { "Field": "go_name1", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -77480,7 +77480,7 @@ { "Field": "go_name2", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -77491,7 +77491,7 @@ { "Field": "go_abteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -77502,7 +77502,7 @@ { "Field": "go_strasse1", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -77513,7 +77513,7 @@ { "Field": "go_strasse2", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -77524,7 +77524,7 @@ { "Field": "go_hausnummer", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -77535,7 +77535,7 @@ { "Field": "go_plz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -77546,7 +77546,7 @@ { "Field": "go_ort", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -77557,7 +77557,7 @@ { "Field": "go_land", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -77579,7 +77579,7 @@ { "Field": "go_format", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -77590,7 +77590,7 @@ { "Field": "go_ausgabe", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -77601,7 +77601,7 @@ { "Field": "intraship_exportgrund", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -77612,7 +77612,7 @@ { "Field": "billsafe_merchantId", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -77623,7 +77623,7 @@ { "Field": "billsafe_merchantLicenseSandbox", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -77634,7 +77634,7 @@ { "Field": "billsafe_merchantLicenseLive", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -77645,7 +77645,7 @@ { "Field": "billsafe_applicationSignature", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -77656,7 +77656,7 @@ { "Field": "billsafe_applicationVersion", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -77667,7 +77667,7 @@ { "Field": "secupay_apikey", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -77678,7 +77678,7 @@ { "Field": "secupay_url", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -77711,7 +77711,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'gestartet'", @@ -77755,7 +77755,7 @@ { "Field": "kasse_bon_zeile1", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "''xentral store''", @@ -77766,7 +77766,7 @@ { "Field": "kasse_bon_zeile2", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -77777,7 +77777,7 @@ { "Field": "kasse_bon_zeile3", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -77931,7 +77931,7 @@ { "Field": "intraship_partnerid", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'01'", @@ -77953,7 +77953,7 @@ { "Field": "intraship_retourenaccount", "Type": "varchar(16)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -77964,7 +77964,7 @@ { "Field": "absendegrussformel", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -77986,7 +77986,7 @@ { "Field": "intraship_partnerid_welt", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -77997,7 +77997,7 @@ { "Field": "next_kalkulation", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -78008,7 +78008,7 @@ { "Field": "next_preisanfrage", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -78019,7 +78019,7 @@ { "Field": "next_proformarechnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -78030,7 +78030,7 @@ { "Field": "next_verbindlichkeit", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -78041,7 +78041,7 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -78052,7 +78052,7 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -78063,7 +78063,7 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -78074,7 +78074,7 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -78085,7 +78085,7 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -78096,7 +78096,7 @@ { "Field": "freifeld6", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -78107,7 +78107,7 @@ { "Field": "freifeld7", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -78118,7 +78118,7 @@ { "Field": "freifeld8", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -78129,7 +78129,7 @@ { "Field": "freifeld9", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -78140,7 +78140,7 @@ { "Field": "freifeld10", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -78151,7 +78151,7 @@ { "Field": "mahnwesen_abweichender_versender", "Type": "varchar(40)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -78305,7 +78305,7 @@ { "Field": "kasse_rksv_tool", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -78316,7 +78316,7 @@ { "Field": "kasse_rksv_kartenleser", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -78327,7 +78327,7 @@ { "Field": "kasse_rksv_karteseriennummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -78338,7 +78338,7 @@ { "Field": "kasse_rksv_kartepin", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -78349,7 +78349,7 @@ { "Field": "kasse_rksv_aeskey", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -78360,7 +78360,7 @@ { "Field": "kasse_rksv_publiczertifikat", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -78371,7 +78371,7 @@ { "Field": "kasse_rksv_publiczertifikatkette", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -78382,7 +78382,7 @@ { "Field": "kasse_rksv_kassenid", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -78536,7 +78536,7 @@ { "Field": "steuernummer", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -78558,7 +78558,7 @@ { "Field": "orderpicking_sort", "Type": "varchar(26)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -78602,7 +78602,7 @@ { "Field": "zahlungsweise", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -78613,7 +78613,7 @@ { "Field": "zahlungsweiselieferant", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -78624,7 +78624,7 @@ { "Field": "versandart", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -78635,7 +78635,7 @@ { "Field": "ups_api_user", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -78646,7 +78646,7 @@ { "Field": "ups_api_password", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -78657,7 +78657,7 @@ { "Field": "ups_api_key", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -78668,7 +78668,7 @@ { "Field": "ups_accountnumber", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -78679,7 +78679,7 @@ { "Field": "ups_company_name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -78690,7 +78690,7 @@ { "Field": "ups_street_name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -78701,7 +78701,7 @@ { "Field": "ups_street_number", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -78712,7 +78712,7 @@ { "Field": "ups_zip", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -78723,7 +78723,7 @@ { "Field": "ups_country", "Type": "varchar(2)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -78734,7 +78734,7 @@ { "Field": "ups_city", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -78745,7 +78745,7 @@ { "Field": "ups_email", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -78756,7 +78756,7 @@ { "Field": "ups_phone", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -78767,7 +78767,7 @@ { "Field": "ups_internet", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -78778,7 +78778,7 @@ { "Field": "ups_contact_person", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -78844,7 +78844,7 @@ { "Field": "ups_ausgabe", "Type": "varchar(16)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'gif'", @@ -78855,7 +78855,7 @@ { "Field": "ups_package_code", "Type": "varchar(16)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'02'", @@ -78866,7 +78866,7 @@ { "Field": "ups_package_description", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "''customer supplied''", @@ -78877,7 +78877,7 @@ { "Field": "ups_service_code", "Type": "varchar(16)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'11'", @@ -78888,7 +78888,7 @@ { "Field": "ups_service_description", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "''ups standard''", @@ -78899,7 +78899,7 @@ { "Field": "email_html_template", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -78932,7 +78932,7 @@ { "Field": "next_retoure", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -78943,7 +78943,7 @@ { "Field": "next_goodspostingdocument", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -78998,7 +78998,7 @@ { "Field": "steuer_erloese_inland_normal", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -79009,7 +79009,7 @@ { "Field": "steuer_aufwendung_inland_normal", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -79020,7 +79020,7 @@ { "Field": "steuer_erloese_inland_ermaessigt", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -79031,7 +79031,7 @@ { "Field": "steuer_aufwendung_inland_ermaessigt", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -79042,7 +79042,7 @@ { "Field": "steuer_erloese_inland_nichtsteuerbar", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -79053,7 +79053,7 @@ { "Field": "steuer_aufwendung_inland_nichtsteuerbar", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -79064,7 +79064,7 @@ { "Field": "steuer_erloese_inland_innergemeinschaftlich", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -79075,7 +79075,7 @@ { "Field": "steuer_aufwendung_inland_innergemeinschaftlich", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -79086,7 +79086,7 @@ { "Field": "steuer_erloese_inland_eunormal", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -79097,7 +79097,7 @@ { "Field": "steuer_aufwendung_inland_eunormal", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -79108,7 +79108,7 @@ { "Field": "steuer_erloese_inland_euermaessigt", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -79119,7 +79119,7 @@ { "Field": "steuer_aufwendung_inland_euermaessigt", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -79130,7 +79130,7 @@ { "Field": "steuer_erloese_inland_export", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -79141,7 +79141,7 @@ { "Field": "steuer_aufwendung_inland_import", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -79273,7 +79273,7 @@ { "Field": "klarna_merchantid", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -79284,7 +79284,7 @@ { "Field": "klarna_sharedsecret", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -79449,7 +79449,7 @@ { "Field": "zvt100url", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -79460,7 +79460,7 @@ { "Field": "zvt100port", "Type": "varchar(5)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -79526,7 +79526,7 @@ { "Field": "next_receiptdocument", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -79559,7 +79559,7 @@ { "Field": "buchhaltung_berater", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -79570,7 +79570,7 @@ { "Field": "buchhaltung_mandant", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -79581,7 +79581,7 @@ { "Field": "buchhaltung_wj_beginn", "Type": "varchar(4)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'0101'", @@ -79630,7 +79630,7 @@ }, { "name": "projekt_artikel", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -79823,7 +79823,7 @@ { "Field": "kalkulationbasis", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'prostueck'", @@ -79834,7 +79834,7 @@ { "Field": "nr", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -79900,7 +79900,7 @@ { "Field": "kommentar", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -79933,7 +79933,7 @@ }, { "name": "projekt_inventar", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -80005,7 +80005,7 @@ { "Field": "mitarbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -80016,7 +80016,7 @@ { "Field": "vpe", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -80060,7 +80060,7 @@ }, { "name": "protokoll", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -80077,7 +80077,7 @@ { "Field": "meldung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -80088,7 +80088,7 @@ { "Field": "dump", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -80099,7 +80099,7 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -80110,7 +80110,7 @@ { "Field": "action", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -80121,7 +80121,7 @@ { "Field": "bearbeiter", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -80132,7 +80132,7 @@ { "Field": "funktionsname", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -80165,7 +80165,7 @@ { "Field": "argumente", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -80187,7 +80187,7 @@ }, { "name": "provision_regeln", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -80204,7 +80204,7 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -80215,7 +80215,7 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -80292,7 +80292,7 @@ { "Field": "typ", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -80336,7 +80336,7 @@ { "Field": "belegtyp", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -80393,7 +80393,7 @@ }, { "name": "provisionenartikel_abrechnungen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -80432,7 +80432,7 @@ { "Field": "angelegt_von", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -80517,7 +80517,7 @@ }, { "name": "provisionenartikel_abrechnungen_provisionen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -80556,7 +80556,7 @@ { "Field": "artikelkategorie", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -80578,7 +80578,7 @@ { "Field": "waehrung", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -80732,7 +80732,7 @@ { "Field": "nummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -80743,7 +80743,7 @@ { "Field": "name_de", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -80765,7 +80765,7 @@ }, { "name": "provisionenartikel_provision", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -80848,7 +80848,7 @@ { "Field": "provisiontyp", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -80892,7 +80892,7 @@ }, { "name": "prozessstarter", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -80909,7 +80909,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -80920,7 +80920,7 @@ { "Field": "bedingung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -80931,7 +80931,7 @@ { "Field": "art", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -80964,7 +80964,7 @@ { "Field": "periode", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "''1440''", @@ -80975,7 +80975,7 @@ { "Field": "typ", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -80986,7 +80986,7 @@ { "Field": "parameter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -81041,7 +81041,7 @@ { "Field": "art_filter", "Type": "varchar(20)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -81052,7 +81052,7 @@ { "Field": "status", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -81104,7 +81104,7 @@ }, { "name": "pseudostorage_shop", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -81132,7 +81132,7 @@ { "Field": "formula", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -81162,7 +81162,7 @@ }, { "name": "real_article_mapping", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -81212,7 +81212,7 @@ { "Field": "ext_sku", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -81223,7 +81223,7 @@ { "Field": "ext_ean", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -81234,7 +81234,7 @@ { "Field": "ext_name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -81245,7 +81245,7 @@ { "Field": "ext_item_id", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -81256,7 +81256,7 @@ { "Field": "ext_unit_id", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -81278,7 +81278,7 @@ }, { "name": "real_kategoriespezifisch", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -81339,7 +81339,7 @@ { "Field": "specwert", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -81350,7 +81350,7 @@ { "Field": "specbezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -81361,7 +81361,7 @@ { "Field": "specname", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -81383,7 +81383,7 @@ { "Field": "type", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -81394,7 +81394,7 @@ { "Field": "typevalue", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -81416,7 +81416,7 @@ }, { "name": "real_kategorievorschlag", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -81477,7 +81477,7 @@ { "Field": "vorschlagbezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -81488,7 +81488,7 @@ { "Field": "vorschlagparentid", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -81499,7 +81499,7 @@ { "Field": "level", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -81510,7 +81510,7 @@ { "Field": "lieferkategorie", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": "''0''", @@ -81532,7 +81532,7 @@ }, { "name": "real_versandgruppen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -81560,7 +81560,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -81593,7 +81593,7 @@ }, { "name": "receiptdocument", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -81665,7 +81665,7 @@ { "Field": "status", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -81676,7 +81676,7 @@ { "Field": "status_qs", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -81687,7 +81687,7 @@ { "Field": "updated_by", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -81698,7 +81698,7 @@ { "Field": "document_number", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -81764,7 +81764,7 @@ }, { "name": "receiptdocument_log", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -81792,7 +81792,7 @@ { "Field": "log", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -81803,7 +81803,7 @@ { "Field": "created_by", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -81844,7 +81844,7 @@ }, { "name": "receiptdocument_position", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -81927,7 +81927,7 @@ { "Field": "type", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -81938,7 +81938,7 @@ { "Field": "doctype", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -81990,7 +81990,7 @@ }, { "name": "rechnung", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -82029,7 +82029,7 @@ { "Field": "projekt", "Type": "varchar(222)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -82040,7 +82040,7 @@ { "Field": "anlegeart", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -82051,7 +82051,7 @@ { "Field": "belegnr", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -82062,7 +82062,7 @@ { "Field": "auftrag", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -82084,7 +82084,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -82095,7 +82095,7 @@ { "Field": "freitext", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -82106,7 +82106,7 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -82117,7 +82117,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -82139,7 +82139,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -82150,7 +82150,7 @@ { "Field": "abteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -82161,7 +82161,7 @@ { "Field": "unterabteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -82172,7 +82172,7 @@ { "Field": "strasse", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -82183,7 +82183,7 @@ { "Field": "adresszusatz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -82194,7 +82194,7 @@ { "Field": "ansprechpartner", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -82205,7 +82205,7 @@ { "Field": "plz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -82216,7 +82216,7 @@ { "Field": "ort", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -82227,7 +82227,7 @@ { "Field": "land", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -82238,7 +82238,7 @@ { "Field": "ustid", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -82293,7 +82293,7 @@ { "Field": "email", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -82304,7 +82304,7 @@ { "Field": "telefon", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -82315,7 +82315,7 @@ { "Field": "telefax", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -82326,7 +82326,7 @@ { "Field": "betreff", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -82337,7 +82337,7 @@ { "Field": "kundennummer", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -82359,7 +82359,7 @@ { "Field": "versandart", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -82381,7 +82381,7 @@ { "Field": "buchhaltung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -82392,7 +82392,7 @@ { "Field": "zahlungsweise", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -82403,7 +82403,7 @@ { "Field": "zahlungsstatus", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -82513,7 +82513,7 @@ { "Field": "versendet_per", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -82524,7 +82524,7 @@ { "Field": "versendet_durch", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -82546,7 +82546,7 @@ { "Field": "mahnwesen", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -82579,7 +82579,7 @@ { "Field": "mahnwesen_internebemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -82799,7 +82799,7 @@ { "Field": "aktion", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -82810,7 +82810,7 @@ { "Field": "vertrieb", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -82887,7 +82887,7 @@ { "Field": "ihrebestellnummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -82898,7 +82898,7 @@ { "Field": "anschreiben", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -83096,7 +83096,7 @@ { "Field": "waehrung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "''EUR''", @@ -83151,7 +83151,7 @@ { "Field": "typ", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "''firma''", @@ -83195,7 +83195,7 @@ { "Field": "systemfreitext", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -83228,7 +83228,7 @@ { "Field": "internebezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -83272,7 +83272,7 @@ { "Field": "sprache", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -83283,7 +83283,7 @@ { "Field": "bundesland", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -83294,7 +83294,7 @@ { "Field": "gln", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -83305,7 +83305,7 @@ { "Field": "deliverythresholdvatid", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -83360,7 +83360,7 @@ { "Field": "kostenstelle", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -83371,7 +83371,7 @@ { "Field": "bodyzusatz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -83382,7 +83382,7 @@ { "Field": "lieferbedingung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -83393,7 +83393,7 @@ { "Field": "titel", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -83448,7 +83448,7 @@ { "Field": "bundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -83459,7 +83459,7 @@ { "Field": "kundennummer_buchhaltung", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -83470,7 +83470,7 @@ { "Field": "storage_country", "Type": "varchar(3)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -83580,7 +83580,7 @@ }, { "name": "rechnung_position", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -83630,7 +83630,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -83641,7 +83641,7 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -83652,7 +83652,7 @@ { "Field": "internerkommentar", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -83663,7 +83663,7 @@ { "Field": "nummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -83696,7 +83696,7 @@ { "Field": "waehrung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -83718,7 +83718,7 @@ { "Field": "vpe", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -83740,7 +83740,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -83751,7 +83751,7 @@ { "Field": "umsatzsteuer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -83762,7 +83762,7 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -83927,7 +83927,7 @@ { "Field": "einheit", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -83949,7 +83949,7 @@ { "Field": "zolltarifnummer", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'0'", @@ -83960,7 +83960,7 @@ { "Field": "herkunftsland", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'0'", @@ -83971,7 +83971,7 @@ { "Field": "artikelnummerkunde", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -83982,7 +83982,7 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -83993,7 +83993,7 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -84004,7 +84004,7 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -84015,7 +84015,7 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -84026,7 +84026,7 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -84037,7 +84037,7 @@ { "Field": "freifeld6", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -84048,7 +84048,7 @@ { "Field": "freifeld7", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -84059,7 +84059,7 @@ { "Field": "freifeld8", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -84070,7 +84070,7 @@ { "Field": "freifeld9", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -84081,7 +84081,7 @@ { "Field": "freifeld10", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -84125,7 +84125,7 @@ { "Field": "kostenstelle", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -84147,7 +84147,7 @@ { "Field": "steuertext", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -84158,7 +84158,7 @@ { "Field": "erloese", "Type": "varchar(8)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -84180,7 +84180,7 @@ { "Field": "einkaufspreiswaehrung", "Type": "varchar(8)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -84224,7 +84224,7 @@ { "Field": "ekwaehrung", "Type": "varchar(8)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -84246,7 +84246,7 @@ { "Field": "freifeld11", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -84257,7 +84257,7 @@ { "Field": "freifeld12", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -84268,7 +84268,7 @@ { "Field": "freifeld13", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -84279,7 +84279,7 @@ { "Field": "freifeld14", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -84290,7 +84290,7 @@ { "Field": "freifeld15", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -84301,7 +84301,7 @@ { "Field": "freifeld16", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -84312,7 +84312,7 @@ { "Field": "freifeld17", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -84323,7 +84323,7 @@ { "Field": "freifeld18", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -84334,7 +84334,7 @@ { "Field": "freifeld19", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -84345,7 +84345,7 @@ { "Field": "freifeld20", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -84356,7 +84356,7 @@ { "Field": "freifeld21", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -84367,7 +84367,7 @@ { "Field": "freifeld22", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -84378,7 +84378,7 @@ { "Field": "freifeld23", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -84389,7 +84389,7 @@ { "Field": "freifeld24", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -84400,7 +84400,7 @@ { "Field": "freifeld25", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -84411,7 +84411,7 @@ { "Field": "freifeld26", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -84422,7 +84422,7 @@ { "Field": "freifeld27", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -84433,7 +84433,7 @@ { "Field": "freifeld28", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -84444,7 +84444,7 @@ { "Field": "freifeld29", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -84455,7 +84455,7 @@ { "Field": "freifeld30", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -84466,7 +84466,7 @@ { "Field": "freifeld31", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -84477,7 +84477,7 @@ { "Field": "freifeld32", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -84488,7 +84488,7 @@ { "Field": "freifeld33", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -84499,7 +84499,7 @@ { "Field": "freifeld34", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -84510,7 +84510,7 @@ { "Field": "freifeld35", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -84521,7 +84521,7 @@ { "Field": "freifeld36", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -84532,7 +84532,7 @@ { "Field": "freifeld37", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -84543,7 +84543,7 @@ { "Field": "freifeld38", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -84554,7 +84554,7 @@ { "Field": "freifeld39", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -84565,7 +84565,7 @@ { "Field": "freifeld40", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -84576,7 +84576,7 @@ { "Field": "formelmenge", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -84587,7 +84587,7 @@ { "Field": "formelpreis", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -84776,7 +84776,7 @@ }, { "name": "rechnung_protokoll", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -84815,7 +84815,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -84826,7 +84826,7 @@ { "Field": "grund", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -84856,7 +84856,7 @@ }, { "name": "reisekosten", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -84884,7 +84884,7 @@ { "Field": "projekt", "Type": "varchar(222)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -84906,7 +84906,7 @@ { "Field": "prefix", "Type": "varchar(222)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -84917,7 +84917,7 @@ { "Field": "reisekostenart", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -84928,7 +84928,7 @@ { "Field": "belegnr", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -84939,7 +84939,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -84950,7 +84950,7 @@ { "Field": "auftrag", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -84972,7 +84972,7 @@ { "Field": "freitext", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -84983,7 +84983,7 @@ { "Field": "status", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -85016,7 +85016,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -85027,7 +85027,7 @@ { "Field": "abteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -85038,7 +85038,7 @@ { "Field": "unterabteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -85049,7 +85049,7 @@ { "Field": "strasse", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -85060,7 +85060,7 @@ { "Field": "adresszusatz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -85071,7 +85071,7 @@ { "Field": "ansprechpartner", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -85082,7 +85082,7 @@ { "Field": "plz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -85093,7 +85093,7 @@ { "Field": "ort", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -85104,7 +85104,7 @@ { "Field": "land", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -85115,7 +85115,7 @@ { "Field": "ustid", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -85126,7 +85126,7 @@ { "Field": "email", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -85137,7 +85137,7 @@ { "Field": "telefon", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -85148,7 +85148,7 @@ { "Field": "telefax", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -85159,7 +85159,7 @@ { "Field": "betreff", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -85170,7 +85170,7 @@ { "Field": "kundennummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -85181,7 +85181,7 @@ { "Field": "versandart", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -85192,7 +85192,7 @@ { "Field": "versand", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -85236,7 +85236,7 @@ { "Field": "versendet_per", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -85247,7 +85247,7 @@ { "Field": "versendet_durch", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -85379,7 +85379,7 @@ { "Field": "waehrung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": "''EUR''", @@ -85390,7 +85390,7 @@ { "Field": "anlass", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -85401,7 +85401,7 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -85434,7 +85434,7 @@ { "Field": "von_zeit", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -85445,7 +85445,7 @@ { "Field": "bis_zeit", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -85489,7 +85489,7 @@ { "Field": "typ", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": "''firma''", @@ -85511,7 +85511,7 @@ }, { "name": "reisekosten_position", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -85539,7 +85539,7 @@ { "Field": "reisekostenart", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -85550,7 +85550,7 @@ { "Field": "artikel", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -85572,7 +85572,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -85583,7 +85583,7 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -85594,7 +85594,7 @@ { "Field": "ort", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -85605,7 +85605,7 @@ { "Field": "internerkommentar", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -85616,7 +85616,7 @@ { "Field": "nummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -85627,7 +85627,7 @@ { "Field": "verrechnungsart", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -85671,7 +85671,7 @@ { "Field": "von", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -85682,7 +85682,7 @@ { "Field": "bis", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -85704,7 +85704,7 @@ { "Field": "status", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -85715,7 +85715,7 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -85726,7 +85726,7 @@ { "Field": "bezahlt_wie", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -85737,7 +85737,7 @@ { "Field": "uststeuersatz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -85792,7 +85792,7 @@ { "Field": "abgerechnet_objekt", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -85888,7 +85888,7 @@ }, { "name": "reisekosten_protokoll", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -85927,7 +85927,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -85938,7 +85938,7 @@ { "Field": "grund", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -85968,7 +85968,7 @@ }, { "name": "reisekostenart", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -85985,7 +85985,7 @@ { "Field": "nummer", "Type": "varchar(20)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -85996,7 +85996,7 @@ { "Field": "beschreibung", "Type": "varchar(512)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -86007,7 +86007,7 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -86029,7 +86029,7 @@ }, { "name": "report", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -86046,7 +86046,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -86057,7 +86057,7 @@ { "Field": "description", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -86079,7 +86079,7 @@ { "Field": "sql_query", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -86090,7 +86090,7 @@ { "Field": "remark", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -86101,7 +86101,7 @@ { "Field": "category", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -86123,7 +86123,7 @@ { "Field": "csv_delimiter", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -86134,7 +86134,7 @@ { "Field": "csv_enclosure", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -86156,7 +86156,7 @@ }, { "name": "report_column", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -86184,7 +86184,7 @@ { "Field": "key_name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -86195,7 +86195,7 @@ { "Field": "title", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -86206,7 +86206,7 @@ { "Field": "width", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -86217,7 +86217,7 @@ { "Field": "alignment", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -86250,7 +86250,7 @@ { "Field": "sorting", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -86261,7 +86261,7 @@ { "Field": "format_type", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -86272,7 +86272,7 @@ { "Field": "format_statement", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -86294,7 +86294,7 @@ }, { "name": "report_favorite", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -86344,7 +86344,7 @@ }, { "name": "report_parameter", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -86372,7 +86372,7 @@ { "Field": "varname", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -86383,7 +86383,7 @@ { "Field": "displayname", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -86394,7 +86394,7 @@ { "Field": "description", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -86405,7 +86405,7 @@ { "Field": "default_value", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -86416,7 +86416,7 @@ { "Field": "options", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -86427,7 +86427,7 @@ { "Field": "control_type", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -86449,7 +86449,7 @@ { "Field": "variable_extern", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -86471,7 +86471,7 @@ }, { "name": "report_share", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -86510,7 +86510,7 @@ { "Field": "chart_axislabel", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -86521,7 +86521,7 @@ { "Field": "chart_type", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -86532,7 +86532,7 @@ { "Field": "chart_x_column", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -86543,7 +86543,7 @@ { "Field": "data_columns", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -86554,7 +86554,7 @@ { "Field": "chart_group_column", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -86565,7 +86565,7 @@ { "Field": "chart_dateformat", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -86587,7 +86587,7 @@ { "Field": "chart_interval_mode", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -86653,7 +86653,7 @@ { "Field": "menu_doctype", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -86664,7 +86664,7 @@ { "Field": "menu_label", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -86675,7 +86675,7 @@ { "Field": "menu_format", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -86697,7 +86697,7 @@ { "Field": "tab_module", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -86708,7 +86708,7 @@ { "Field": "tab_action", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -86719,7 +86719,7 @@ { "Field": "tab_label", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -86730,7 +86730,7 @@ { "Field": "tab_position", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -86752,7 +86752,7 @@ }, { "name": "report_transfer", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -86791,7 +86791,7 @@ { "Field": "ftp_type", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -86802,7 +86802,7 @@ { "Field": "ftp_host", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -86813,7 +86813,7 @@ { "Field": "ftp_port", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -86824,7 +86824,7 @@ { "Field": "ftp_user", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -86835,7 +86835,7 @@ { "Field": "ftp_password", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -86846,7 +86846,7 @@ { "Field": "ftp_interval_mode", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -86857,7 +86857,7 @@ { "Field": "ftp_interval_value", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -86879,7 +86879,7 @@ { "Field": "ftp_format", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -86890,7 +86890,7 @@ { "Field": "ftp_filename", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -86923,7 +86923,7 @@ { "Field": "email_recipient", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -86934,7 +86934,7 @@ { "Field": "email_subject", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -86945,7 +86945,7 @@ { "Field": "email_interval_mode", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -86956,7 +86956,7 @@ { "Field": "email_interval_value", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -86978,7 +86978,7 @@ { "Field": "email_format", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -86989,7 +86989,7 @@ { "Field": "email_filename", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -87011,7 +87011,7 @@ { "Field": "url_format", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -87044,7 +87044,7 @@ { "Field": "url_address", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -87055,7 +87055,7 @@ { "Field": "url_token", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -87088,7 +87088,7 @@ { "Field": "api_format", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -87121,7 +87121,7 @@ }, { "name": "report_user", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -87160,7 +87160,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -87226,7 +87226,7 @@ }, { "name": "retoure", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -87254,7 +87254,7 @@ { "Field": "projekt", "Type": "varchar(222)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -87265,7 +87265,7 @@ { "Field": "belegnr", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -87276,7 +87276,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -87287,7 +87287,7 @@ { "Field": "lieferschein", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -87309,7 +87309,7 @@ { "Field": "auftrag", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -87331,7 +87331,7 @@ { "Field": "freitext", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -87342,7 +87342,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "MUL", "Default": null, @@ -87364,7 +87364,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -87375,7 +87375,7 @@ { "Field": "abteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -87386,7 +87386,7 @@ { "Field": "unterabteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -87397,7 +87397,7 @@ { "Field": "strasse", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -87408,7 +87408,7 @@ { "Field": "adresszusatz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -87419,7 +87419,7 @@ { "Field": "ansprechpartner", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -87430,7 +87430,7 @@ { "Field": "plz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -87441,7 +87441,7 @@ { "Field": "ort", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -87452,7 +87452,7 @@ { "Field": "land", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -87474,7 +87474,7 @@ { "Field": "liefername", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -87485,7 +87485,7 @@ { "Field": "lieferabteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -87496,7 +87496,7 @@ { "Field": "lieferunterabteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -87507,7 +87507,7 @@ { "Field": "lieferstrasse", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -87518,7 +87518,7 @@ { "Field": "lieferadresszusatz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -87529,7 +87529,7 @@ { "Field": "lieferansprechpartner", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -87540,7 +87540,7 @@ { "Field": "lieferplz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -87551,7 +87551,7 @@ { "Field": "lieferort", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -87562,7 +87562,7 @@ { "Field": "lieferland", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -87573,7 +87573,7 @@ { "Field": "ustid", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -87584,7 +87584,7 @@ { "Field": "email", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -87595,7 +87595,7 @@ { "Field": "telefon", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -87606,7 +87606,7 @@ { "Field": "telefax", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -87617,7 +87617,7 @@ { "Field": "betreff", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -87628,7 +87628,7 @@ { "Field": "kundennummer", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -87639,7 +87639,7 @@ { "Field": "versandart", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "MUL", "Default": null, @@ -87650,7 +87650,7 @@ { "Field": "versand", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -87694,7 +87694,7 @@ { "Field": "versendet_per", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -87705,7 +87705,7 @@ { "Field": "versendet_durch", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -87749,7 +87749,7 @@ { "Field": "vertrieb", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -87771,7 +87771,7 @@ { "Field": "ihrebestellnummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -87782,7 +87782,7 @@ { "Field": "anschreiben", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -87826,7 +87826,7 @@ { "Field": "lieferantenretoureinfo", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -87881,7 +87881,7 @@ { "Field": "typ", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": "''firma''", @@ -87892,7 +87892,7 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -87969,7 +87969,7 @@ { "Field": "internebezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88002,7 +88002,7 @@ { "Field": "sprache", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88013,7 +88013,7 @@ { "Field": "bundesland", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88024,7 +88024,7 @@ { "Field": "gln", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88090,7 +88090,7 @@ { "Field": "bodyzusatz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88101,7 +88101,7 @@ { "Field": "lieferbedingung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88112,7 +88112,7 @@ { "Field": "titel", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88145,7 +88145,7 @@ { "Field": "bundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88189,7 +88189,7 @@ { "Field": "fortschritt", "Type": "varchar(16)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -88257,7 +88257,7 @@ }, { "name": "retoure_position", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -88307,7 +88307,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88318,7 +88318,7 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88329,7 +88329,7 @@ { "Field": "internerkommentar", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88340,7 +88340,7 @@ { "Field": "nummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88351,7 +88351,7 @@ { "Field": "seriennummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88384,7 +88384,7 @@ { "Field": "vpe", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88406,7 +88406,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88417,7 +88417,7 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88472,7 +88472,7 @@ { "Field": "einheit", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88483,7 +88483,7 @@ { "Field": "zolltarifnummer", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": "'0'", @@ -88494,7 +88494,7 @@ { "Field": "herkunftsland", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": "'0'", @@ -88505,7 +88505,7 @@ { "Field": "artikelnummerkunde", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88516,7 +88516,7 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88527,7 +88527,7 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88538,7 +88538,7 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88549,7 +88549,7 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88560,7 +88560,7 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88571,7 +88571,7 @@ { "Field": "freifeld6", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88582,7 +88582,7 @@ { "Field": "freifeld7", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88593,7 +88593,7 @@ { "Field": "freifeld8", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88604,7 +88604,7 @@ { "Field": "freifeld9", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88615,7 +88615,7 @@ { "Field": "freifeld10", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88626,7 +88626,7 @@ { "Field": "freifeld11", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88637,7 +88637,7 @@ { "Field": "freifeld12", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88648,7 +88648,7 @@ { "Field": "freifeld13", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88659,7 +88659,7 @@ { "Field": "freifeld14", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88670,7 +88670,7 @@ { "Field": "freifeld15", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88681,7 +88681,7 @@ { "Field": "freifeld16", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88692,7 +88692,7 @@ { "Field": "freifeld17", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88703,7 +88703,7 @@ { "Field": "freifeld18", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88714,7 +88714,7 @@ { "Field": "freifeld19", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88725,7 +88725,7 @@ { "Field": "freifeld20", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88736,7 +88736,7 @@ { "Field": "freifeld21", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88747,7 +88747,7 @@ { "Field": "freifeld22", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88758,7 +88758,7 @@ { "Field": "freifeld23", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88769,7 +88769,7 @@ { "Field": "freifeld24", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88780,7 +88780,7 @@ { "Field": "freifeld25", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88791,7 +88791,7 @@ { "Field": "freifeld26", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88802,7 +88802,7 @@ { "Field": "freifeld27", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88813,7 +88813,7 @@ { "Field": "freifeld28", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88824,7 +88824,7 @@ { "Field": "freifeld29", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88835,7 +88835,7 @@ { "Field": "freifeld30", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88846,7 +88846,7 @@ { "Field": "freifeld31", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88857,7 +88857,7 @@ { "Field": "freifeld32", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88868,7 +88868,7 @@ { "Field": "freifeld33", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88879,7 +88879,7 @@ { "Field": "freifeld34", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88890,7 +88890,7 @@ { "Field": "freifeld35", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88901,7 +88901,7 @@ { "Field": "freifeld36", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88912,7 +88912,7 @@ { "Field": "freifeld37", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88923,7 +88923,7 @@ { "Field": "freifeld38", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88934,7 +88934,7 @@ { "Field": "freifeld39", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -88945,7 +88945,7 @@ { "Field": "freifeld40", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -89000,7 +89000,7 @@ { "Field": "lagertext", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -89044,7 +89044,7 @@ { "Field": "grund", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -89055,7 +89055,7 @@ { "Field": "grundbeschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -89066,7 +89066,7 @@ { "Field": "aktion", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -89077,7 +89077,7 @@ { "Field": "aktionbeschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -89140,7 +89140,7 @@ }, { "name": "retoure_protokoll", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -89179,7 +89179,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -89190,7 +89190,7 @@ { "Field": "grund", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -89220,7 +89220,7 @@ }, { "name": "returnorder_quantity", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -89259,7 +89259,7 @@ { "Field": "serialnumber", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -89270,7 +89270,7 @@ { "Field": "batch", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -89281,7 +89281,7 @@ { "Field": "bestbefore", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -89311,7 +89311,7 @@ }, { "name": "rma", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -89339,7 +89339,7 @@ { "Field": "projekt", "Type": "varchar(222)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -89361,7 +89361,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -89383,7 +89383,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -89405,7 +89405,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -89416,7 +89416,7 @@ { "Field": "vorname", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -89427,7 +89427,7 @@ { "Field": "abteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -89438,7 +89438,7 @@ { "Field": "unterabteilung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -89449,7 +89449,7 @@ { "Field": "strasse", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -89460,7 +89460,7 @@ { "Field": "adresszusatz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -89471,7 +89471,7 @@ { "Field": "plz", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -89482,7 +89482,7 @@ { "Field": "ort", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -89493,7 +89493,7 @@ { "Field": "ustid", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -89504,7 +89504,7 @@ { "Field": "email", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -89515,7 +89515,7 @@ { "Field": "telefon", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -89526,7 +89526,7 @@ { "Field": "telefax", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -89537,7 +89537,7 @@ { "Field": "betreff", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -89548,7 +89548,7 @@ { "Field": "kundennummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -89559,7 +89559,7 @@ { "Field": "lieferantennummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -89570,7 +89570,7 @@ { "Field": "zahlungsweise", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -89592,7 +89592,7 @@ { "Field": "versandart", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -89614,7 +89614,7 @@ { "Field": "freitext", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -89669,7 +89669,7 @@ { "Field": "einkaeufer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -89713,7 +89713,7 @@ }, { "name": "rma_artikel", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -89752,7 +89752,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -89785,7 +89785,7 @@ { "Field": "wunsch", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -89796,7 +89796,7 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -89818,7 +89818,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -89851,7 +89851,7 @@ { "Field": "techniker", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -89862,7 +89862,7 @@ { "Field": "buchhaltung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -89895,7 +89895,7 @@ { "Field": "seriennummer", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -89925,7 +89925,7 @@ }, { "name": "rma_position", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -89953,7 +89953,7 @@ { "Field": "status", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": "''offen''", @@ -89986,7 +89986,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -90019,7 +90019,7 @@ }, { "name": "rma_protokoll", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -90058,7 +90058,7 @@ { "Field": "kommentar", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -90069,7 +90069,7 @@ { "Field": "link", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -90080,7 +90080,7 @@ { "Field": "interngrund", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -90091,7 +90091,7 @@ { "Field": "externgrund", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -90102,7 +90102,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -90135,7 +90135,7 @@ }, { "name": "rma_vorlagen_grund", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -90152,7 +90152,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -90163,7 +90163,7 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -90174,7 +90174,7 @@ { "Field": "sprache", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -90248,7 +90248,7 @@ }, { "name": "rma_vorlagen_kategorien", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -90265,7 +90265,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -90276,7 +90276,7 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -90287,7 +90287,7 @@ { "Field": "aktion", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -90309,7 +90309,7 @@ }, { "name": "rohstoffe", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -90381,7 +90381,7 @@ { "Field": "referenz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -90392,7 +90392,7 @@ { "Field": "art", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'material'", @@ -90414,7 +90414,7 @@ }, { "name": "sammelrechnung_position", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -90554,7 +90554,7 @@ }, { "name": "scheck_checked", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -90604,7 +90604,7 @@ }, { "name": "scheck_druck", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -90632,7 +90632,7 @@ { "Field": "kommentar", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -90687,7 +90687,7 @@ }, { "name": "scheck_gutschrift", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -90737,7 +90737,7 @@ }, { "name": "seriennummern", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -90754,7 +90754,7 @@ { "Field": "seriennummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -90787,7 +90787,7 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -90831,7 +90831,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -90864,7 +90864,7 @@ }, { "name": "seriennummern_log", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -90914,7 +90914,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -90925,7 +90925,7 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -90980,7 +90980,7 @@ { "Field": "doctype", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -91013,7 +91013,7 @@ { "Field": "batch", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -91046,7 +91046,7 @@ }, { "name": "service", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -91085,7 +91085,7 @@ { "Field": "ansprechpartner", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -91096,7 +91096,7 @@ { "Field": "nummer", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "UNI", "Default": null, @@ -91107,7 +91107,7 @@ { "Field": "prio", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'niedrig'", @@ -91118,7 +91118,7 @@ { "Field": "eingangart", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -91151,7 +91151,7 @@ { "Field": "betreff", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -91162,7 +91162,7 @@ { "Field": "beschreibung_html", "Type": "longtext", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -91173,7 +91173,7 @@ { "Field": "internebemerkung", "Type": "longtext", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -91184,7 +91184,7 @@ { "Field": "antwortankunden", "Type": "longtext", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -91206,7 +91206,7 @@ { "Field": "status", "Type": "varchar(20)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'angelegt'", @@ -91228,7 +91228,7 @@ { "Field": "seriennummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -91305,7 +91305,7 @@ { "Field": "art", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -91316,7 +91316,7 @@ { "Field": "bereich", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -91327,7 +91327,7 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -91338,7 +91338,7 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -91349,7 +91349,7 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -91360,7 +91360,7 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -91371,7 +91371,7 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -91382,7 +91382,7 @@ { "Field": "version", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -91393,7 +91393,7 @@ { "Field": "antwortankundenempfaenger", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -91404,7 +91404,7 @@ { "Field": "antwortankundenkopie", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -91415,7 +91415,7 @@ { "Field": "antwortankundenblindkopie", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -91426,7 +91426,7 @@ { "Field": "antwortankundenbetreff", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -91456,7 +91456,7 @@ }, { "name": "sevensenders_shipment", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -91495,7 +91495,7 @@ { "Field": "carrier", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -91506,7 +91506,7 @@ { "Field": "shipment_id", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -91517,7 +91517,7 @@ { "Field": "shipment_reference", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -91528,7 +91528,7 @@ { "Field": "tracking", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -91550,7 +91550,7 @@ }, { "name": "shopexport", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -91567,7 +91567,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -91578,7 +91578,7 @@ { "Field": "typ", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -91589,7 +91589,7 @@ { "Field": "url", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -91600,7 +91600,7 @@ { "Field": "passwort", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -91611,7 +91611,7 @@ { "Field": "token", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -91622,7 +91622,7 @@ { "Field": "challenge", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -91875,7 +91875,7 @@ { "Field": "ab_nummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -92095,7 +92095,7 @@ { "Field": "debitorennummer", "Type": "varchar(16)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -92128,7 +92128,7 @@ { "Field": "api_account_token", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -92260,7 +92260,7 @@ { "Field": "json", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -92271,7 +92271,7 @@ { "Field": "freitext", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -92304,7 +92304,7 @@ { "Field": "autoversandoption", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "''standard''", @@ -92326,7 +92326,7 @@ { "Field": "shoptyp", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -92337,7 +92337,7 @@ { "Field": "modulename", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -92348,7 +92348,7 @@ { "Field": "einstellungen_json", "Type": "mediumtext", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -92601,7 +92601,7 @@ }, { "name": "shopexport_adressenuebertragen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -92651,7 +92651,7 @@ }, { "name": "shopexport_archiv", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -92701,7 +92701,7 @@ { "Field": "status", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -92712,7 +92712,7 @@ { "Field": "letzteabgeholtenummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -92723,7 +92723,7 @@ { "Field": "type", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -92756,7 +92756,7 @@ { "Field": "nummervon", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -92767,7 +92767,7 @@ { "Field": "nummerbis", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -92822,7 +92822,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -92874,7 +92874,7 @@ }, { "name": "shopexport_artikel", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -92913,7 +92913,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -92924,7 +92924,7 @@ { "Field": "wert", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -92935,7 +92935,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -92977,7 +92977,7 @@ }, { "name": "shopexport_artikeluebertragen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -93038,7 +93038,7 @@ }, { "name": "shopexport_artikeluebertragen_check", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -93088,7 +93088,7 @@ }, { "name": "shopexport_change_log", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -93116,7 +93116,7 @@ { "Field": "username", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -93127,7 +93127,7 @@ { "Field": "diff", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -93149,7 +93149,7 @@ { "Field": "message", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -93160,7 +93160,7 @@ { "Field": "plaindiff", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -93182,7 +93182,7 @@ }, { "name": "shopexport_freifelder", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -93210,7 +93210,7 @@ { "Field": "freifeld_wawi", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -93221,7 +93221,7 @@ { "Field": "freifeld_shop", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -93265,7 +93265,7 @@ { "Field": "updatedby", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -93287,7 +93287,7 @@ }, { "name": "shopexport_getarticles", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -93315,7 +93315,7 @@ { "Field": "nummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -93345,7 +93345,7 @@ }, { "name": "shopexport_kampange", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -93362,7 +93362,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -93417,7 +93417,7 @@ { "Field": "link", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -93483,7 +93483,7 @@ { "Field": "artikel", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -93494,7 +93494,7 @@ { "Field": "aktion", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -93527,7 +93527,7 @@ }, { "name": "shopexport_kategorien", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -93577,7 +93577,7 @@ { "Field": "extid", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -93588,7 +93588,7 @@ { "Field": "extparent", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -93599,7 +93599,7 @@ { "Field": "extname", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -93643,7 +93643,7 @@ { "Field": "updatedby", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -93681,7 +93681,7 @@ }, { "name": "shopexport_kundengruppen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -93731,7 +93731,7 @@ { "Field": "type", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "''mitglied''", @@ -93742,7 +93742,7 @@ { "Field": "extgruppename", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -93797,7 +93797,7 @@ { "Field": "updatedby", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -93819,7 +93819,7 @@ }, { "name": "shopexport_log", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -93847,7 +93847,7 @@ { "Field": "typ", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -93858,7 +93858,7 @@ { "Field": "parameter1", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -93869,7 +93869,7 @@ { "Field": "parameter2", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -93880,7 +93880,7 @@ { "Field": "bearbeiter", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -93902,7 +93902,7 @@ { "Field": "parameter3", "Type": "varchar(255)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -93913,7 +93913,7 @@ { "Field": "parameter4", "Type": "varchar(255)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -93946,7 +93946,7 @@ }, { "name": "shopexport_mapping", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -93974,7 +93974,7 @@ { "Field": "tabelle", "Type": "varchar(255)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -94007,7 +94007,7 @@ { "Field": "extid", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -94064,7 +94064,7 @@ }, { "name": "shopexport_sprachen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -94092,7 +94092,7 @@ { "Field": "land", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -94103,7 +94103,7 @@ { "Field": "sprache", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -94158,7 +94158,7 @@ { "Field": "updatedby", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -94180,7 +94180,7 @@ }, { "name": "shopexport_status", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -94208,7 +94208,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -94230,7 +94230,7 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -94241,7 +94241,7 @@ { "Field": "befehl", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -94263,7 +94263,7 @@ }, { "name": "shopexport_subshop", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -94302,7 +94302,7 @@ { "Field": "subshopkennung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -94313,7 +94313,7 @@ { "Field": "sprache", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -94357,7 +94357,7 @@ { "Field": "updatedby", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -94379,7 +94379,7 @@ }, { "name": "shopexport_versandarten", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -94407,7 +94407,7 @@ { "Field": "versandart_shop", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -94418,7 +94418,7 @@ { "Field": "versandart_wawision", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -94440,7 +94440,7 @@ { "Field": "land", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -94462,7 +94462,7 @@ { "Field": "versandart_ausgehend", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -94495,7 +94495,7 @@ { "Field": "updatedby", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -94528,7 +94528,7 @@ }, { "name": "shopexport_voucher_cache", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -94597,7 +94597,7 @@ }, { "name": "shopexport_zahlungsstatus", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -94625,7 +94625,7 @@ { "Field": "auftrag", "Type": "varchar(255)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -94636,7 +94636,7 @@ { "Field": "status", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -94685,7 +94685,7 @@ }, { "name": "shopexport_zahlweisen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -94713,7 +94713,7 @@ { "Field": "zahlweise_shop", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -94724,7 +94724,7 @@ { "Field": "zahlweise_wawision", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -94790,7 +94790,7 @@ { "Field": "updatedby", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -94823,7 +94823,7 @@ }, { "name": "shopimport_amazon_aufrufe", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -94840,7 +94840,7 @@ { "Field": "shop", "Type": "varchar(100)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -94851,7 +94851,7 @@ { "Field": "funktion", "Type": "varchar(100)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -94862,7 +94862,7 @@ { "Field": "daten", "Type": "mediumtext", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -94939,7 +94939,7 @@ { "Field": "apifunktion", "Type": "varchar(100)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -94950,7 +94950,7 @@ { "Field": "feedid", "Type": "varchar(50)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -94983,7 +94983,7 @@ { "Field": "fehlertext", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -95027,7 +95027,7 @@ }, { "name": "shopimport_amazon_gotorders", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -95044,7 +95044,7 @@ { "Field": "orderid", "Type": "varchar(30)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "MUL", "Default": null, @@ -95055,7 +95055,7 @@ { "Field": "orderitemid", "Type": "varchar(30)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -95066,7 +95066,7 @@ { "Field": "nextordertoken", "Type": "varchar(30)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -95077,7 +95077,7 @@ { "Field": "nextitemtoken", "Type": "varchar(30)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -95099,7 +95099,7 @@ { "Field": "tracking", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -95176,7 +95176,7 @@ { "Field": "marketplace", "Type": "varchar(16)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -95206,7 +95206,7 @@ }, { "name": "shopimport_amazon_throttling", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -95223,7 +95223,7 @@ { "Field": "apifunktion", "Type": "varchar(100)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -95234,7 +95234,7 @@ { "Field": "shop", "Type": "varchar(100)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -95245,7 +95245,7 @@ { "Field": "typ", "Type": "varchar(50)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -95418,7 +95418,7 @@ }, { "name": "shopimport_auftraege", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -95446,7 +95446,7 @@ { "Field": "extid", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -95457,7 +95457,7 @@ { "Field": "sessionid", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -95468,7 +95468,7 @@ { "Field": "warenkorb", "Type": "mediumtext", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -95512,7 +95512,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -95534,7 +95534,7 @@ { "Field": "bestellnummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -95567,7 +95567,7 @@ }, { "name": "shopimport_checkorder", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -95606,7 +95606,7 @@ { "Field": "ext_order", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "''0''", @@ -95628,7 +95628,7 @@ { "Field": "status", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "''unpaid''", @@ -95672,7 +95672,7 @@ }, { "name": "shopimporter_amazon_attachedoffers", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -95722,7 +95722,7 @@ { "Field": "marketplace", "Type": "varchar(16)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -95733,7 +95733,7 @@ { "Field": "title", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -95744,7 +95744,7 @@ { "Field": "merchantgroup", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -95755,7 +95755,7 @@ { "Field": "condition", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'new'", @@ -95766,7 +95766,7 @@ { "Field": "sku", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -95777,7 +95777,7 @@ { "Field": "asin", "Type": "varchar(16)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -95788,7 +95788,7 @@ { "Field": "status", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -95799,7 +95799,7 @@ { "Field": "currency", "Type": "varchar(4)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -95865,7 +95865,7 @@ { "Field": "feed_submission_id", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -95876,7 +95876,7 @@ { "Field": "feed_submission_id_price", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -95887,7 +95887,7 @@ { "Field": "feed_submission_id_storage", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -95898,7 +95898,7 @@ { "Field": "feed_submission_id_flat", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -95909,7 +95909,7 @@ { "Field": "error_code", "Type": "varchar(8)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -95920,7 +95920,7 @@ { "Field": "error_message", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -95974,7 +95974,7 @@ }, { "name": "shopimporter_amazon_browsetree", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -95991,7 +95991,7 @@ { "Field": "browsenodeid", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "MUL", "Default": null, @@ -96002,7 +96002,7 @@ { "Field": "marketplace", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -96024,7 +96024,7 @@ { "Field": "browseNodename", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -96035,7 +96035,7 @@ { "Field": "browseNodestorecontextname", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -96046,7 +96046,7 @@ { "Field": "browsepathbyid", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -96057,7 +96057,7 @@ { "Field": "browsepathbyname", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -96079,7 +96079,7 @@ { "Field": "producttypedefinitions", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -96150,7 +96150,7 @@ }, { "name": "shopimporter_amazon_categorie", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -96167,7 +96167,7 @@ { "Field": "root_node", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -96178,7 +96178,7 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "MUL", "Default": null, @@ -96189,7 +96189,7 @@ { "Field": "node_de", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "MUL", "Default": null, @@ -96200,7 +96200,7 @@ { "Field": "node_uk", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -96211,7 +96211,7 @@ { "Field": "node_fr", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -96222,7 +96222,7 @@ { "Field": "node_it", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -96233,7 +96233,7 @@ { "Field": "node_es", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -96271,7 +96271,7 @@ }, { "name": "shopimporter_amazon_creditnotes_adjustmentid", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -96332,7 +96332,7 @@ { "Field": "adjustmentid", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -96381,7 +96381,7 @@ }, { "name": "shopimporter_amazon_feedsubmission", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -96409,7 +96409,7 @@ { "Field": "feed_submission_id", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -96420,7 +96420,7 @@ { "Field": "feed_type", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -96431,7 +96431,7 @@ { "Field": "feed_processing_status", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -96442,7 +96442,7 @@ { "Field": "parameter", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -96517,7 +96517,7 @@ }, { "name": "shopimporter_amazon_flatfile_article", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -96567,7 +96567,7 @@ { "Field": "sku", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -96578,7 +96578,7 @@ { "Field": "status", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -96589,7 +96589,7 @@ { "Field": "marketplace", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -96600,7 +96600,7 @@ { "Field": "feedsubmissionid", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -96611,7 +96611,7 @@ { "Field": "error_message", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -96652,7 +96652,7 @@ }, { "name": "shopimporter_amazon_flatfile_article_image", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -96691,7 +96691,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -96702,7 +96702,7 @@ { "Field": "url", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -96751,7 +96751,7 @@ }, { "name": "shopimporter_amazon_flatfile_article_value", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -96779,7 +96779,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -96790,7 +96790,7 @@ { "Field": "value", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -96820,7 +96820,7 @@ }, { "name": "shopimporter_amazon_flatfiledefinition", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -96837,7 +96837,7 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "UNI", "Default": null, @@ -96848,7 +96848,7 @@ { "Field": "country", "Type": "varchar(2)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -96859,7 +96859,7 @@ { "Field": "csv", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -96870,7 +96870,7 @@ { "Field": "definitions_json", "Type": "mediumtext", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -96881,7 +96881,7 @@ { "Field": "requirements_json", "Type": "mediumtext", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -96892,7 +96892,7 @@ { "Field": "allowed_values_json", "Type": "mediumtext", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -96922,7 +96922,7 @@ }, { "name": "shopimporter_amazon_flatfilefields", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -96939,7 +96939,7 @@ { "Field": "fieldname", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "UNI", "Default": null, @@ -96959,8 +96959,8 @@ }, { "Key_name": "fieldname", - "Index_type": "HASH", - "Non_unique": "", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "fieldname" ] @@ -96969,7 +96969,7 @@ }, { "name": "shopimporter_amazon_invoice_address", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -96997,7 +96997,7 @@ { "Field": "orderid", "Type": "varchar(19)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -97008,7 +97008,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -97019,7 +97019,7 @@ { "Field": "addressfieldone", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -97030,7 +97030,7 @@ { "Field": "addressfieldtwo", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -97041,7 +97041,7 @@ { "Field": "addressfieldthree", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -97052,7 +97052,7 @@ { "Field": "city", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -97063,7 +97063,7 @@ { "Field": "region", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -97074,7 +97074,7 @@ { "Field": "postalcode", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -97085,7 +97085,7 @@ { "Field": "countrycode", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -97096,7 +97096,7 @@ { "Field": "email", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -97107,7 +97107,7 @@ { "Field": "phonenumber", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -97137,7 +97137,7 @@ }, { "name": "shopimporter_amazon_invoice_upload", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -97209,7 +97209,7 @@ { "Field": "orderid", "Type": "varchar(19)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -97220,7 +97220,7 @@ { "Field": "shippingid", "Type": "varchar(19)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -97253,7 +97253,7 @@ { "Field": "report", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -97264,7 +97264,7 @@ { "Field": "marketplace", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -97275,7 +97275,7 @@ { "Field": "status", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -97286,7 +97286,7 @@ { "Field": "error_code", "Type": "varchar(5)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -97297,7 +97297,7 @@ { "Field": "error_message", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -97308,7 +97308,7 @@ { "Field": "invoice_number", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -97341,7 +97341,7 @@ { "Field": "transaction_id", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -97390,7 +97390,7 @@ }, { "name": "shopimporter_amazon_listing", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -97418,7 +97418,7 @@ { "Field": "marketplace_request", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -97451,7 +97451,7 @@ { "Field": "seller_sku", "Type": "varchar(255)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -97462,7 +97462,7 @@ { "Field": "item_name", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -97484,7 +97484,7 @@ { "Field": "listing_id", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -97495,7 +97495,7 @@ { "Field": "item_description", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -97539,7 +97539,7 @@ { "Field": "image_url", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -97550,7 +97550,7 @@ { "Field": "item_is_marketplace", "Type": "varchar(1)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -97583,7 +97583,7 @@ { "Field": "item_note", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -97605,7 +97605,7 @@ { "Field": "zshop_category1", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -97616,7 +97616,7 @@ { "Field": "zshop_browse_path", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -97627,7 +97627,7 @@ { "Field": "zshop_storefron_feature", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -97638,7 +97638,7 @@ { "Field": "asin", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -97649,7 +97649,7 @@ { "Field": "asin2", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -97660,7 +97660,7 @@ { "Field": "asin3", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -97671,7 +97671,7 @@ { "Field": "will_ship_internationally", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -97682,7 +97682,7 @@ { "Field": "expedited_shipping", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -97693,7 +97693,7 @@ { "Field": "zshop_boldface", "Type": "varchar(1)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -97704,7 +97704,7 @@ { "Field": "product_id", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -97715,7 +97715,7 @@ { "Field": "bid_for_fetatured_placement", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -97726,7 +97726,7 @@ { "Field": "add_delete", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -97748,7 +97748,7 @@ { "Field": "fulfillment_channel", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -97770,7 +97770,7 @@ { "Field": "quantity_price_type", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -97891,7 +97891,7 @@ { "Field": "merchant_shipping_group", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -97902,7 +97902,7 @@ { "Field": "status", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -97973,7 +97973,7 @@ }, { "name": "shopimporter_amazon_merchantgroup", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -98001,7 +98001,7 @@ { "Field": "groupname", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -98042,7 +98042,7 @@ }, { "name": "shopimporter_amazon_order_status", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -98070,7 +98070,7 @@ { "Field": "orderid", "Type": "varchar(19)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -98081,7 +98081,7 @@ { "Field": "status", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -98124,7 +98124,7 @@ }, { "name": "shopimporter_amazon_orderadjustment", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -98163,7 +98163,7 @@ { "Field": "submitfeedid", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -98174,7 +98174,7 @@ { "Field": "status", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -98223,7 +98223,7 @@ }, { "name": "shopimporter_amazon_orderinfo", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -98251,7 +98251,7 @@ { "Field": "orderid", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "MUL", "Default": null, @@ -98325,7 +98325,7 @@ }, { "name": "shopimporter_amazon_recommendation", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -98353,7 +98353,7 @@ { "Field": "recommendationtype", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -98364,7 +98364,7 @@ { "Field": "itemname", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -98375,7 +98375,7 @@ { "Field": "defectgroup", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -98386,7 +98386,7 @@ { "Field": "recommendationid", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "MUL", "Default": null, @@ -98397,7 +98397,7 @@ { "Field": "recommendationreason", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -98408,7 +98408,7 @@ { "Field": "defectattribute", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -98419,7 +98419,7 @@ { "Field": "asin", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -98430,7 +98430,7 @@ { "Field": "sku", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -98479,7 +98479,7 @@ }, { "name": "shopimporter_amazon_report_scheduler", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -98529,7 +98529,7 @@ { "Field": "marketplace_request", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -98540,7 +98540,7 @@ { "Field": "report_type", "Type": "varchar(255)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -98551,7 +98551,7 @@ { "Field": "last_reportrequestid", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -98562,7 +98562,7 @@ { "Field": "last_generatedreportid", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -98573,7 +98573,7 @@ { "Field": "last_report_status", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -98616,7 +98616,7 @@ }, { "name": "shopimporter_amazon_requestinfo", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -98644,7 +98644,7 @@ { "Field": "type", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -98655,7 +98655,7 @@ { "Field": "doctype", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -98666,7 +98666,7 @@ { "Field": "parameter", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -98677,7 +98677,7 @@ { "Field": "parameter2", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -98688,7 +98688,7 @@ { "Field": "status", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "MUL", "Default": null, @@ -98710,7 +98710,7 @@ { "Field": "error", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -98768,7 +98768,7 @@ }, { "name": "shopimporter_amazon_service_status", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -98796,7 +98796,7 @@ { "Field": "status", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -98845,7 +98845,7 @@ }, { "name": "shopimporter_amazon_small_and_light", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -98873,7 +98873,7 @@ { "Field": "marketplace_request", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -98895,7 +98895,7 @@ { "Field": "sku", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -98906,7 +98906,7 @@ { "Field": "fnsku", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -98917,7 +98917,7 @@ { "Field": "asin", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -98928,7 +98928,7 @@ { "Field": "protuct_name", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -98939,7 +98939,7 @@ { "Field": "enrolled_in_snl", "Type": "varchar(3)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -98950,7 +98950,7 @@ { "Field": "marketplace", "Type": "varchar(16)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -99013,7 +99013,7 @@ }, { "name": "shopimporter_amazon_token", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -99040,8 +99040,8 @@ }, { "Field": "type", - "Type": "text", - "Collation": "utf8mb4_general_ci", + "Type": "varchar(255)", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -99052,7 +99052,7 @@ { "Field": "token", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -99083,8 +99083,8 @@ }, { "Key_name": "shop_id", - "Index_type": "HASH", - "Non_unique": "", + "Index_type": "BTREE", + "Non_unique": "UNIQUE", "columns": [ "shop_id", "type" @@ -99094,7 +99094,7 @@ }, { "name": "shopimporter_amazon_xsd_enumerations", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -99111,7 +99111,7 @@ { "Field": "parent_name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -99122,7 +99122,7 @@ { "Field": "direct_parent", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -99133,7 +99133,7 @@ { "Field": "element_name", "Type": "varchar(255)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -99144,7 +99144,7 @@ { "Field": "element_value", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -99155,7 +99155,7 @@ { "Field": "enumeration_type", "Type": "varchar(255)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -99166,7 +99166,7 @@ { "Field": "restriction", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -99177,7 +99177,7 @@ { "Field": "file", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -99226,7 +99226,7 @@ }, { "name": "shopimporter_shopify_auftraege", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -99254,7 +99254,7 @@ { "Field": "extid", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -99276,7 +99276,7 @@ { "Field": "bearbeiter", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -99298,7 +99298,7 @@ { "Field": "transaction_id", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -99309,7 +99309,7 @@ { "Field": "zahlungsweise", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -99347,7 +99347,7 @@ }, { "name": "shopnavigation", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -99364,7 +99364,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -99397,7 +99397,7 @@ { "Field": "bezeichnung_en", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -99408,7 +99408,7 @@ { "Field": "plugin", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -99419,7 +99419,7 @@ { "Field": "pluginparameter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -99441,7 +99441,7 @@ { "Field": "target", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -99463,7 +99463,7 @@ }, { "name": "singleshipment_order", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -99513,7 +99513,7 @@ { "Field": "status", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -99524,7 +99524,7 @@ { "Field": "trackingnumber", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -99535,7 +99535,7 @@ { "Field": "quality", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -99557,7 +99557,7 @@ }, { "name": "snapaddy_address", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -99574,7 +99574,7 @@ { "Field": "address_id", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -99585,7 +99585,7 @@ { "Field": "contact_list", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -99596,7 +99596,7 @@ { "Field": "firstName", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -99607,7 +99607,7 @@ { "Field": "lastName", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -99618,7 +99618,7 @@ { "Field": "phone", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -99629,7 +99629,7 @@ { "Field": "email", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -99640,7 +99640,7 @@ { "Field": "city", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -99651,7 +99651,7 @@ { "Field": "website", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -99662,7 +99662,7 @@ { "Field": "zip", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -99684,7 +99684,7 @@ { "Field": "snap_created", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -99695,7 +99695,7 @@ { "Field": "snap_hash", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "UNI", "Default": null, @@ -99706,7 +99706,7 @@ { "Field": "address", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -99736,7 +99736,7 @@ }, { "name": "snapaddy_log", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -99753,7 +99753,7 @@ { "Field": "lvl", "Type": "varchar(16)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -99764,7 +99764,7 @@ { "Field": "msg", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -99797,7 +99797,7 @@ }, { "name": "sprachen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -99814,7 +99814,7 @@ { "Field": "iso", "Type": "varchar(2)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -99825,7 +99825,7 @@ { "Field": "bezeichnung_de", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -99836,7 +99836,7 @@ { "Field": "bezeichnung_en", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -99847,7 +99847,7 @@ { "Field": "alias", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -99880,7 +99880,7 @@ }, { "name": "spryker_data", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -99919,7 +99919,7 @@ { "Field": "reference", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -99930,7 +99930,7 @@ { "Field": "type", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -99971,7 +99971,7 @@ }, { "name": "spryker_online_number", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -99988,7 +99988,7 @@ { "Field": "order_reference", "Type": "varchar(255)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -99999,7 +99999,7 @@ { "Field": "order_shipment", "Type": "varchar(255)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -100048,7 +100048,7 @@ }, { "name": "spryker_order_reference", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -100076,7 +100076,7 @@ { "Field": "order_reference", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -100087,7 +100087,7 @@ { "Field": "shipment_id", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -100098,7 +100098,7 @@ { "Field": "order_item_reference", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -100139,7 +100139,7 @@ }, { "name": "sqlcache", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -100156,7 +100156,7 @@ { "Field": "abfrage", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -100167,7 +100167,7 @@ { "Field": "ergebnis", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -100178,7 +100178,7 @@ { "Field": "shortcode", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -100222,7 +100222,7 @@ }, { "name": "standardpackage", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -100239,7 +100239,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -100250,7 +100250,7 @@ { "Field": "description", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -100316,7 +100316,7 @@ { "Field": "color", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -100338,7 +100338,7 @@ }, { "name": "stechuhr", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -100410,7 +100410,7 @@ { "Field": "status", "Type": "varchar(20)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -100451,7 +100451,7 @@ }, { "name": "stechuhrdevice", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -100468,7 +100468,7 @@ { "Field": "url", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -100545,7 +100545,7 @@ }, { "name": "steuersaetze", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -100562,7 +100562,7 @@ { "Field": "bezeichnung", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -100595,7 +100595,7 @@ { "Field": "bearbeiter", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -100650,7 +100650,7 @@ { "Field": "type", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -100661,7 +100661,7 @@ { "Field": "country_code", "Type": "varchar(8)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -100694,7 +100694,7 @@ }, { "name": "stock_replenishment_list", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -100830,7 +100830,7 @@ }, { "name": "stueckliste", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -100869,7 +100869,7 @@ { "Field": "referenz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -100880,7 +100880,7 @@ { "Field": "place", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -100891,7 +100891,7 @@ { "Field": "layer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -100935,7 +100935,7 @@ { "Field": "wert", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -100946,7 +100946,7 @@ { "Field": "bauform", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -100968,7 +100968,7 @@ { "Field": "zachse", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -100979,7 +100979,7 @@ { "Field": "xpos", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -100990,7 +100990,7 @@ { "Field": "ypos", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -101001,7 +101001,7 @@ { "Field": "art", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -101031,7 +101031,7 @@ }, { "name": "stundensatz", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -101070,7 +101070,7 @@ { "Field": "typ", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -101114,7 +101114,7 @@ }, { "name": "subscription_cycle_job", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -101142,7 +101142,7 @@ { "Field": "document_type", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -101153,7 +101153,7 @@ { "Field": "job_type", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -101193,6 +101193,7 @@ }, { "Key_name": "address", + "Non_unique": "UNIQUE", "columns": [ "address_id" ] @@ -101201,7 +101202,7 @@ }, { "name": "supersearch_index_group", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -101218,7 +101219,7 @@ { "Field": "name", "Type": "varchar(16)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "UNI", "Default": null, @@ -101229,7 +101230,7 @@ { "Field": "title", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -101240,7 +101241,7 @@ { "Field": "module", "Type": "varchar(38)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -101303,7 +101304,7 @@ }, { "name": "supersearch_index_item", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -101320,7 +101321,7 @@ { "Field": "index_name", "Type": "varchar(16)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -101331,7 +101332,7 @@ { "Field": "index_id", "Type": "varchar(38)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -101353,7 +101354,7 @@ { "Field": "title", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -101364,7 +101365,7 @@ { "Field": "subtitle", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -101375,7 +101376,7 @@ { "Field": "additional_infos", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -101386,7 +101387,7 @@ { "Field": "link", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -101397,7 +101398,7 @@ { "Field": "search_words", "Type": "varchar(255)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -101477,7 +101478,7 @@ }, { "name": "supportapp", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -101538,7 +101539,7 @@ { "Field": "version", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -101549,7 +101550,7 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -101560,7 +101561,7 @@ { "Field": "status", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -101571,7 +101572,7 @@ { "Field": "phase", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -101604,7 +101605,7 @@ }, { "name": "supportapp_artikel", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -101654,7 +101655,7 @@ }, { "name": "supportapp_auftrag_check", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -101737,7 +101738,7 @@ }, { "name": "supportapp_gruppen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -101765,7 +101766,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -101798,7 +101799,7 @@ }, { "name": "supportapp_log", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -101848,7 +101849,7 @@ { "Field": "details", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -101870,7 +101871,7 @@ }, { "name": "supportapp_schritte", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -101887,7 +101888,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "''0''", @@ -101909,7 +101910,7 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -101975,7 +101976,7 @@ }, { "name": "supportapp_vorlagen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -101992,7 +101993,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -102003,7 +102004,7 @@ { "Field": "taetigkeit", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -102014,7 +102015,7 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -102036,7 +102037,7 @@ }, { "name": "survey", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -102053,7 +102054,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -102086,7 +102087,7 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -102097,7 +102098,7 @@ { "Field": "action", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -102119,7 +102120,7 @@ }, { "name": "survey_user", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -102158,7 +102159,7 @@ { "Field": "data", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -102207,7 +102208,7 @@ }, { "name": "system_disk_free", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -102298,7 +102299,7 @@ }, { "name": "systemhealth", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -102326,7 +102327,7 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -102337,7 +102338,7 @@ { "Field": "description", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -102348,7 +102349,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -102359,7 +102360,7 @@ { "Field": "message", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -102441,7 +102442,7 @@ }, { "name": "systemhealth_category", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -102458,7 +102459,7 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -102469,7 +102470,7 @@ { "Field": "description", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -102510,7 +102511,7 @@ }, { "name": "systemhealth_custom_error_lvl", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -102538,7 +102539,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -102568,7 +102569,7 @@ }, { "name": "systemhealth_event", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -102607,7 +102608,7 @@ { "Field": "doctype", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -102629,7 +102630,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -102640,7 +102641,7 @@ { "Field": "message", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -102678,7 +102679,7 @@ }, { "name": "systemhealth_notification", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -102695,7 +102696,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -102706,7 +102707,7 @@ { "Field": "email", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -102728,7 +102729,7 @@ }, { "name": "systemhealth_notification_item", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -102767,7 +102768,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -102778,7 +102779,7 @@ { "Field": "email", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -102800,7 +102801,7 @@ }, { "name": "systemlog", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -102817,7 +102818,7 @@ { "Field": "meldung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -102828,7 +102829,7 @@ { "Field": "dump", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -102839,7 +102840,7 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -102850,7 +102851,7 @@ { "Field": "action", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -102861,7 +102862,7 @@ { "Field": "bearbeiter", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -102872,7 +102873,7 @@ { "Field": "funktionsname", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -102905,7 +102906,7 @@ { "Field": "argumente", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -102938,7 +102939,7 @@ }, { "name": "systemtemplates", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -102955,7 +102956,7 @@ { "Field": "filename", "Type": "varchar(200)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -102966,7 +102967,7 @@ { "Field": "footer_icons", "Type": "varchar(200)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -102977,7 +102978,7 @@ { "Field": "category", "Type": "varchar(100)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -102988,7 +102989,7 @@ { "Field": "title", "Type": "varchar(100)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -102999,7 +103000,7 @@ { "Field": "description", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -103052,7 +103053,7 @@ }, { "name": "task_subscription", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -103110,7 +103111,7 @@ }, { "name": "task_timeline", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -103160,7 +103161,7 @@ { "Field": "content", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -103190,7 +103191,7 @@ }, { "name": "teilprojekt_geplante_zeiten", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -103240,7 +103241,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -103284,7 +103285,7 @@ }, { "name": "telefonrueckruf", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -103334,7 +103335,7 @@ { "Field": "adressetext", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -103345,7 +103346,7 @@ { "Field": "grund", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -103389,7 +103390,7 @@ { "Field": "telefonnummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -103400,7 +103401,7 @@ { "Field": "kommentar", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -103441,7 +103442,7 @@ }, { "name": "telefonrueckruf_versuche", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -103502,7 +103503,7 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -103532,7 +103533,7 @@ }, { "name": "templatemessage", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -103560,7 +103561,7 @@ { "Field": "message", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -103601,7 +103602,7 @@ }, { "name": "textvorlagen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -103618,7 +103619,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -103629,7 +103630,7 @@ { "Field": "text", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -103640,7 +103641,7 @@ { "Field": "stichwoerter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -103651,7 +103652,7 @@ { "Field": "projekt", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -103673,7 +103674,7 @@ }, { "name": "ticket", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -103690,7 +103691,7 @@ { "Field": "schluessel", "Type": "varchar(255)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -103712,7 +103713,7 @@ { "Field": "projekt", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -103723,7 +103724,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -103734,7 +103735,7 @@ { "Field": "quelle", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -103745,7 +103746,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -103767,7 +103768,7 @@ { "Field": "kunde", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -103778,7 +103779,7 @@ { "Field": "warteschlange", "Type": "varchar(255)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -103789,7 +103790,7 @@ { "Field": "mailadresse", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -103811,7 +103812,7 @@ { "Field": "betreff", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -103844,7 +103845,7 @@ { "Field": "inbearbeitung_user", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -103866,7 +103867,7 @@ { "Field": "notiz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -103899,7 +103900,7 @@ { "Field": "kommentar", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -103932,7 +103933,7 @@ { "Field": "tags", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -103997,7 +103998,7 @@ }, { "name": "ticket_category", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -104014,7 +104015,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -104069,7 +104070,7 @@ }, { "name": "ticket_header", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -104097,7 +104098,7 @@ { "Field": "type", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -104108,7 +104109,7 @@ { "Field": "value", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -104130,7 +104131,7 @@ }, { "name": "ticket_nachricht", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -104147,7 +104148,7 @@ { "Field": "ticket", "Type": "varchar(255)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -104157,8 +104158,8 @@ }, { "Field": "verfasser", - "Type": "varchar(255)", - "Collation": "utf8mb4_general_ci", + "Type": "text", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -104169,7 +104170,7 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -104180,7 +104181,7 @@ { "Field": "mail", "Type": "varchar(255)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -104213,7 +104214,7 @@ { "Field": "text", "Type": "longtext", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -104224,7 +104225,7 @@ { "Field": "textausgang", "Type": "longtext", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -104234,8 +104235,8 @@ }, { "Field": "betreff", - "Type": "varchar(255)", - "Collation": "utf8mb4_general_ci", + "Type": "text", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -104246,7 +104247,7 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -104257,7 +104258,7 @@ { "Field": "medium", "Type": "varchar(255)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -104268,7 +104269,7 @@ { "Field": "versendet", "Type": "varchar(255)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -104279,7 +104280,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -104290,7 +104291,7 @@ { "Field": "mail_cc", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -104301,7 +104302,7 @@ { "Field": "verfasser_replyto", "Type": "varchar(255)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -104312,7 +104313,7 @@ { "Field": "mail_replyto", "Type": "varchar(255)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -104352,7 +104353,7 @@ }, { "name": "ticket_regeln", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -104369,7 +104370,7 @@ { "Field": "empfaenger_email", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -104380,7 +104381,7 @@ { "Field": "sender_email", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -104391,7 +104392,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -104402,7 +104403,7 @@ { "Field": "betreff", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -104457,7 +104458,7 @@ { "Field": "warteschlange", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -104490,7 +104491,7 @@ }, { "name": "ticket_vorlage", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -104518,7 +104519,7 @@ { "Field": "vorlagenname", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -104529,7 +104530,7 @@ { "Field": "vorlage", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -104603,7 +104604,7 @@ }, { "name": "transfer_account_label", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -104631,7 +104632,7 @@ { "Field": "filter_type", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -104653,7 +104654,7 @@ }, { "name": "transfer_sellingreport_job", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -104703,7 +104704,7 @@ { "Field": "status", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'created'", @@ -104736,7 +104737,7 @@ }, { "name": "uebersetzung", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -104753,7 +104754,7 @@ { "Field": "label", "Type": "varchar(255)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -104764,7 +104765,7 @@ { "Field": "beschriftung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -104775,7 +104776,7 @@ { "Field": "sprache", "Type": "varchar(255)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -104786,7 +104787,7 @@ { "Field": "original", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -104824,7 +104825,7 @@ }, { "name": "uebertragungen_account", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -104841,7 +104842,7 @@ { "Field": "bezeichnung", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -104852,7 +104853,7 @@ { "Field": "typ", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -104885,7 +104886,7 @@ { "Field": "server", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -104896,7 +104897,7 @@ { "Field": "port", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -104907,7 +104908,7 @@ { "Field": "username", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -104918,7 +104919,7 @@ { "Field": "passwort", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -104929,7 +104930,7 @@ { "Field": "parameter1", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -104940,7 +104941,7 @@ { "Field": "parameter2", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -104951,7 +104952,7 @@ { "Field": "parameter3", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -104962,7 +104963,7 @@ { "Field": "parameter4", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -104973,7 +104974,7 @@ { "Field": "authmethod", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -104984,7 +104985,7 @@ { "Field": "publickeyfile", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -104995,7 +104996,7 @@ { "Field": "privatekeyfile", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -105006,7 +105007,7 @@ { "Field": "publickey", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -105017,7 +105018,7 @@ { "Field": "privatekey", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -105061,7 +105062,7 @@ { "Field": "bearbeiter", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -105094,7 +105095,7 @@ { "Field": "letzter_status", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -105127,7 +105128,7 @@ { "Field": "xml_pdf", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'xml'", @@ -105138,7 +105139,7 @@ { "Field": "belegtyp", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -105149,7 +105150,7 @@ { "Field": "documenttype_incoming", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -105160,7 +105161,7 @@ { "Field": "belegstatus", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -105215,7 +105216,7 @@ { "Field": "emailbody", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -105237,7 +105238,7 @@ { "Field": "xml_zusatz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -105325,7 +105326,7 @@ { "Field": "csv_codierung", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -105336,7 +105337,7 @@ { "Field": "csv_trennzeichen", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -105347,7 +105348,7 @@ { "Field": "csv_tracking", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -105358,7 +105359,7 @@ { "Field": "csv_lagerzahl", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -105369,7 +105370,7 @@ { "Field": "csv_lieferschein", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -105380,7 +105381,7 @@ { "Field": "csv_auftrag", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -105391,7 +105392,7 @@ { "Field": "csv_bestellung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -105622,7 +105623,7 @@ { "Field": "dateianhangtyp", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "''datei''", @@ -105633,7 +105634,7 @@ { "Field": "csvheader_lagerzahlen", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -105644,7 +105645,7 @@ { "Field": "csvheader_tracking", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -105710,7 +105711,7 @@ { "Field": "einstellungen_json", "Type": "mediumtext", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -105754,7 +105755,7 @@ { "Field": "sales_report_type", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -105820,7 +105821,7 @@ { "Field": "csvseparator", "Type": "varchar(4)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "';'", @@ -105831,7 +105832,7 @@ { "Field": "coding", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -105853,7 +105854,7 @@ }, { "name": "uebertragungen_account_oauth", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -105881,7 +105882,7 @@ { "Field": "client_id", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -105892,7 +105893,7 @@ { "Field": "client_secret", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -105903,7 +105904,7 @@ { "Field": "url", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -105914,7 +105915,7 @@ { "Field": "access_token", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -105955,7 +105956,7 @@ }, { "name": "uebertragungen_artikel", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -105994,7 +105995,7 @@ { "Field": "status", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -106005,7 +106006,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -106047,7 +106048,7 @@ }, { "name": "uebertragungen_dateien", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -106075,7 +106076,7 @@ { "Field": "datei", "Type": "varchar(255)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -106086,7 +106087,7 @@ { "Field": "datei_wawi", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -106097,7 +106098,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -106183,7 +106184,7 @@ }, { "name": "uebertragungen_event", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -106211,7 +106212,7 @@ { "Field": "eventname", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -106222,7 +106223,7 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -106233,7 +106234,7 @@ { "Field": "action", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -106244,7 +106245,7 @@ { "Field": "parameter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -106277,7 +106278,7 @@ { "Field": "kommentar", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -106307,7 +106308,7 @@ }, { "name": "uebertragungen_event_einstellungen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -106335,7 +106336,7 @@ { "Field": "eventname", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -106388,7 +106389,7 @@ }, { "name": "uebertragungen_fileconvert_log", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -106416,7 +106417,7 @@ { "Field": "status", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -106427,7 +106428,7 @@ { "Field": "datei", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -106438,7 +106439,7 @@ { "Field": "typ", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -106449,7 +106450,7 @@ { "Field": "parameter1", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -106460,7 +106461,7 @@ { "Field": "parameter2", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -106471,7 +106472,7 @@ { "Field": "wert", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -106504,7 +106505,7 @@ }, { "name": "uebertragungen_lagercache", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -106576,7 +106577,7 @@ }, { "name": "uebertragungen_log", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -106604,7 +106605,7 @@ { "Field": "status", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -106615,7 +106616,7 @@ { "Field": "datei", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -106626,7 +106627,7 @@ { "Field": "typ", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -106637,7 +106638,7 @@ { "Field": "parameter1", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -106648,7 +106649,7 @@ { "Field": "parameter2", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -106659,7 +106660,7 @@ { "Field": "wert", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -106700,7 +106701,7 @@ }, { "name": "uebertragungen_monitor", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -106750,7 +106751,7 @@ { "Field": "status", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -106761,7 +106762,7 @@ { "Field": "nachricht", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -106772,7 +106773,7 @@ { "Field": "element1", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -106783,7 +106784,7 @@ { "Field": "element2", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -106794,7 +106795,7 @@ { "Field": "element3", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -106816,7 +106817,7 @@ { "Field": "doctype", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -106871,7 +106872,7 @@ }, { "name": "uebertragungen_trackingnummern", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -106921,7 +106922,7 @@ }, { "name": "umsatzstatistik", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -106960,7 +106961,7 @@ { "Field": "objekt", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -106971,7 +106972,7 @@ { "Field": "belegnr", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -106982,7 +106983,7 @@ { "Field": "kundennummer", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -106993,7 +106994,7 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -107070,7 +107071,7 @@ { "Field": "waehrung", "Type": "varchar(3)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'EUR'", @@ -107114,7 +107115,7 @@ }, { "name": "unterprojekt", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -107142,7 +107143,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -107153,7 +107154,7 @@ { "Field": "verantwortlicher", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -107164,7 +107165,7 @@ { "Field": "aktiv", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -107208,7 +107209,7 @@ }, { "name": "ups", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -107236,7 +107237,7 @@ { "Field": "account_nummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -107247,7 +107248,7 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -107291,7 +107292,7 @@ }, { "name": "user", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -107308,7 +107309,7 @@ { "Field": "username", "Type": "varchar(100)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -107341,7 +107342,7 @@ { "Field": "description", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -107352,7 +107353,7 @@ { "Field": "settings", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -107385,7 +107386,7 @@ { "Field": "type", "Type": "varchar(100)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -107451,7 +107452,7 @@ { "Field": "startseite", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -107473,7 +107474,7 @@ { "Field": "hwkey", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -107495,7 +107496,7 @@ { "Field": "motppin", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -107506,7 +107507,7 @@ { "Field": "motpsecret", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -107517,7 +107518,7 @@ { "Field": "passwordmd5", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -107572,7 +107573,7 @@ { "Field": "rfidtag", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -107583,7 +107584,7 @@ { "Field": "vorlage", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -107594,7 +107595,7 @@ { "Field": "kalender_passwort", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -107660,7 +107661,7 @@ { "Field": "internebezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -107671,7 +107672,7 @@ { "Field": "hwdatablock", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -107693,7 +107694,7 @@ { "Field": "passwordsha512", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -107704,7 +107705,7 @@ { "Field": "salt", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -107726,7 +107727,7 @@ { "Field": "sprachebevorzugen", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -107737,7 +107738,7 @@ { "Field": "vergessencode", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -107770,7 +107771,7 @@ { "Field": "defaultcolor", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -107781,7 +107782,7 @@ { "Field": "passwordhash", "Type": "char(60)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -107803,7 +107804,7 @@ { "Field": "docscan_passwort", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -107825,7 +107826,7 @@ { "Field": "stechuhrdevice", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -107836,7 +107837,7 @@ { "Field": "role", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -107866,7 +107867,7 @@ }, { "name": "user_totp", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -107905,7 +107906,7 @@ { "Field": "secret", "Type": "varchar(100)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -107957,7 +107958,7 @@ }, { "name": "userkonfiguration", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -107985,7 +107986,7 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -107996,7 +107997,7 @@ { "Field": "value", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -108034,7 +108035,7 @@ }, { "name": "useronline", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -108062,7 +108063,7 @@ { "Field": "sessionid", "Type": "varchar(255)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -108073,7 +108074,7 @@ { "Field": "ip", "Type": "varchar(200)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -108117,7 +108118,7 @@ }, { "name": "userrights", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -108145,7 +108146,7 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -108156,7 +108157,7 @@ { "Field": "action", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -108197,7 +108198,7 @@ }, { "name": "uservorlage", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -108214,7 +108215,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -108225,7 +108226,7 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -108247,7 +108248,7 @@ }, { "name": "uservorlagerights", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -108275,7 +108276,7 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -108286,7 +108287,7 @@ { "Field": "action", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -108319,7 +108320,7 @@ }, { "name": "ustprf", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -108336,7 +108337,7 @@ { "Field": "adresse", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -108347,7 +108348,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -108358,7 +108359,7 @@ { "Field": "ustid", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -108369,7 +108370,7 @@ { "Field": "land", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -108380,7 +108381,7 @@ { "Field": "ort", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -108391,7 +108392,7 @@ { "Field": "plz", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -108402,7 +108403,7 @@ { "Field": "rechtsform", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -108413,7 +108414,7 @@ { "Field": "strasse", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -108424,7 +108425,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -108457,7 +108458,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -108512,7 +108513,7 @@ }, { "name": "ustprf_protokoll", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -108551,7 +108552,7 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -108562,7 +108563,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -108584,7 +108585,7 @@ { "Field": "daten", "Type": "varchar(512)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -108606,7 +108607,7 @@ }, { "name": "verbindlichkeit", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -108623,7 +108624,7 @@ { "Field": "belegnr", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -108634,7 +108635,7 @@ { "Field": "status_beleg", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -108656,7 +108657,7 @@ { "Field": "rechnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -108689,7 +108690,7 @@ { "Field": "umsatzsteuer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -108700,7 +108701,7 @@ { "Field": "ustid", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -108755,7 +108756,7 @@ { "Field": "steuersatzname3", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -108766,7 +108767,7 @@ { "Field": "steuersatzname4", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -108821,7 +108822,7 @@ { "Field": "freigabemitarbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -108887,7 +108888,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -108964,7 +108965,7 @@ { "Field": "bestellung1bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -108986,7 +108987,7 @@ { "Field": "bestellung1kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -108997,7 +108998,7 @@ { "Field": "bestellung1auftrag", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -109030,7 +109031,7 @@ { "Field": "bestellung2bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -109041,7 +109042,7 @@ { "Field": "bestellung2kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -109052,7 +109053,7 @@ { "Field": "bestellung2auftrag", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -109096,7 +109097,7 @@ { "Field": "bestellung3bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -109107,7 +109108,7 @@ { "Field": "bestellung3kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -109118,7 +109119,7 @@ { "Field": "bestellung3auftrag", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -109162,7 +109163,7 @@ { "Field": "bestellung4bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -109173,7 +109174,7 @@ { "Field": "bestellung4kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -109184,7 +109185,7 @@ { "Field": "bestellung4auftrag", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -109228,7 +109229,7 @@ { "Field": "bestellung5bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -109239,7 +109240,7 @@ { "Field": "bestellung5kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -109250,7 +109251,7 @@ { "Field": "bestellung5auftrag", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -109294,7 +109295,7 @@ { "Field": "bestellung6bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -109305,7 +109306,7 @@ { "Field": "bestellung6kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -109316,7 +109317,7 @@ { "Field": "bestellung6auftrag", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -109360,7 +109361,7 @@ { "Field": "bestellung7bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -109371,7 +109372,7 @@ { "Field": "bestellung7kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -109382,7 +109383,7 @@ { "Field": "bestellung7auftrag", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -109426,7 +109427,7 @@ { "Field": "bestellung8bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -109437,7 +109438,7 @@ { "Field": "bestellung8kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -109448,7 +109449,7 @@ { "Field": "bestellung8auftrag", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -109492,7 +109493,7 @@ { "Field": "bestellung9bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -109503,7 +109504,7 @@ { "Field": "bestellung9kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -109514,7 +109515,7 @@ { "Field": "bestellung9auftrag", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -109558,7 +109559,7 @@ { "Field": "bestellung10bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -109569,7 +109570,7 @@ { "Field": "bestellung10kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -109580,7 +109581,7 @@ { "Field": "bestellung10auftrag", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -109624,7 +109625,7 @@ { "Field": "bestellung11bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -109635,7 +109636,7 @@ { "Field": "bestellung11kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -109646,7 +109647,7 @@ { "Field": "bestellung11auftrag", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -109690,7 +109691,7 @@ { "Field": "bestellung12bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -109712,7 +109713,7 @@ { "Field": "bestellung12kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -109723,7 +109724,7 @@ { "Field": "bestellung12auftrag", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -109756,7 +109757,7 @@ { "Field": "bestellung13bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -109767,7 +109768,7 @@ { "Field": "bestellung13kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -109778,7 +109779,7 @@ { "Field": "bestellung13auftrag", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -109822,7 +109823,7 @@ { "Field": "bestellung14bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -109833,7 +109834,7 @@ { "Field": "bestellung14kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -109844,7 +109845,7 @@ { "Field": "bestellung14auftrag", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -109888,7 +109889,7 @@ { "Field": "bestellung15bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -109899,7 +109900,7 @@ { "Field": "bestellung15kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -109910,7 +109911,7 @@ { "Field": "bestellung15auftrag", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -109932,7 +109933,7 @@ { "Field": "waehrung", "Type": "varchar(3)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'EUR'", @@ -109943,7 +109944,7 @@ { "Field": "zahlungsweise", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -109965,7 +109966,7 @@ { "Field": "buha_konto1", "Type": "varchar(20)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -109976,7 +109977,7 @@ { "Field": "buha_belegfeld1", "Type": "varchar(200)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -109998,7 +109999,7 @@ { "Field": "buha_konto2", "Type": "varchar(20)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -110009,7 +110010,7 @@ { "Field": "buha_belegfeld2", "Type": "varchar(200)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -110031,7 +110032,7 @@ { "Field": "buha_konto3", "Type": "varchar(20)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -110042,7 +110043,7 @@ { "Field": "buha_belegfeld3", "Type": "varchar(200)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -110064,7 +110065,7 @@ { "Field": "buha_konto4", "Type": "varchar(20)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -110075,7 +110076,7 @@ { "Field": "buha_belegfeld4", "Type": "varchar(200)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -110097,7 +110098,7 @@ { "Field": "buha_konto5", "Type": "varchar(20)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -110108,7 +110109,7 @@ { "Field": "buha_belegfeld5", "Type": "varchar(200)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -110152,7 +110153,7 @@ { "Field": "kostenstelle", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -110163,7 +110164,7 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -110174,7 +110175,7 @@ { "Field": "sachkonto", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -110185,7 +110186,7 @@ { "Field": "art", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -110196,7 +110197,7 @@ { "Field": "verwendungszweck", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -110229,7 +110230,7 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -110317,7 +110318,7 @@ { "Field": "klaergrund", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -110350,7 +110351,7 @@ { "Field": "sprache", "Type": "varchar(25)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -110388,7 +110389,7 @@ }, { "name": "verbindlichkeit_bestellungen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -110493,7 +110494,7 @@ { "Field": "bestellung_bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -110523,7 +110524,7 @@ }, { "name": "verbindlichkeit_kontierung", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -110562,7 +110563,7 @@ { "Field": "belegfeld", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -110573,7 +110574,7 @@ { "Field": "buchungstext", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -110584,7 +110585,7 @@ { "Field": "gegenkonto", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -110595,7 +110596,7 @@ { "Field": "waehrung", "Type": "varchar(3)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -110617,7 +110618,7 @@ { "Field": "kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -110647,7 +110648,7 @@ }, { "name": "verbindlichkeit_ocr", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -110675,7 +110676,7 @@ { "Field": "property", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -110686,7 +110687,7 @@ { "Field": "search_term", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -110697,7 +110698,7 @@ { "Field": "search_direction", "Type": "varchar(5)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'right'", @@ -110719,7 +110720,7 @@ }, { "name": "verbindlichkeit_position", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -110791,7 +110792,7 @@ { "Field": "nummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -110802,7 +110803,7 @@ { "Field": "bestellnummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -110813,7 +110814,7 @@ { "Field": "waehrung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -110824,7 +110825,7 @@ { "Field": "einheit", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -110835,7 +110836,7 @@ { "Field": "vpe", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -110846,7 +110847,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -110857,7 +110858,7 @@ { "Field": "umsatzsteuer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -110868,7 +110869,7 @@ { "Field": "status", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -110879,7 +110880,7 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -110912,7 +110913,7 @@ { "Field": "steuertext", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -110923,7 +110924,7 @@ { "Field": "kostenstelle", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -110975,7 +110976,7 @@ }, { "name": "verbindlichkeit_protokoll", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -111014,7 +111015,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -111025,7 +111026,7 @@ { "Field": "grund", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -111055,7 +111056,7 @@ }, { "name": "verbindlichkeit_regelmaessig", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -111094,7 +111095,7 @@ { "Field": "typ", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": "''0''", @@ -111105,7 +111106,7 @@ { "Field": "filter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -111116,7 +111117,7 @@ { "Field": "soll", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -111127,7 +111128,7 @@ { "Field": "haben", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -111138,7 +111139,7 @@ { "Field": "gebuehr", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -111149,7 +111150,7 @@ { "Field": "waehrung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -111160,7 +111161,7 @@ { "Field": "art", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -111171,7 +111172,7 @@ { "Field": "wert", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -111182,7 +111183,7 @@ { "Field": "rechnungnr", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -111193,7 +111194,7 @@ { "Field": "verwendungszweck", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -111204,7 +111205,7 @@ { "Field": "kostenstelle", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -111215,7 +111216,7 @@ { "Field": "zahlungsweise", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -111226,7 +111227,7 @@ { "Field": "gegenkonto", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -111270,7 +111271,7 @@ }, { "name": "verbindlichkeit_regelmaessig_beleg", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -111339,7 +111340,7 @@ }, { "name": "verkaufspreise", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -111367,7 +111368,7 @@ { "Field": "objekt", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -111378,7 +111379,7 @@ { "Field": "projekt", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -111389,7 +111390,7 @@ { "Field": "adresse", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", "Default": null, @@ -111411,7 +111412,7 @@ { "Field": "waehrung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -111433,7 +111434,7 @@ { "Field": "vpe", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'1'", @@ -111477,7 +111478,7 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -111488,7 +111489,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -111532,7 +111533,7 @@ { "Field": "kundenartikelnummer", "Type": "varchar(255)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "MUL", "Default": null, @@ -111543,7 +111544,7 @@ { "Field": "art", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "''kunde''", @@ -111674,7 +111675,7 @@ }, { "name": "verkaufszahlen_chart", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -111724,7 +111725,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -111735,7 +111736,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -111779,7 +111780,7 @@ }, { "name": "verkaufszahlen_chart_projekt", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -111849,7 +111850,7 @@ }, { "name": "verrechnungsart", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -111866,7 +111867,7 @@ { "Field": "nummer", "Type": "varchar(20)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -111877,7 +111878,7 @@ { "Field": "beschreibung", "Type": "varchar(512)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -111888,7 +111889,7 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -111910,7 +111911,7 @@ }, { "name": "versand", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -111960,7 +111961,7 @@ { "Field": "versandart", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -111982,7 +111983,7 @@ { "Field": "gewicht", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -112004,7 +112005,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -112015,7 +112016,7 @@ { "Field": "versender", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -112048,7 +112049,7 @@ { "Field": "versandunternehmen", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -112059,7 +112060,7 @@ { "Field": "tracking", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -112257,7 +112258,7 @@ { "Field": "tracking_link", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -112301,7 +112302,7 @@ { "Field": "klaergrund", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -112312,7 +112313,7 @@ { "Field": "bundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -112358,7 +112359,7 @@ }, { "name": "versandarten", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -112375,7 +112376,7 @@ { "Field": "type", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -112386,7 +112387,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -112430,7 +112431,7 @@ { "Field": "modul", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -112474,7 +112475,7 @@ { "Field": "einstellungen_json", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -112529,7 +112530,7 @@ }, { "name": "versandpakete", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -112568,7 +112569,7 @@ { "Field": "tracking", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -112579,7 +112580,7 @@ { "Field": "versender", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -112590,7 +112591,7 @@ { "Field": "gewicht", "Type": "varchar(10)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -112601,7 +112602,7 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -112623,7 +112624,7 @@ }, { "name": "versandzentrum_log", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -112651,7 +112652,7 @@ { "Field": "aktion", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -112662,7 +112663,7 @@ { "Field": "wert", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -112706,7 +112707,7 @@ }, { "name": "vertreterumsatz", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -112756,7 +112757,7 @@ { "Field": "objekt", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -112767,7 +112768,7 @@ { "Field": "belegnr", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -112778,7 +112779,7 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -112855,7 +112856,7 @@ { "Field": "waehrung", "Type": "varchar(3)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'EUR'", @@ -112921,7 +112922,7 @@ }, { "name": "vorlage", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -112938,7 +112939,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -112971,7 +112972,7 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -113004,7 +113005,7 @@ }, { "name": "waage_artikel", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -113043,7 +113044,7 @@ { "Field": "beschriftung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -113120,7 +113121,7 @@ }, { "name": "waehrung_umrechnung", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -113137,7 +113138,7 @@ { "Field": "waehrung_von", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -113148,7 +113149,7 @@ { "Field": "waehrung_nach", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -113192,7 +113193,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -113203,7 +113204,7 @@ { "Field": "kommentar", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -113225,7 +113226,7 @@ }, { "name": "warteschlangen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -113242,7 +113243,7 @@ { "Field": "warteschlange", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -113253,7 +113254,7 @@ { "Field": "label", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -113305,7 +113306,7 @@ }, { "name": "wawision_uebersetzung", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -113333,7 +113334,7 @@ { "Field": "sprache", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -113344,7 +113345,7 @@ { "Field": "typ", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -113355,7 +113356,7 @@ { "Field": "original", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -113366,7 +113367,7 @@ { "Field": "uebersetzung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -113377,7 +113378,7 @@ { "Field": "typ1", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -113388,7 +113389,7 @@ { "Field": "typ2", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -113419,7 +113420,7 @@ }, { "name": "webmail", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -113447,7 +113448,7 @@ { "Field": "benutzername", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -113458,7 +113459,7 @@ { "Field": "passwort", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -113469,7 +113470,7 @@ { "Field": "server", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -113491,7 +113492,7 @@ }, { "name": "webmail_mails", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -113519,7 +113520,7 @@ { "Field": "subject", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -113530,7 +113531,7 @@ { "Field": "sender", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -113541,7 +113542,7 @@ { "Field": "cc", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -113552,7 +113553,7 @@ { "Field": "bcc", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -113563,7 +113564,7 @@ { "Field": "replyto", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -113574,7 +113575,7 @@ { "Field": "plaintext", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -113585,7 +113586,7 @@ { "Field": "htmltext", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -113629,7 +113630,7 @@ { "Field": "checksum", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -113651,7 +113652,7 @@ }, { "name": "webmail_zuordnungen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -113679,7 +113680,7 @@ { "Field": "zuordnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -113712,7 +113713,7 @@ }, { "name": "wiedervorlage", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -113762,7 +113763,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -113773,7 +113774,7 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -113784,7 +113785,7 @@ { "Field": "ergebnis", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -113828,7 +113829,7 @@ { "Field": "erinnerung_empfaenger", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -113839,7 +113840,7 @@ { "Field": "link", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -113850,7 +113851,7 @@ { "Field": "module", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -113861,7 +113862,7 @@ { "Field": "action", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -113872,7 +113873,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -114059,7 +114060,7 @@ { "Field": "color", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'#a2d624'", @@ -114097,7 +114098,7 @@ }, { "name": "wiedervorlage_aufgabe", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -114167,7 +114168,7 @@ }, { "name": "wiedervorlage_aufgabe_vorlage", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -114239,7 +114240,7 @@ { "Field": "title", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -114272,7 +114273,7 @@ { "Field": "state", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -114283,7 +114284,7 @@ { "Field": "priority", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -114294,7 +114295,7 @@ { "Field": "description", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -114316,7 +114317,7 @@ }, { "name": "wiedervorlage_board_member", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -114366,7 +114367,7 @@ }, { "name": "wiedervorlage_freifeld_inhalt", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -114413,7 +114414,7 @@ }, { "name": "wiedervorlage_freifeld_konfiguration", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -114430,7 +114431,7 @@ { "Field": "title", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -114518,7 +114519,7 @@ }, { "name": "wiedervorlage_protokoll", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -114590,7 +114591,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -114601,7 +114602,7 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -114612,7 +114613,7 @@ { "Field": "ergebnis", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -114653,7 +114654,7 @@ }, { "name": "wiedervorlage_stages", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -114670,7 +114671,7 @@ { "Field": "kurzbezeichnung", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -114681,7 +114682,7 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -114692,7 +114693,7 @@ { "Field": "hexcolor", "Type": "varchar(7)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'#a2d624'", @@ -114769,7 +114770,7 @@ }, { "name": "wiedervorlage_timeline", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -114819,7 +114820,7 @@ { "Field": "content", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -114830,7 +114831,7 @@ { "Field": "css", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -114841,7 +114842,7 @@ { "Field": "color", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -114885,7 +114886,7 @@ { "Field": "leadtype", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -114907,7 +114908,7 @@ }, { "name": "wiedervorlage_view", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -114924,7 +114925,7 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -114935,7 +114936,7 @@ { "Field": "shortname", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -114990,7 +114991,7 @@ }, { "name": "wiedervorlage_zu_aufgabe_vorlage", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -115040,7 +115041,7 @@ }, { "name": "wiki", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -115057,7 +115058,7 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "MUL", "Default": null, @@ -115068,7 +115069,7 @@ { "Field": "content", "Type": "longtext", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -115079,7 +115080,7 @@ { "Field": "lastcontent", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -115112,7 +115113,7 @@ { "Field": "language", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -115142,7 +115143,7 @@ }, { "name": "wiki_changelog", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -115170,7 +115171,7 @@ { "Field": "comment", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -115181,7 +115182,7 @@ { "Field": "created_by", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -115203,7 +115204,7 @@ { "Field": "content", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -115244,7 +115245,7 @@ }, { "name": "wiki_faq", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -115272,7 +115273,7 @@ { "Field": "question", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -115283,7 +115284,7 @@ { "Field": "answer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -115294,7 +115295,7 @@ { "Field": "created_by", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -115346,7 +115347,7 @@ }, { "name": "wiki_subscription", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -115415,7 +115416,7 @@ }, { "name": "wiki_workspace", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -115432,7 +115433,7 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "UNI", "Default": null, @@ -115443,7 +115444,7 @@ { "Field": "foldername", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -115454,7 +115455,7 @@ { "Field": "description", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -115465,7 +115466,7 @@ { "Field": "savein", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -115506,7 +115507,7 @@ }, { "name": "wizard", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -115534,7 +115535,7 @@ { "Field": "key", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -115545,7 +115546,7 @@ { "Field": "title", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -115556,7 +115557,7 @@ { "Field": "skip_link_text", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -115567,7 +115568,7 @@ { "Field": "params", "Type": "varchar(512)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -115578,7 +115579,7 @@ { "Field": "options", "Type": "varchar(512)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -115631,7 +115632,7 @@ }, { "name": "wizard_step", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -115659,7 +115660,7 @@ { "Field": "key", "Type": "varchar(32)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -115670,7 +115671,7 @@ { "Field": "link", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -115681,7 +115682,7 @@ { "Field": "title", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -115692,7 +115693,7 @@ { "Field": "caption", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -115703,7 +115704,7 @@ { "Field": "description", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -115714,7 +115715,7 @@ { "Field": "options", "Type": "varchar(512)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -115778,7 +115779,7 @@ }, { "name": "zahlungsavis", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -115839,7 +115840,7 @@ { "Field": "versendet_per", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -115850,7 +115851,7 @@ { "Field": "ersteller", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -115861,7 +115862,7 @@ { "Field": "bic", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -115872,7 +115873,7 @@ { "Field": "iban", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -115894,7 +115895,7 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -115938,7 +115939,7 @@ }, { "name": "zahlungsavis_gutschrift", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -115988,7 +115989,7 @@ }, { "name": "zahlungsavis_mailausgang", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -116060,7 +116061,7 @@ }, { "name": "zahlungsavis_rechnung", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -116110,7 +116111,7 @@ }, { "name": "zahlungsweisen", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -116127,7 +116128,7 @@ { "Field": "type", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -116138,7 +116139,7 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -116149,7 +116150,7 @@ { "Field": "freitext", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -116226,7 +116227,7 @@ { "Field": "verhalten", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'vorkasse'", @@ -116237,7 +116238,7 @@ { "Field": "modul", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -116248,7 +116249,7 @@ { "Field": "einstellungen_json", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -116270,7 +116271,7 @@ }, { "name": "zeiterfassung", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -116287,7 +116288,7 @@ { "Field": "art", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -116331,7 +116332,7 @@ { "Field": "aufgabe", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -116342,7 +116343,7 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -116364,7 +116365,7 @@ { "Field": "buchungsart", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -116375,7 +116376,7 @@ { "Field": "kostenstelle", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -116419,7 +116420,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -116430,7 +116431,7 @@ { "Field": "gps", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -116496,7 +116497,7 @@ { "Field": "ort", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -116507,7 +116508,7 @@ { "Field": "abrechnung_dokument", "Type": "varchar(1024)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -116529,7 +116530,7 @@ { "Field": "verrechnungsart", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -116551,7 +116552,7 @@ { "Field": "internerkommentar", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -116693,7 +116694,7 @@ }, { "name": "zeiterfassungvorlage", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -116710,7 +116711,7 @@ { "Field": "vorlage", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -116732,7 +116733,7 @@ { "Field": "vorlagedetail", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -116743,7 +116744,7 @@ { "Field": "art", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -116809,7 +116810,7 @@ }, { "name": "zertifikatgenerator", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -116837,7 +116838,7 @@ { "Field": "beschreibung_deutsch", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -116848,7 +116849,7 @@ { "Field": "beschreibung_englisch", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -116859,7 +116860,7 @@ { "Field": "bestell_anmerkung_deutsch", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -116870,7 +116871,7 @@ { "Field": "bestell_anmerkung_englisch", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -116881,7 +116882,7 @@ { "Field": "interne_anmerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -116947,7 +116948,7 @@ { "Field": "typ_text", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -116969,7 +116970,7 @@ { "Field": "adresse_absender", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -117002,7 +117003,7 @@ { "Field": "preis_eur", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -117013,7 +117014,7 @@ { "Field": "preis_usd", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -117035,7 +117036,7 @@ { "Field": "bearbeiter", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -117046,7 +117047,7 @@ { "Field": "preis_eur_retail", "Type": "varchar(128)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -117079,7 +117080,7 @@ }, { "name": "zolltarifnummer", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -117096,7 +117097,7 @@ { "Field": "nummer", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -117107,7 +117108,7 @@ { "Field": "beschreibung", "Type": "varchar(512)", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -117118,7 +117119,7 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", "Default": null, @@ -117140,7 +117141,7 @@ }, { "name": "zwischenlager", - "collation": "utf8mb4_general_ci", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -117157,7 +117158,7 @@ { "Field": "bearbeiter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -117201,7 +117202,7 @@ { "Field": "vpe", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -117212,7 +117213,7 @@ { "Field": "grund", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -117223,7 +117224,7 @@ { "Field": "lager_von", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -117234,7 +117235,7 @@ { "Field": "lager_nach", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -117245,7 +117246,7 @@ { "Field": "richtung", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -117267,7 +117268,7 @@ { "Field": "objekt", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -117278,7 +117279,7 @@ { "Field": "parameter", "Type": "text", - "Collation": "utf8mb4_general_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": null, @@ -117356,12 +117357,12 @@ { "name": "fibu_objekte", "type": "VIEW", - "Create": "CREATE VIEW `fibu_objekte` AS select `auftrag`.`datum` AS `datum`,'auftrag' collate utf8mb4_general_ci AS `typ`,`auftrag`.`id` AS `id`,`auftrag`.`belegnr` AS `info` from `auftrag` where `auftrag`.`belegnr` <> '' union select `rechnung`.`datum` AS `datum`,'rechnung' collate utf8mb4_general_ci AS `typ`,`rechnung`.`id` AS `id`,`rechnung`.`belegnr` AS `info` from `rechnung` where `rechnung`.`belegnr` <> '' union select `gutschrift`.`datum` AS `datum`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`belegnr` AS `belegnr` from `gutschrift` where `gutschrift`.`belegnr` <> '' union select `verbindlichkeit`.`rechnungsdatum` AS `rechnungsdatum`,'verbindlichkeit' AS `verbindlichkeit`,`verbindlichkeit`.`id` AS `id`,`verbindlichkeit`.`belegnr` AS `belegnr` from `verbindlichkeit` where `verbindlichkeit`.`belegnr` <> '' union select `kontoauszuege`.`buchung` AS `buchung`,'kontoauszuege' AS `kontoauszuege`,`kontoauszuege`.`id` AS `id`,concat(`konten`.`kurzbezeichnung`,' - ',`kontoauszuege`.`buchungstext`) AS `buchungstext` from (`kontoauszuege` left join `konten` on(`konten`.`id` = `kontoauszuege`.`konto`)) union select '' AS `datum`,'kontorahmen' AS `'kontorahmen'`,`kontorahmen`.`id` AS `id`,`kontorahmen`.`beschriftung` AS `beschriftung` from `kontorahmen`" + "Create": "CREATE VIEW `fibu_objekte` AS select `auftrag`.`datum` AS `datum`,'auftrag' AS `typ`,`auftrag`.`id` AS `id`,`auftrag`.`belegnr` AS `info` from `auftrag` where `auftrag`.`belegnr` <> '' union select `rechnung`.`datum` AS `datum`,'rechnung' AS `typ`,`rechnung`.`id` AS `id`,`rechnung`.`belegnr` AS `info` from `rechnung` where `rechnung`.`belegnr` <> '' union select `gutschrift`.`datum` AS `datum`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`belegnr` AS `belegnr` from `gutschrift` where `gutschrift`.`belegnr` <> '' union select `verbindlichkeit`.`rechnungsdatum` AS `rechnungsdatum`,'verbindlichkeit' AS `verbindlichkeit`,`verbindlichkeit`.`id` AS `id`,`verbindlichkeit`.`belegnr` AS `belegnr` from `verbindlichkeit` where `verbindlichkeit`.`belegnr` <> '' union select `kontoauszuege`.`buchung` AS `buchung`,'kontoauszuege' AS `kontoauszuege`,`kontoauszuege`.`id` AS `id`,concat(`konten`.`kurzbezeichnung`,' - ',`kontoauszuege`.`buchungstext`) AS `buchungstext` from (`kontoauszuege` left join `konten` on(`konten`.`id` = `kontoauszuege`.`konto`)) union select '' AS `datum`,'kontorahmen' AS `'kontorahmen'`,`kontorahmen`.`id` AS `id`,`kontorahmen`.`beschriftung` AS `beschriftung` from `kontorahmen`" }, { "name": "fibu_buchungen_alle", "type": "VIEW", - "Create": "CREATE VIEW `fibu_buchungen_alle` AS select `fb`.`buchungsart` AS `buchungsart`,`fb`.`typ` AS `typ`,`fb`.`id` AS `id`,if(`fibu_objekte`.`datum` <> '' collate utf8mb4_general_ci,`fibu_objekte`.`datum`,`fb`.`datum`) AS `datum`,`fb`.`gegen_typ` collate utf8mb4_general_ci AS `doc_typ`,`fb`.`gegen_id` AS `doc_id`,`fibu_objekte`.`info` AS `doc_belegnr`,`fb`.`soll` AS `betrag`,`fb`.`waehrung` AS `waehrung`,`fb`.`edit_module` collate utf8mb4_general_ci 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` <> '' collate utf8mb4_general_ci 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` <> '' collate utf8mb4_general_ci union select 'abbuchung' AS `abbuchung`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,-`gutschrift`.`soll` AS `-``openxe``.``gutschrift``.``soll```,`gutschrift`.`waehrung` AS `waehrung`,'rechnung' AS `rechnung`,`gutschrift`.`rechnungid` AS `rechnungid`,`gutschrift`.`datum` AS `datum`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id` from `gutschrift` where `gutschrift`.`rechnungid` > 0 and `gutschrift`.`belegnr` <> '' collate utf8mb4_general_ci union select 'abbuchung' AS `abbuchung`,'rechnung' AS `rechnung`,`gutschrift`.`rechnungid` AS `rechnungid`,`gutschrift`.`soll` AS `soll`,`gutschrift`.`waehrung` AS `waehrung`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`datum` AS `datum`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id` from `gutschrift` where `gutschrift`.`rechnungid` > 0 and `gutschrift`.`belegnr` <> '' collate utf8mb4_general_ci 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` <> '' collate utf8mb4_general_ci 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`.`zeit` AS `zeit`,'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`.`zeit` AS `zeit`,'fibu_buchungen' AS `fibu_buchungen`,`fibu_buchungen`.`id` AS `id` from `fibu_buchungen`) `fb` left join `fibu_objekte` on(`fb`.`gegen_typ` = `fibu_objekte`.`typ` and `fb`.`gegen_id` = `fibu_objekte`.`id`))" + "Create": "CREATE VIEW `fibu_buchungen_alle` AS select `fb`.`buchungsart` AS `buchungsart`,`fb`.`typ` AS `typ`,`fb`.`id` AS `id`,if(`fibu_objekte`.`datum` <> '',`fibu_objekte`.`datum`,`fb`.`datum`) AS `datum`,`fb`.`gegen_typ` AS `doc_typ`,`fb`.`gegen_id` AS `doc_id`,`fibu_objekte`.`info` AS `doc_belegnr`,`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 'abbuchung' AS `abbuchung`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,-`gutschrift`.`soll` AS `-``openxe``.``gutschrift``.``soll```,`gutschrift`.`waehrung` AS `waehrung`,'rechnung' AS `rechnung`,`gutschrift`.`rechnungid` AS `rechnungid`,`gutschrift`.`datum` AS `datum`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id` from `gutschrift` where `gutschrift`.`rechnungid` > 0 and `gutschrift`.`belegnr` <> '' union select 'abbuchung' AS `abbuchung`,'rechnung' AS `rechnung`,`gutschrift`.`rechnungid` AS `rechnungid`,`gutschrift`.`soll` AS `soll`,`gutschrift`.`waehrung` AS `waehrung`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`datum` AS `datum`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id` from `gutschrift` where `gutschrift`.`rechnungid` > 0 and `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`.`zeit` AS `zeit`,'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`.`zeit` AS `zeit`,'fibu_buchungen' AS `fibu_buchungen`,`fibu_buchungen`.`id` AS `id` from `fibu_buchungen`) `fb` left join `fibu_objekte` on(`fb`.`gegen_typ` = `fibu_objekte`.`typ` and `fb`.`gegen_id` = `fibu_objekte`.`id`))" } ] } From 85094921a080c787598e946ff7c2736eb9beb4a8 Mon Sep 17 00:00:00 2001 From: OpenXE <> Date: Sun, 2 Apr 2023 11:46:17 +0200 Subject: [PATCH 23/61] bugfix inverted UNIQUE parameter in db_schema and mustal --- upgrade/data/db_schema.json | 1006 +++++++++---------- vendor/mustal/mustal_mysql_upgrade_tool.php | 8 +- 2 files changed, 510 insertions(+), 504 deletions(-) diff --git a/upgrade/data/db_schema.json b/upgrade/data/db_schema.json index 6ae8dd0c..ea74a103 100644 --- a/upgrade/data/db_schema.json +++ b/upgrade/data/db_schema.json @@ -373,7 +373,7 @@ { "Key_name": "adresse", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "adresse", "artikel" @@ -592,7 +592,7 @@ { "Key_name": "rechnung", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "rechnung" ] @@ -600,7 +600,7 @@ { "Key_name": "auftrag", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "auftrag" ] @@ -3652,7 +3652,7 @@ { "Key_name": "name", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "name" ] @@ -3660,7 +3660,7 @@ { "Key_name": "projekt", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "projekt" ] @@ -3668,7 +3668,7 @@ { "Key_name": "kundennummer", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "kundennummer" ] @@ -3676,7 +3676,7 @@ { "Key_name": "lieferantennummer", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "lieferantennummer" ] @@ -3684,7 +3684,7 @@ { "Key_name": "usereditid", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "usereditid" ] @@ -3692,7 +3692,7 @@ { "Key_name": "plz", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "plz" ] @@ -3700,7 +3700,7 @@ { "Key_name": "email", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "email" ] @@ -3791,7 +3791,7 @@ { "Key_name": "adresse", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "adresse" ] @@ -3937,7 +3937,7 @@ { "Key_name": "adresse", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "adresse" ] @@ -4100,7 +4100,7 @@ { "Key_name": "filter", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "filter" ] @@ -4246,7 +4246,7 @@ { "Key_name": "filter", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "filter" ] @@ -4254,7 +4254,7 @@ { "Key_name": "gruppe", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "gruppe" ] @@ -4604,7 +4604,7 @@ { "Key_name": "adresse", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "adresse" ] @@ -4673,7 +4673,7 @@ { "Key_name": "adresse", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "adresse" ] @@ -4797,7 +4797,7 @@ { "Key_name": "adresse", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "adresse" ] @@ -4805,7 +4805,7 @@ { "Key_name": "projekt", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "projekt" ] @@ -5090,7 +5090,7 @@ { "Key_name": "name", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "name" ] @@ -5170,7 +5170,7 @@ { "Key_name": "filename", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "filename" ] @@ -5272,7 +5272,7 @@ { "Key_name": "article_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "article_id" ] @@ -5280,7 +5280,7 @@ { "Key_name": "seller_sku", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "seller_sku" ] @@ -5371,7 +5371,7 @@ { "Key_name": "shopid", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "shopid", "auftrag", @@ -5574,7 +5574,7 @@ { "Key_name": "shop_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "shop_id", "reportid" @@ -5583,7 +5583,7 @@ { "Key_name": "reporttype", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "reporttype" ] @@ -5591,7 +5591,7 @@ { "Key_name": "requestreportid", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "requestreportid" ] @@ -5599,7 +5599,7 @@ { "Key_name": "created_at", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "created_at" ] @@ -5701,7 +5701,7 @@ { "Key_name": "shop_id", "Index_type": "BTREE", - "Non_unique": "", + "Non_unique": "UNIQUE", "columns": [ "shop_id", "report_type", @@ -6192,7 +6192,7 @@ { "Key_name": "shop_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "shop_id" ] @@ -6200,7 +6200,7 @@ { "Key_name": "orderid", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "orderid" ] @@ -6456,7 +6456,7 @@ { "Key_name": "orderid", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "orderid" ] @@ -6464,7 +6464,7 @@ { "Key_name": "hash_sha1", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "hash_sha1" ] @@ -6472,7 +6472,7 @@ { "Key_name": "transaction_type", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "transaction_type" ] @@ -6480,7 +6480,7 @@ { "Key_name": "position_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "position_id" ] @@ -6659,7 +6659,7 @@ { "Key_name": "shopid", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "shopid", "orderid" @@ -9117,7 +9117,7 @@ { "Key_name": "anfrage", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "anfrage" ] @@ -9197,7 +9197,7 @@ { "Key_name": "anfrage", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "anfrage" ] @@ -10927,7 +10927,7 @@ { "Key_name": "projekt", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "projekt" ] @@ -10935,7 +10935,7 @@ { "Key_name": "adresse", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "adresse" ] @@ -10943,7 +10943,7 @@ { "Key_name": "vertriebid", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "vertriebid" ] @@ -10951,7 +10951,7 @@ { "Key_name": "status", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "status" ] @@ -10959,7 +10959,7 @@ { "Key_name": "datum", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "datum" ] @@ -10967,7 +10967,7 @@ { "Key_name": "belegnr", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "belegnr" ] @@ -10975,7 +10975,7 @@ { "Key_name": "versandart", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "versandart" ] @@ -12177,7 +12177,7 @@ { "Key_name": "angebot", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "angebot" ] @@ -12185,7 +12185,7 @@ { "Key_name": "artikel", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "artikel" ] @@ -12265,7 +12265,7 @@ { "Key_name": "angebot", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "angebot" ] @@ -12620,7 +12620,7 @@ { "Key_name": "adresse", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "adresse" ] @@ -13026,7 +13026,7 @@ { "Key_name": "uebertragung_account", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "uebertragung_account" ] @@ -13034,7 +13034,7 @@ { "Key_name": "id_ext", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "id_ext" ] @@ -13042,7 +13042,7 @@ { "Key_name": "api", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "api" ] @@ -13100,7 +13100,7 @@ { "Key_name": "key", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "key" ] @@ -13450,7 +13450,7 @@ { "Key_name": "uebertragung_account", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "uebertragung_account" ] @@ -13458,7 +13458,7 @@ { "Key_name": "parameter1int", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "parameter1int" ] @@ -13593,7 +13593,7 @@ { "Key_name": "api_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "api_id" ] @@ -13601,7 +13601,7 @@ { "Key_name": "created_at", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "created_at" ] @@ -13692,7 +13692,7 @@ { "Key_name": "datum", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "datum" ] @@ -14157,7 +14157,7 @@ { "Key_name": "projekt", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "projekt" ] @@ -14375,7 +14375,7 @@ { "Key_name": "article_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "article_id" ] @@ -14383,7 +14383,7 @@ { "Key_name": "category_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "category_id" ] @@ -14391,7 +14391,7 @@ { "Key_name": "shop_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "shop_id" ] @@ -16968,7 +16968,7 @@ { "Key_name": "projekt", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "projekt" ] @@ -16976,7 +16976,7 @@ { "Key_name": "nummer", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "nummer" ] @@ -16984,7 +16984,7 @@ { "Key_name": "adresse", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "adresse" ] @@ -16992,7 +16992,7 @@ { "Key_name": "laststorage_changed", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "laststorage_changed" ] @@ -17000,7 +17000,7 @@ { "Key_name": "laststorage_sync", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "laststorage_sync" ] @@ -17008,7 +17008,7 @@ { "Key_name": "variante_von", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "variante_von" ] @@ -17016,7 +17016,7 @@ { "Key_name": "herstellernummer", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "herstellernummer" ] @@ -17024,7 +17024,7 @@ { "Key_name": "geloescht", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "geloescht" ] @@ -17159,7 +17159,7 @@ { "Key_name": "artikel", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "artikel" ] @@ -17597,7 +17597,7 @@ { "Key_name": "artikel", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "artikel" ] @@ -17677,7 +17677,7 @@ { "Key_name": "artikel", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "artikel" ] @@ -17933,7 +17933,7 @@ { "Key_name": "artikel", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "artikel", "shop" @@ -18025,7 +18025,7 @@ { "Key_name": "lager_platz", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "lager_platz" ] @@ -18033,7 +18033,7 @@ { "Key_name": "artikel", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "artikel" ] @@ -18284,7 +18284,7 @@ { "Key_name": "shop", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "shop" ] @@ -18292,7 +18292,7 @@ { "Key_name": "artikel", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "artikel" ] @@ -18538,7 +18538,7 @@ { "Key_name": "artikel", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "artikel", "kategorie" @@ -18724,7 +18724,7 @@ { "Key_name": "artikeleigenschaften", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "artikeleigenschaften" ] @@ -18732,7 +18732,7 @@ { "Key_name": "artikel", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "artikel" ] @@ -18884,7 +18884,7 @@ { "Key_name": "id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "id" ] @@ -19063,7 +19063,7 @@ { "Key_name": "artikel", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "artikel" ] @@ -19121,7 +19121,7 @@ { "Key_name": "artikel", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "artikel" ] @@ -19526,7 +19526,7 @@ { "Key_name": "parent", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "parent" ] @@ -19711,7 +19711,7 @@ { "Key_name": "artikel", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "artikel" ] @@ -19719,7 +19719,7 @@ { "Key_name": "shopid", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "shopid" ] @@ -19727,7 +19727,7 @@ { "Key_name": "nummer", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "nummer" ] @@ -20479,7 +20479,7 @@ { "Key_name": "adresse", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "adresse" ] @@ -22875,7 +22875,7 @@ { "Key_name": "projekt", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "projekt" ] @@ -22883,7 +22883,7 @@ { "Key_name": "adresse", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "adresse" ] @@ -22891,7 +22891,7 @@ { "Key_name": "vertriebid", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "vertriebid" ] @@ -22899,7 +22899,7 @@ { "Key_name": "status", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "status" ] @@ -22907,7 +22907,7 @@ { "Key_name": "datum", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "datum" ] @@ -22915,7 +22915,7 @@ { "Key_name": "belegnr", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "belegnr" ] @@ -22923,7 +22923,7 @@ { "Key_name": "gesamtsumme", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "gesamtsumme" ] @@ -22931,7 +22931,7 @@ { "Key_name": "transaktionsnummer", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "transaktionsnummer" ] @@ -22939,7 +22939,7 @@ { "Key_name": "internet", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "internet" ] @@ -22947,7 +22947,7 @@ { "Key_name": "lieferantkdrnummer", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "lieferantkdrnummer" ] @@ -22955,7 +22955,7 @@ { "Key_name": "teillieferungvon", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "teillieferungvon" ] @@ -22963,7 +22963,7 @@ { "Key_name": "versandart", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "versandart" ] @@ -24242,7 +24242,7 @@ { "Key_name": "auftrag", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "auftrag", "artikel" @@ -24251,7 +24251,7 @@ { "Key_name": "artikel", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "artikel" ] @@ -24259,7 +24259,7 @@ { "Key_name": "auftrag_2", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "auftrag" ] @@ -24267,7 +24267,7 @@ { "Key_name": "explodiert_parent", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "explodiert_parent" ] @@ -24347,7 +24347,7 @@ { "Key_name": "auftrag", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "auftrag" ] @@ -24637,7 +24637,7 @@ { "Key_name": "doctypeid", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "doctypeid" ] @@ -24645,7 +24645,7 @@ { "Key_name": "pos", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "pos" ] @@ -24653,7 +24653,7 @@ { "Key_name": "type", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "type" ] @@ -24661,7 +24661,7 @@ { "Key_name": "type2", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "type2" ] @@ -24669,7 +24669,7 @@ { "Key_name": "wert", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "wert" ] @@ -24771,7 +24771,7 @@ { "Key_name": "doctypeid", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "doctypeid" ] @@ -26651,7 +26651,7 @@ { "Key_name": "doctype", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "doctype" ] @@ -26731,7 +26731,7 @@ { "Key_name": "doctype", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "doctype", "doctype_id", @@ -27891,7 +27891,7 @@ { "Key_name": "projekt", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "projekt" ] @@ -27899,7 +27899,7 @@ { "Key_name": "adresse", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "adresse" ] @@ -27907,7 +27907,7 @@ { "Key_name": "status", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "status" ] @@ -27915,7 +27915,7 @@ { "Key_name": "datum", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "datum" ] @@ -27923,7 +27923,7 @@ { "Key_name": "belegnr", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "belegnr" ] @@ -27931,7 +27931,7 @@ { "Key_name": "versandart", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "versandart" ] @@ -28858,7 +28858,7 @@ { "Key_name": "bestellung", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "bestellung", "artikel" @@ -28867,7 +28867,7 @@ { "Key_name": "artikel", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "artikel" ] @@ -28875,7 +28875,7 @@ { "Key_name": "bestellung_2", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "bestellung" ] @@ -28955,7 +28955,7 @@ { "Key_name": "bestellung", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "bestellung" ] @@ -29295,7 +29295,7 @@ { "Key_name": "artikel", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "artikel" ] @@ -29303,7 +29303,7 @@ { "Key_name": "user", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "user" ] @@ -29383,7 +29383,7 @@ { "Key_name": "artikel", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "artikel" ] @@ -29784,7 +29784,7 @@ { "Key_name": "tableid", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "tableid" ] @@ -29864,7 +29864,7 @@ { "Key_name": "change_log", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "change_log" ] @@ -30170,7 +30170,7 @@ { "Key_name": "doctypeid", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "doctypeid" ] @@ -30178,7 +30178,7 @@ { "Key_name": "doctype", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "doctype" ] @@ -30374,7 +30374,7 @@ { "Key_name": "user_from", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "user_from" ] @@ -30382,7 +30382,7 @@ { "Key_name": "user_to", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "user_to" ] @@ -30451,7 +30451,7 @@ { "Key_name": "user", "Index_type": "BTREE", - "Non_unique": "", + "Non_unique": "UNIQUE", "columns": [ "user", "message" @@ -30460,7 +30460,7 @@ { "Key_name": "message", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "message" ] @@ -30778,7 +30778,7 @@ { "Key_name": "cronjob_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "cronjob_id", "change_time" @@ -30870,7 +30870,7 @@ { "Key_name": "uid", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "uid", "type" @@ -31089,7 +31089,7 @@ { "Key_name": "datei", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "datei" ] @@ -31097,7 +31097,7 @@ { "Key_name": "parameter", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "parameter" ] @@ -31282,7 +31282,7 @@ { "Key_name": "datei", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "datei" ] @@ -32092,7 +32092,7 @@ { "Key_name": "document_customization_infoblock_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "document_customization_infoblock_id" ] @@ -32458,7 +32458,7 @@ { "Key_name": "adresse_to", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "adresse_to" ] @@ -32648,7 +32648,7 @@ { "Key_name": "adresse", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "adresse" ] @@ -32706,7 +32706,7 @@ { "Key_name": "gruppe", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "gruppe" ] @@ -32995,7 +32995,7 @@ { "Key_name": "adresse", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "adresse" ] @@ -33356,7 +33356,7 @@ { "Key_name": "drucker", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "drucker" ] @@ -33364,7 +33364,7 @@ { "Key_name": "user", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "user" ] @@ -34112,7 +34112,7 @@ { "Key_name": "article_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "article_id" ] @@ -34120,7 +34120,7 @@ { "Key_name": "shop_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "shop_id" ] @@ -34531,7 +34531,7 @@ { "Key_name": "shop_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "shop_id" ] @@ -34699,7 +34699,7 @@ { "Key_name": "job_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "job_id" ] @@ -34707,7 +34707,7 @@ { "Key_name": "shop_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "shop_id" ] @@ -35240,7 +35240,7 @@ { "Key_name": "ebay_staging_listing_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "ebay_staging_listing_id" ] @@ -35248,7 +35248,7 @@ { "Key_name": "ebay_staging_listing_variation_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "ebay_staging_listing_variation_id" ] @@ -35256,7 +35256,7 @@ { "Key_name": "file_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "file_id" ] @@ -35766,7 +35766,7 @@ { "Key_name": "article_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "article_id" ] @@ -35774,7 +35774,7 @@ { "Key_name": "template_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "template_id" ] @@ -35843,7 +35843,7 @@ { "Key_name": "ebay_staging_listing_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "ebay_staging_listing_id" ] @@ -35923,7 +35923,7 @@ { "Key_name": "article_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "article_id" ] @@ -35931,7 +35931,7 @@ { "Key_name": "ebay_staging_listing_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "ebay_staging_listing_id" ] @@ -36856,7 +36856,7 @@ { "Key_name": "artikel", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "artikel" ] @@ -36864,7 +36864,7 @@ { "Key_name": "adresse", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "adresse" ] @@ -36872,7 +36872,7 @@ { "Key_name": "projekt", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "projekt" ] @@ -36880,7 +36880,7 @@ { "Key_name": "bestellnummer", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "bestellnummer" ] @@ -37637,7 +37637,7 @@ { "Key_name": "webmail", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "webmail" ] @@ -37645,7 +37645,7 @@ { "Key_name": "gelesen", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "gelesen" ] @@ -37653,7 +37653,7 @@ { "Key_name": "spam", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "spam" ] @@ -37661,7 +37661,7 @@ { "Key_name": "geloescht", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "geloescht" ] @@ -37669,7 +37669,7 @@ { "Key_name": "antworten", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "antworten" ] @@ -37677,7 +37677,7 @@ { "Key_name": "warteschlange", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "warteschlange" ] @@ -37685,7 +37685,7 @@ { "Key_name": "adresse", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "adresse" ] @@ -37693,7 +37693,7 @@ { "Key_name": "checksum", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "checksum" ] @@ -38990,7 +38990,7 @@ { "Key_name": "doctype", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "doctype" ] @@ -38998,7 +38998,7 @@ { "Key_name": "doctype_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "doctype_id" ] @@ -39006,7 +39006,7 @@ { "Key_name": "price_type", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "price_type" ] @@ -41151,7 +41151,7 @@ { "Key_name": "kennung", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "kennung" ] @@ -41408,7 +41408,7 @@ { "Key_name": "free_article_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "free_article_id" ] @@ -41416,7 +41416,7 @@ { "Key_name": "order_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "order_id" ] @@ -41965,7 +41965,7 @@ { "Key_name": "goodspostingdocument_position_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "goodspostingdocument_position_id" ] @@ -42133,7 +42133,7 @@ { "Key_name": "goodspostingdocument_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "goodspostingdocument_id" ] @@ -42213,7 +42213,7 @@ { "Key_name": "goodspostingdocument_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "goodspostingdocument_id" ] @@ -42282,7 +42282,7 @@ { "Key_name": "google_account_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "google_account_id" ] @@ -42351,7 +42351,7 @@ { "Key_name": "user_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "user_id" ] @@ -42470,7 +42470,7 @@ { "Key_name": "google_account_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "google_account_id" ] @@ -42732,7 +42732,7 @@ { "Key_name": "event_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "event_id" ] @@ -43958,7 +43958,7 @@ { "Key_name": "gruppe", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "gruppe" ] @@ -44038,7 +44038,7 @@ { "Key_name": "lieferschein", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "lieferschein" ] @@ -44046,7 +44046,7 @@ { "Key_name": "auftrag", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "auftrag" ] @@ -44054,7 +44054,7 @@ { "Key_name": "user", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "user" ] @@ -45432,7 +45432,7 @@ { "Key_name": "projekt", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "projekt" ] @@ -45440,7 +45440,7 @@ { "Key_name": "adresse", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "adresse" ] @@ -45448,7 +45448,7 @@ { "Key_name": "vertriebid", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "vertriebid" ] @@ -45456,7 +45456,7 @@ { "Key_name": "status", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "status" ] @@ -45464,7 +45464,7 @@ { "Key_name": "datum", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "datum" ] @@ -45472,7 +45472,7 @@ { "Key_name": "belegnr", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "belegnr" ] @@ -45480,7 +45480,7 @@ { "Key_name": "versandart", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "versandart" ] @@ -46627,7 +46627,7 @@ { "Key_name": "gutschrift", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "gutschrift" ] @@ -46635,7 +46635,7 @@ { "Key_name": "artikel", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "artikel" ] @@ -46715,7 +46715,7 @@ { "Key_name": "gutschrift", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "gutschrift" ] @@ -46806,7 +46806,7 @@ { "Key_name": "name", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "name" ] @@ -46814,7 +46814,7 @@ { "Key_name": "alias", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "alias" ] @@ -47049,7 +47049,7 @@ { "Key_name": "module", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "module" ] @@ -47140,7 +47140,7 @@ { "Key_name": "module", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "module" ] @@ -47408,7 +47408,7 @@ { "Key_name": "hook", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "hook" ] @@ -47532,7 +47532,7 @@ { "Key_name": "status", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "status" ] @@ -47540,7 +47540,7 @@ { "Key_name": "user_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "user_id" ] @@ -47548,7 +47548,7 @@ { "Key_name": "template_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "template_id" ] @@ -48631,7 +48631,7 @@ { "Key_name": "inventur", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "inventur", "artikel" @@ -48712,7 +48712,7 @@ { "Key_name": "inventur", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "inventur" ] @@ -49184,7 +49184,7 @@ { "Key_name": "adresse", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "adresse" ] @@ -49314,7 +49314,7 @@ { "Key_name": "kalendergruppe", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "kalendergruppe" ] @@ -49322,7 +49322,7 @@ { "Key_name": "adresse", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "adresse" ] @@ -49487,7 +49487,7 @@ { "Key_name": "userid", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "userid" ] @@ -49495,7 +49495,7 @@ { "Key_name": "event", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "event" ] @@ -49850,7 +49850,7 @@ { "Key_name": "datum", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "datum" ] @@ -50361,7 +50361,7 @@ { "Key_name": "adresse", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "adresse" ] @@ -51019,7 +51019,7 @@ { "Key_name": "projekt", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "projekt" ] @@ -51484,7 +51484,7 @@ { "Key_name": "konto", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "konto" ] @@ -51492,7 +51492,7 @@ { "Key_name": "parent", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "parent" ] @@ -51500,7 +51500,7 @@ { "Key_name": "gegenkonto", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "gegenkonto" ] @@ -51635,7 +51635,7 @@ { "Key_name": "kontoauszuege", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "kontoauszuege" ] @@ -51643,7 +51643,7 @@ { "Key_name": "parameter", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "parameter" ] @@ -51789,7 +51789,7 @@ { "Key_name": "kontoauszuege", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "kontoauszuege" ] @@ -51797,7 +51797,7 @@ { "Key_name": "parameter", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "parameter" ] @@ -52541,7 +52541,7 @@ { "Key_name": "group_table", "Index_type": "BTREE", - "Non_unique": "", + "Non_unique": "UNIQUE", "columns": [ "group_table" ] @@ -52621,7 +52621,7 @@ { "Key_name": "label_type_id", "Index_type": "BTREE", - "Non_unique": "", + "Non_unique": "UNIQUE", "columns": [ "label_type_id", "reference_table", @@ -52631,7 +52631,7 @@ { "Key_name": "label_type_id_2", "Index_type": "BTREE", - "Non_unique": "", + "Non_unique": "UNIQUE", "columns": [ "label_type_id", "reference_table", @@ -52641,7 +52641,7 @@ { "Key_name": "label_type_id_3", "Index_type": "BTREE", - "Non_unique": "", + "Non_unique": "UNIQUE", "columns": [ "label_type_id", "reference_table", @@ -52651,7 +52651,7 @@ { "Key_name": "label_type_id_4", "Index_type": "BTREE", - "Non_unique": "", + "Non_unique": "UNIQUE", "columns": [ "label_type_id", "reference_table", @@ -52661,7 +52661,7 @@ { "Key_name": "label_type_id_5", "Index_type": "BTREE", - "Non_unique": "", + "Non_unique": "UNIQUE", "columns": [ "label_type_id", "reference_table", @@ -52671,7 +52671,7 @@ { "Key_name": "label_type_id_6", "Index_type": "BTREE", - "Non_unique": "", + "Non_unique": "UNIQUE", "columns": [ "label_type_id", "reference_table", @@ -52775,7 +52775,7 @@ { "Key_name": "type", "Index_type": "BTREE", - "Non_unique": "", + "Non_unique": "UNIQUE", "columns": [ "type" ] @@ -53230,7 +53230,7 @@ { "Key_name": "artikel", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "artikel" ] @@ -53238,7 +53238,7 @@ { "Key_name": "adresse", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "adresse" ] @@ -53351,7 +53351,7 @@ { "Key_name": "lager_platz", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "lager_platz" ] @@ -53359,7 +53359,7 @@ { "Key_name": "artikel", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "artikel" ] @@ -53599,7 +53599,7 @@ { "Key_name": "lager_platz", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "lager_platz" ] @@ -53607,7 +53607,7 @@ { "Key_name": "artikel", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "artikel" ] @@ -53852,7 +53852,7 @@ { "Key_name": "lager", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "lager" ] @@ -54009,7 +54009,7 @@ { "Key_name": "artikel", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "artikel" ] @@ -54017,7 +54017,7 @@ { "Key_name": "lager_platz", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "lager_platz" ] @@ -54378,7 +54378,7 @@ { "Key_name": "adresse", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "adresse", "artikel" @@ -54387,7 +54387,7 @@ { "Key_name": "objekt", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "objekt" ] @@ -54594,7 +54594,7 @@ { "Key_name": "artikel", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "artikel", "lager_platz" @@ -54675,7 +54675,7 @@ { "Key_name": "artikel", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "artikel" ] @@ -54876,7 +54876,7 @@ { "Key_name": "artikel", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "artikel" ] @@ -54884,7 +54884,7 @@ { "Key_name": "datum", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "datum" ] @@ -55565,7 +55565,7 @@ { "Key_name": "layoutvorlage", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "layoutvorlage" ] @@ -55876,7 +55876,7 @@ { "Key_name": "adresse", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "adresse" ] @@ -56914,7 +56914,7 @@ { "Key_name": "projekt", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "projekt" ] @@ -56922,7 +56922,7 @@ { "Key_name": "adresse", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "adresse" ] @@ -56930,7 +56930,7 @@ { "Key_name": "auftragid", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "auftragid" ] @@ -56938,7 +56938,7 @@ { "Key_name": "land", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "land" ] @@ -56946,7 +56946,7 @@ { "Key_name": "status", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "status" ] @@ -56954,7 +56954,7 @@ { "Key_name": "datum", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "datum" ] @@ -56962,7 +56962,7 @@ { "Key_name": "belegnr", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "belegnr" ] @@ -56970,7 +56970,7 @@ { "Key_name": "keinerechnung", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "keinerechnung" ] @@ -56978,7 +56978,7 @@ { "Key_name": "versandart", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "versandart" ] @@ -57872,7 +57872,7 @@ { "Key_name": "lieferschein", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "lieferschein" ] @@ -57880,7 +57880,7 @@ { "Key_name": "artikel", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "artikel" ] @@ -57888,7 +57888,7 @@ { "Key_name": "auftrag_position_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "auftrag_position_id" ] @@ -57968,7 +57968,7 @@ { "Key_name": "lieferschein", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "lieferschein" ] @@ -58191,7 +58191,7 @@ { "Key_name": "empfaengerland", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "empfaengerland" ] @@ -58282,7 +58282,7 @@ { "Key_name": "empfaengerland", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "empfaengerland" ] @@ -58290,7 +58290,7 @@ { "Key_name": "artikel", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "artikel" ] @@ -58851,7 +58851,7 @@ { "Key_name": "shopexport_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "shopexport_id" ] @@ -59257,7 +59257,7 @@ { "Key_name": "module", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "module" ] @@ -59265,7 +59265,7 @@ { "Key_name": "action", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "action" ] @@ -60122,7 +60122,7 @@ { "Key_name": "matrix_article_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "matrix_article_id", "hash" @@ -60192,7 +60192,7 @@ { "Key_name": "matrix_article_id", "Index_type": "BTREE", - "Non_unique": "", + "Non_unique": "UNIQUE", "columns": [ "matrix_article_id" ] @@ -60454,7 +60454,7 @@ { "Key_name": "artikel", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "artikel" ] @@ -60738,7 +60738,7 @@ { "Key_name": "gruppe", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "gruppe" ] @@ -60796,7 +60796,7 @@ { "Key_name": "option_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "option_id" ] @@ -60804,7 +60804,7 @@ { "Key_name": "artikel", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "artikel" ] @@ -61055,7 +61055,7 @@ { "Key_name": "doctypeid", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "doctypeid" ] @@ -61063,7 +61063,7 @@ { "Key_name": "doctype", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "doctype" ] @@ -61947,7 +61947,7 @@ { "Key_name": "adresse", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "adresse" ] @@ -61955,7 +61955,7 @@ { "Key_name": "datum", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "datum" ] @@ -62753,7 +62753,7 @@ { "Key_name": "module", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "module", "action" @@ -62917,7 +62917,7 @@ { "Key_name": "created_date", "Index_type": "BTREE", - "Non_unique": "", + "Non_unique": "UNIQUE", "columns": [ "created_date", "module", @@ -63043,7 +63043,7 @@ { "Key_name": "user_id", "Index_type": "BTREE", - "Non_unique": "", + "Non_unique": "UNIQUE", "columns": [ "user_id", "uid", @@ -63386,7 +63386,7 @@ { "Key_name": "user_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "user_id" ] @@ -63477,7 +63477,7 @@ { "Key_name": "created_at", "Index_type": "BTREE", - "Non_unique": "", + "Non_unique": "UNIQUE", "columns": [ "created_at", "object_type", @@ -63604,7 +63604,7 @@ { "Key_name": "lager_platz", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "lager_platz" ] @@ -63612,7 +63612,7 @@ { "Key_name": "parameter", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "parameter" ] @@ -63620,7 +63620,7 @@ { "Key_name": "artikel", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "artikel" ] @@ -63816,7 +63816,7 @@ { "Key_name": "adresse", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "adresse" ] @@ -63940,7 +63940,7 @@ { "Key_name": "shop_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "shop_id" ] @@ -63948,7 +63948,7 @@ { "Key_name": "extid", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "extid" ] @@ -64972,7 +64972,7 @@ { "Key_name": "returnorder_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "returnorder_id" ] @@ -64980,7 +64980,7 @@ { "Key_name": "liabilitiy_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "liability_id" ] @@ -64988,7 +64988,7 @@ { "Key_name": "payment_transaction_group_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "payment_transaction_group_id" ] @@ -64996,7 +64996,7 @@ { "Key_name": "payment_account_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "payment_account_id" ] @@ -65076,7 +65076,7 @@ { "Key_name": "payment_account_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "payment_account_id" ] @@ -65222,7 +65222,7 @@ { "Key_name": "user_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "user_id" ] @@ -65230,7 +65230,7 @@ { "Key_name": "returnorder_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "returnorder_id" ] @@ -65321,7 +65321,7 @@ { "Key_name": "paymentaccount_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "paymentaccount_id", "status" @@ -65380,7 +65380,7 @@ { "Key_name": "paymentaccount_id", "Index_type": "BTREE", - "Non_unique": "", + "Non_unique": "UNIQUE", "columns": [ "paymentaccount_id", "hour" @@ -65472,7 +65472,7 @@ { "Key_name": "paymentaccount_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "paymentaccount_id" ] @@ -65651,7 +65651,7 @@ { "Key_name": "table_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "table_id" ] @@ -65659,7 +65659,7 @@ { "Key_name": "schreibschutz", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "schreibschutz" ] @@ -65988,7 +65988,7 @@ { "Key_name": "pinwand", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "pinwand", "user" @@ -66345,7 +66345,7 @@ { "Key_name": "projekt", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "projekt" ] @@ -66712,7 +66712,7 @@ { "Key_name": "datum", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "datum" ] @@ -66720,7 +66720,7 @@ { "Key_name": "projekt", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "projekt" ] @@ -68352,7 +68352,7 @@ { "Key_name": "preisanfrage", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "preisanfrage" ] @@ -70265,7 +70265,7 @@ { "Key_name": "adresse", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "adresse" ] @@ -70273,7 +70273,7 @@ { "Key_name": "auftragid", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "auftragid" ] @@ -70441,7 +70441,7 @@ { "Key_name": "produktion", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "produktion" ] @@ -70565,7 +70565,7 @@ { "Key_name": "produktion_arbeitsanweisung", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "produktion_arbeitsanweisung" ] @@ -70573,7 +70573,7 @@ { "Key_name": "produktion", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "produktion" ] @@ -70741,7 +70741,7 @@ { "Key_name": "produktion", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "produktion" ] @@ -70854,7 +70854,7 @@ { "Key_name": "produktion", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "produktion" ] @@ -70862,7 +70862,7 @@ { "Key_name": "baugruppe", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "baugruppe" ] @@ -70870,7 +70870,7 @@ { "Key_name": "charge", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "charge" ] @@ -71016,7 +71016,7 @@ { "Key_name": "produktion", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "produktion" ] @@ -71024,7 +71024,7 @@ { "Key_name": "artikel", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "artikel" ] @@ -71126,7 +71126,7 @@ { "Key_name": "produktion", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "produktion" ] @@ -71360,7 +71360,7 @@ { "Key_name": "produktion", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "produktion" ] @@ -71561,7 +71561,7 @@ { "Key_name": "funktionsprotokoll", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "funktionsprotokoll" ] @@ -72378,7 +72378,7 @@ { "Key_name": "produktion", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "produktion" ] @@ -72386,7 +72386,7 @@ { "Key_name": "artikel", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "artikel" ] @@ -72394,7 +72394,7 @@ { "Key_name": "explodiert_parent", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "explodiert_parent" ] @@ -72474,7 +72474,7 @@ { "Key_name": "produktion", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "produktion" ] @@ -72598,7 +72598,7 @@ { "Key_name": "baugruppe", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "baugruppe" ] @@ -75468,7 +75468,7 @@ { "Key_name": "proformarechnung", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "proformarechnung" ] @@ -79613,7 +79613,7 @@ { "Key_name": "abkuerzung", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "abkuerzung" ] @@ -79621,7 +79621,7 @@ { "Key_name": "kunde", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "kunde" ] @@ -80368,7 +80368,7 @@ { "Key_name": "gruppe", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "gruppe" ] @@ -80376,7 +80376,7 @@ { "Key_name": "artikel", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "artikel" ] @@ -80384,7 +80384,7 @@ { "Key_name": "adresse", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "adresse" ] @@ -80508,7 +80508,7 @@ { "Key_name": "userid", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "userid" ] @@ -81095,7 +81095,7 @@ { "Key_name": "parameter", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "parameter" ] @@ -81153,7 +81153,7 @@ { "Key_name": "shop_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "shop_id" ] @@ -81835,7 +81835,7 @@ { "Key_name": "receiptdocument_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "receiptdocument_id" ] @@ -81981,7 +81981,7 @@ { "Key_name": "receiptdocument_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "receiptdocument_id" ] @@ -83491,7 +83491,7 @@ { "Key_name": "projekt", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "projekt" ] @@ -83499,7 +83499,7 @@ { "Key_name": "adresse", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "adresse" ] @@ -83507,7 +83507,7 @@ { "Key_name": "auftragid", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "auftragid" ] @@ -83515,7 +83515,7 @@ { "Key_name": "status", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "status" ] @@ -83523,7 +83523,7 @@ { "Key_name": "datum", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "datum" ] @@ -83531,7 +83531,7 @@ { "Key_name": "belegnr", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "belegnr" ] @@ -83539,7 +83539,7 @@ { "Key_name": "soll", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "soll" ] @@ -83547,7 +83547,7 @@ { "Key_name": "zahlungsstatus", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "zahlungsstatus" ] @@ -83555,7 +83555,7 @@ { "Key_name": "provdatum", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "provdatum" ] @@ -83563,7 +83563,7 @@ { "Key_name": "lieferschein", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "lieferschein" ] @@ -83571,7 +83571,7 @@ { "Key_name": "versandart", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "versandart" ] @@ -84751,7 +84751,7 @@ { "Key_name": "rechnung", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "rechnung" ] @@ -84759,7 +84759,7 @@ { "Key_name": "artikel", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "artikel" ] @@ -84767,7 +84767,7 @@ { "Key_name": "auftrag_position_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "auftrag_position_id" ] @@ -84847,7 +84847,7 @@ { "Key_name": "rechnung", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "rechnung" ] @@ -85879,7 +85879,7 @@ { "Key_name": "reisekosten", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "reisekosten" ] @@ -85959,7 +85959,7 @@ { "Key_name": "reisekosten", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "reisekosten" ] @@ -88232,7 +88232,7 @@ { "Key_name": "adresse", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "adresse" ] @@ -88240,7 +88240,7 @@ { "Key_name": "status", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "status" ] @@ -88248,7 +88248,7 @@ { "Key_name": "versandart", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "versandart" ] @@ -89131,7 +89131,7 @@ { "Key_name": "retoure", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "retoure" ] @@ -89211,7 +89211,7 @@ { "Key_name": "retoure", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "retoure" ] @@ -89302,7 +89302,7 @@ { "Key_name": "delivery_note_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "delivery_note_id" ] @@ -89916,7 +89916,7 @@ { "Key_name": "adresse", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "adresse" ] @@ -90239,7 +90239,7 @@ { "Key_name": "rmakategorie", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "rmakategorie" ] @@ -90529,7 +90529,7 @@ { "Key_name": "lieferschein_position_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "lieferschein_position_id" ] @@ -90537,7 +90537,7 @@ { "Key_name": "auftrag_position_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "auftrag_position_id" ] @@ -90545,7 +90545,7 @@ { "Key_name": "rechnung", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "rechnung" ] @@ -91447,7 +91447,7 @@ { "Key_name": "nummer", "Index_type": "BTREE", - "Non_unique": "", + "Non_unique": "UNIQUE", "columns": [ "nummer" ] @@ -92865,7 +92865,7 @@ { "Key_name": "shop", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "shop" ] @@ -92967,7 +92967,7 @@ { "Key_name": "shopid", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "shopid", "artikel" @@ -93336,7 +93336,7 @@ { "Key_name": "shop", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "shop" ] @@ -93664,7 +93664,7 @@ { "Key_name": "shop", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "shop" ] @@ -93672,7 +93672,7 @@ { "Key_name": "kategorie", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "kategorie" ] @@ -93934,7 +93934,7 @@ { "Key_name": "shopid", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "shopid", "typ", @@ -94039,7 +94039,7 @@ { "Key_name": "shop", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "shop" ] @@ -94047,7 +94047,7 @@ { "Key_name": "tabelle", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "tabelle" ] @@ -94055,7 +94055,7 @@ { "Key_name": "intid", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "intid" ] @@ -94588,7 +94588,7 @@ { "Key_name": "voucher_id", "Index_type": "BTREE", - "Non_unique": "", + "Non_unique": "UNIQUE", "columns": [ "voucher_id" ] @@ -94668,7 +94668,7 @@ { "Key_name": "shop", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "shop" ] @@ -94676,7 +94676,7 @@ { "Key_name": "auftrag", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "auftrag" ] @@ -95197,7 +95197,7 @@ { "Key_name": "orderid", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "orderid" ] @@ -95409,7 +95409,7 @@ { "Key_name": "shopid", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "shopid" ] @@ -95941,7 +95941,7 @@ { "Key_name": "shop_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "shop_id" ] @@ -95949,7 +95949,7 @@ { "Key_name": "article_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "article_id" ] @@ -95957,7 +95957,7 @@ { "Key_name": "sku", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "sku" ] @@ -95965,7 +95965,7 @@ { "Key_name": "asin", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "asin" ] @@ -96133,7 +96133,7 @@ { "Key_name": "browsenodeid", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "browsenodeid" ] @@ -96141,7 +96141,7 @@ { "Key_name": "parent_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "parent_id" ] @@ -96254,7 +96254,7 @@ { "Key_name": "name", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "name" ] @@ -96262,7 +96262,7 @@ { "Key_name": "node_de", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "node_de" ] @@ -96364,7 +96364,7 @@ { "Key_name": "shop_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "shop_id" ] @@ -96372,7 +96372,7 @@ { "Key_name": "creditnote_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "creditnote_id" ] @@ -96507,7 +96507,7 @@ { "Key_name": "shop_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "shop_id", "feed_submission_id" @@ -96643,7 +96643,7 @@ { "Key_name": "shop_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "shop_id" ] @@ -96734,7 +96734,7 @@ { "Key_name": "shopimporter_amazon_flatfile_article_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "shopimporter_amazon_flatfile_article_id" ] @@ -96742,7 +96742,7 @@ { "Key_name": "file_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "file_id" ] @@ -96811,7 +96811,7 @@ { "Key_name": "shopimporter_amazon_flatfile_article_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "shopimporter_amazon_flatfile_article_id" ] @@ -96913,7 +96913,7 @@ { "Key_name": "name", "Index_type": "BTREE", - "Non_unique": "", + "Non_unique": "UNIQUE", "columns": [ "name" ] @@ -96960,7 +96960,7 @@ { "Key_name": "fieldname", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "fieldname" ] @@ -97128,7 +97128,7 @@ { "Key_name": "orderid", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "orderid" ] @@ -97373,7 +97373,7 @@ { "Key_name": "shop_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "shop_id" ] @@ -97381,7 +97381,7 @@ { "Key_name": "orderid", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "orderid" ] @@ -97956,7 +97956,7 @@ { "Key_name": "article_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "article_id" ] @@ -97964,7 +97964,7 @@ { "Key_name": "seller_sku", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "seller_sku" ] @@ -98033,7 +98033,7 @@ { "Key_name": "shop_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "shop_id" ] @@ -98113,7 +98113,7 @@ { "Key_name": "shop_id", "Index_type": "BTREE", - "Non_unique": "", + "Non_unique": "UNIQUE", "columns": [ "shop_id", "orderid", @@ -98206,7 +98206,7 @@ { "Key_name": "shop_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "shop_id" ] @@ -98214,7 +98214,7 @@ { "Key_name": "status", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "status" ] @@ -98316,7 +98316,7 @@ { "Key_name": "orderid", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "orderid" ] @@ -98462,7 +98462,7 @@ { "Key_name": "shop_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "shop_id" ] @@ -98470,7 +98470,7 @@ { "Key_name": "recommendationid", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "recommendationid" ] @@ -98605,7 +98605,7 @@ { "Key_name": "shop_id", "Index_type": "BTREE", - "Non_unique": "", + "Non_unique": "UNIQUE", "columns": [ "shop_id", "report_type", @@ -98742,7 +98742,7 @@ { "Key_name": "shop_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "shop_id", "type" @@ -98751,7 +98751,7 @@ { "Key_name": "shopimporter_amazon_aufrufe_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "shopimporter_amazon_aufrufe_id" ] @@ -98759,7 +98759,7 @@ { "Key_name": "status", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "status" ] @@ -98828,7 +98828,7 @@ { "Key_name": "shop_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "shop_id" ] @@ -98836,7 +98836,7 @@ { "Key_name": "updated_at", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "updated_at" ] @@ -99004,7 +99004,7 @@ { "Key_name": "shop_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "shop_id" ] @@ -99084,7 +99084,7 @@ { "Key_name": "shop_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "shop_id", "type" @@ -99209,7 +99209,7 @@ { "Key_name": "enumeration_type", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "enumeration_type" ] @@ -99217,7 +99217,7 @@ { "Key_name": "element_name", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "element_name" ] @@ -99330,7 +99330,7 @@ { "Key_name": "shop", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "shop" ] @@ -99338,7 +99338,7 @@ { "Key_name": "extid", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "extid" ] @@ -99727,7 +99727,7 @@ { "Key_name": "snap_hash", "Index_type": "BTREE", - "Non_unique": "", + "Non_unique": "UNIQUE", "columns": [ "snap_hash" ] @@ -99962,7 +99962,7 @@ { "Key_name": "shop_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "shop_id" ] @@ -100031,7 +100031,7 @@ { "Key_name": "order_reference", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "order_reference" ] @@ -100039,7 +100039,7 @@ { "Key_name": "order_shipment", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "order_shipment" ] @@ -100130,7 +100130,7 @@ { "Key_name": "shop_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "shop_id" ] @@ -100442,7 +100442,7 @@ { "Key_name": "datum", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "datum" ] @@ -100820,7 +100820,7 @@ { "Key_name": "article_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "article_id", "is_replenishment" @@ -101022,7 +101022,7 @@ { "Key_name": "stuecklistevonartikel", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "stuecklistevonartikel" ] @@ -101193,7 +101193,7 @@ }, { "Key_name": "address", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "address_id" ] @@ -101295,7 +101295,7 @@ { "Key_name": "name", "Index_type": "BTREE", - "Non_unique": "", + "Non_unique": "UNIQUE", "columns": [ "name" ] @@ -101452,7 +101452,7 @@ { "Key_name": "index_identifier", "Index_type": "BTREE", - "Non_unique": "", + "Non_unique": "UNIQUE", "columns": [ "index_name", "index_id" @@ -101461,7 +101461,7 @@ { "Key_name": "project_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "project_id" ] @@ -101469,7 +101469,7 @@ { "Key_name": "FullText", "Index_type": "FULLTEXT", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "search_words" ] @@ -102191,7 +102191,7 @@ { "Key_name": "survey_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "survey_id" ] @@ -102199,7 +102199,7 @@ { "Key_name": "user_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "user_id" ] @@ -102290,7 +102290,7 @@ { "Key_name": "created_at", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "created_at" ] @@ -102425,7 +102425,7 @@ { "Key_name": "systemhealth_category_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "systemhealth_category_id" ] @@ -102433,7 +102433,7 @@ { "Key_name": "name", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "name" ] @@ -102502,7 +102502,7 @@ { "Key_name": "name", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "name" ] @@ -102560,7 +102560,7 @@ { "Key_name": "systemhealth_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "systemhealth_id" ] @@ -102662,7 +102662,7 @@ { "Key_name": "systemhealth_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "systemhealth_id" ] @@ -102670,7 +102670,7 @@ { "Key_name": "created_at", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "created_at" ] @@ -103043,7 +103043,7 @@ { "Key_name": "system_pkey", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "id", "hidden" @@ -103102,7 +103102,7 @@ { "Key_name": "task_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "task_id" ] @@ -103182,7 +103182,7 @@ { "Key_name": "task_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "task_id" ] @@ -103433,7 +103433,7 @@ { "Key_name": "rueckrufvon", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "rueckrufvon" ] @@ -103524,7 +103524,7 @@ { "Key_name": "telefonrueckruf", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "telefonrueckruf" ] @@ -103593,7 +103593,7 @@ { "Key_name": "user", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "user" ] @@ -103965,7 +103965,7 @@ { "Key_name": "schluessel", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "schluessel" ] @@ -103973,7 +103973,7 @@ { "Key_name": "service", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "service" ] @@ -103981,7 +103981,7 @@ { "Key_name": "adresse", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "adresse" ] @@ -103989,7 +103989,7 @@ { "Key_name": "warteschlange", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "warteschlange" ] @@ -104334,7 +104334,7 @@ { "Key_name": "ticket", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "ticket" ] @@ -104342,7 +104342,7 @@ { "Key_name": "FullText", "Index_type": "FULLTEXT", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "betreff", "verfasser", @@ -104595,7 +104595,7 @@ { "Key_name": "ticket_category_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "ticket_category_id" ] @@ -104808,7 +104808,7 @@ { "Key_name": "sprache", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "sprache" ] @@ -104816,7 +104816,7 @@ { "Key_name": "label", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "label" ] @@ -105947,7 +105947,7 @@ { "Key_name": "uebertragungen_account_id", "Index_type": "BTREE", - "Non_unique": "", + "Non_unique": "UNIQUE", "columns": [ "uebertragungen_account_id" ] @@ -106038,7 +106038,7 @@ { "Key_name": "uebertragungen_account", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "uebertragungen_account", "artikel" @@ -106174,7 +106174,7 @@ { "Key_name": "uebertragung_account", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "uebertragung_account", "datei" @@ -106299,7 +106299,7 @@ { "Key_name": "uebertragung_account", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "uebertragung_account" ] @@ -106379,7 +106379,7 @@ { "Key_name": "uebertragung_account", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "uebertragung_account", "eventname" @@ -106692,7 +106692,7 @@ { "Key_name": "uebertragungen_account", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "uebertragungen_account" ] @@ -106860,7 +106860,7 @@ { "Key_name": "uebertragungen_account", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "uebertragungen_account", "datei", @@ -107858,7 +107858,7 @@ { "Key_name": "adresse", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "adresse" ] @@ -107949,7 +107949,7 @@ { "Key_name": "user_id", "Index_type": "BTREE", - "Non_unique": "", + "Non_unique": "UNIQUE", "columns": [ "user_id" ] @@ -108018,7 +108018,7 @@ { "Key_name": "user", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "user" ] @@ -108026,7 +108026,7 @@ { "Key_name": "name", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "name" ] @@ -108109,7 +108109,7 @@ { "Key_name": "sessionid", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "sessionid" ] @@ -108189,7 +108189,7 @@ { "Key_name": "user", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "user" ] @@ -110372,7 +110372,7 @@ { "Key_name": "adresse", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "adresse" ] @@ -110380,7 +110380,7 @@ { "Key_name": "bestellung", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "bestellung" ] @@ -110515,7 +110515,7 @@ { "Key_name": "verbindlichkeit", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "verbindlichkeit" ] @@ -110639,7 +110639,7 @@ { "Key_name": "verbindlichkeit", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "verbindlichkeit" ] @@ -110967,7 +110967,7 @@ { "Key_name": "verbindlichkeit", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "verbindlichkeit" ] @@ -111047,7 +111047,7 @@ { "Key_name": "verbindlichkeit", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "verbindlichkeit" ] @@ -111331,7 +111331,7 @@ { "Key_name": "verbindlichkeit_regelmaessig", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "verbindlichkeit_regelmaessig" ] @@ -111642,7 +111642,7 @@ { "Key_name": "artikel", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "artikel" ] @@ -111650,7 +111650,7 @@ { "Key_name": "adresse", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "adresse" ] @@ -111658,7 +111658,7 @@ { "Key_name": "projekt", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "projekt" ] @@ -111666,7 +111666,7 @@ { "Key_name": "kundenartikelnummer", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "kundenartikelnummer" ] @@ -111840,7 +111840,7 @@ { "Key_name": "chart", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "chart", "projekt" @@ -112334,7 +112334,7 @@ { "Key_name": "lieferschein", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "lieferschein" ] @@ -112342,7 +112342,7 @@ { "Key_name": "projekt", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "projekt" ] @@ -112350,7 +112350,7 @@ { "Key_name": "cronjob", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "cronjob" ] @@ -113297,7 +113297,7 @@ { "Key_name": "adresse", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "adresse" ] @@ -113410,7 +113410,7 @@ { "Key_name": "user", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "user", "sprache" @@ -114081,7 +114081,7 @@ { "Key_name": "adresse", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "adresse" ] @@ -114089,7 +114089,7 @@ { "Key_name": "adresse_mitarbeiter", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "adresse_mitarbeiter" ] @@ -114158,7 +114158,7 @@ { "Key_name": "resubmission_task", "Index_type": "BTREE", - "Non_unique": "", + "Non_unique": "UNIQUE", "columns": [ "resubmission_id", "task_id" @@ -114405,7 +114405,7 @@ { "Key_name": "resubmission_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "resubmission_id" ] @@ -114645,7 +114645,7 @@ { "Key_name": "wiedervorlageid", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "wiedervorlageid" ] @@ -115134,7 +115134,7 @@ { "Key_name": "name", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "name" ] @@ -115236,7 +115236,7 @@ { "Key_name": "wiki_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "wiki_id" ] @@ -115338,7 +115338,7 @@ { "Key_name": "wiki_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "wiki_id" ] @@ -115407,7 +115407,7 @@ { "Key_name": "wiki_id", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "wiki_id" ] @@ -115498,7 +115498,7 @@ { "Key_name": "name", "Index_type": "BTREE", - "Non_unique": "", + "Non_unique": "UNIQUE", "columns": [ "name" ] @@ -115622,7 +115622,7 @@ { "Key_name": "user_id", "Index_type": "BTREE", - "Non_unique": "", + "Non_unique": "UNIQUE", "columns": [ "user_id", "key" @@ -115769,7 +115769,7 @@ { "Key_name": "wizard_id", "Index_type": "BTREE", - "Non_unique": "", + "Non_unique": "UNIQUE", "columns": [ "wizard_id", "key" @@ -116661,7 +116661,7 @@ { "Key_name": "adresse_abrechnung", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "adresse_abrechnung" ] @@ -116669,7 +116669,7 @@ { "Key_name": "abgerechnet", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "abgerechnet" ] @@ -116677,7 +116677,7 @@ { "Key_name": "abrechnen", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "abrechnen" ] @@ -116685,7 +116685,7 @@ { "Key_name": "adresse", "Index_type": "BTREE", - "Non_unique": "UNIQUE", + "Non_unique": "", "columns": [ "adresse" ] diff --git a/vendor/mustal/mustal_mysql_upgrade_tool.php b/vendor/mustal/mustal_mysql_upgrade_tool.php index 85078c8f..1646204d 100644 --- a/vendor/mustal/mustal_mysql_upgrade_tool.php +++ b/vendor/mustal/mustal_mysql_upgrade_tool.php @@ -140,8 +140,14 @@ function mustal_load_tables_from_db(string $host, string $schema, string $user, $composed_key = array(); $composed_key['Key_name'] = $key['Key_name']; $composed_key['Index_type'] = $key['Index_type']; - $composed_key['Non_unique'] = ($key['Non_unique'] == 1)?'UNIQUE':''; $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 From ebd50b4f286a892b1c1e14dc00dcf01cac6c97c6 Mon Sep 17 00:00:00 2001 From: OpenXE <> Date: Sun, 2 Apr 2023 12:23:51 +0200 Subject: [PATCH 24/61] fibu_buchungen document auto assign --- www/pages/fibu_buchungen.php | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/www/pages/fibu_buchungen.php b/www/pages/fibu_buchungen.php index cfede1a8..f5bf96f6 100644 --- a/www/pages/fibu_buchungen.php +++ b/www/pages/fibu_buchungen.php @@ -469,7 +469,10 @@ class Fibu_buchungen { salden.saldo, salden.objektlink, salden.saldonum, - salden.waehrung + salden.waehrung, + fo.typ as doc_typ, + fo.id as doc_id, + fo.info as doc_info FROM ( SELECT @@ -484,12 +487,14 @@ class Fibu_buchungen { `fibu_buchungen_alle` fb INNER JOIN fibu_objekte fo ON fb.typ = fo.typ AND fb.id = fo.id - WHERE fb.typ <> 'kontorahmen' AND (fb.typ = '".$typ."' OR '".$typ."' = '') + WHERE (fb.typ = '".$typ."' OR '".$typ."' = '') GROUP BY fb.typ, fb.id, fb.waehrung ) salden + LEFT JOIN fibu_objekte fo ON + salden.info LIKE CONCAT('%', fo.info, '%') AND salden.typ <> fo.typ WHERE salden.saldonum <> 0 LIMIT 100 @@ -512,7 +517,7 @@ class Fibu_buchungen { if (empty($item['doc_id'])) { $object_identifier = ''; } else { - $object_identifier = ucfirst($item['doc_typ'])."-".$item['doc_id']."-".$item['doc_belegnr']; + $object_identifier = ucfirst($item['doc_typ'])."-".$item['doc_id']."-".$item['doc_info']; } $input_id = 'fibu_object_select_'.$item['id']; @@ -536,7 +541,7 @@ class Fibu_buchungen { ucfirst($item['typ']), $item['objektlink'], $item['saldo'], - ''.$item['waehrung'], + ''.$item['waehrung'], $object_select, '', '', From 8bdedcb72f11c30c0775490e72b6da705d782211 Mon Sep 17 00:00:00 2001 From: OpenXE <> Date: Sun, 2 Apr 2023 17:44:11 +0200 Subject: [PATCH 25/61] Develop version 1.8.1 --- version.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.php b/version.php index d08606eb..cce7f64b 100755 --- a/version.php +++ b/version.php @@ -1,7 +1,7 @@ Date: Mon, 3 Apr 2023 15:30:28 +0200 Subject: [PATCH 26/61] fibu_buchungen add date limit (firmendaten) --- upgrade/data/db_schema.json | 4 ++-- www/pages/content/firmendaten.tpl | 17 +++++++++++++++++ www/pages/fibu_buchungen.php | 13 ++++++++----- www/pages/firmendaten.php | 13 ++++++++++++- 4 files changed, 39 insertions(+), 8 deletions(-) diff --git a/upgrade/data/db_schema.json b/upgrade/data/db_schema.json index ea74a103..e0b55931 100644 --- a/upgrade/data/db_schema.json +++ b/upgrade/data/db_schema.json @@ -117357,12 +117357,12 @@ { "name": "fibu_objekte", "type": "VIEW", - "Create": "CREATE VIEW `fibu_objekte` AS select `auftrag`.`datum` AS `datum`,'auftrag' AS `typ`,`auftrag`.`id` AS `id`,`auftrag`.`belegnr` AS `info` from `auftrag` where `auftrag`.`belegnr` <> '' union select `rechnung`.`datum` AS `datum`,'rechnung' AS `typ`,`rechnung`.`id` AS `id`,`rechnung`.`belegnr` AS `info` from `rechnung` where `rechnung`.`belegnr` <> '' union select `gutschrift`.`datum` AS `datum`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`belegnr` AS `belegnr` from `gutschrift` where `gutschrift`.`belegnr` <> '' union select `verbindlichkeit`.`rechnungsdatum` AS `rechnungsdatum`,'verbindlichkeit' AS `verbindlichkeit`,`verbindlichkeit`.`id` AS `id`,`verbindlichkeit`.`belegnr` AS `belegnr` from `verbindlichkeit` where `verbindlichkeit`.`belegnr` <> '' union select `kontoauszuege`.`buchung` AS `buchung`,'kontoauszuege' AS `kontoauszuege`,`kontoauszuege`.`id` AS `id`,concat(`konten`.`kurzbezeichnung`,' - ',`kontoauszuege`.`buchungstext`) AS `buchungstext` from (`kontoauszuege` left join `konten` on(`konten`.`id` = `kontoauszuege`.`konto`)) union select '' AS `datum`,'kontorahmen' AS `'kontorahmen'`,`kontorahmen`.`id` AS `id`,`kontorahmen`.`beschriftung` AS `beschriftung` from `kontorahmen`" + "Create": "CREATE VIEW `fibu_objekte` AS select `fo`.`datum` AS `datum`,`fo`.`typ` AS `typ`,`fo`.`id` AS `id`,`fo`.`info` AS `info` from (select `auftrag`.`datum` AS `datum`,'auftrag' AS `typ`,`auftrag`.`id` AS `id`,`auftrag`.`belegnr` AS `info` from `auftrag` where `auftrag`.`belegnr` <> '' union select `rechnung`.`datum` AS `datum`,'rechnung' AS `typ`,`rechnung`.`id` AS `id`,`rechnung`.`belegnr` AS `info` from `rechnung` where `rechnung`.`belegnr` <> '' union select `gutschrift`.`datum` AS `datum`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`belegnr` AS `belegnr` from `gutschrift` where `gutschrift`.`belegnr` <> '' union select `verbindlichkeit`.`rechnungsdatum` AS `rechnungsdatum`,'verbindlichkeit' AS `verbindlichkeit`,`verbindlichkeit`.`id` AS `id`,`verbindlichkeit`.`rechnung` AS `belegnr` from `verbindlichkeit` where `verbindlichkeit`.`belegnr` <> '' union select `kontoauszuege`.`buchung` AS `buchung`,'kontoauszuege' AS `kontoauszuege`,`kontoauszuege`.`id` AS `id`,concat(`konten`.`kurzbezeichnung`,' - ',`kontoauszuege`.`buchungstext`) AS `buchungstext` from (`kontoauszuege` left join `konten` on(`konten`.`id` = `kontoauszuege`.`konto`)) union select '' AS `datum`,'kontorahmen' AS `'kontorahmen'`,`kontorahmen`.`id` AS `id`,`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` = ''" }, { "name": "fibu_buchungen_alle", "type": "VIEW", - "Create": "CREATE VIEW `fibu_buchungen_alle` AS select `fb`.`buchungsart` AS `buchungsart`,`fb`.`typ` AS `typ`,`fb`.`id` AS `id`,if(`fibu_objekte`.`datum` <> '',`fibu_objekte`.`datum`,`fb`.`datum`) AS `datum`,`fb`.`gegen_typ` AS `doc_typ`,`fb`.`gegen_id` AS `doc_id`,`fibu_objekte`.`info` AS `doc_belegnr`,`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 'abbuchung' AS `abbuchung`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,-`gutschrift`.`soll` AS `-``openxe``.``gutschrift``.``soll```,`gutschrift`.`waehrung` AS `waehrung`,'rechnung' AS `rechnung`,`gutschrift`.`rechnungid` AS `rechnungid`,`gutschrift`.`datum` AS `datum`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id` from `gutschrift` where `gutschrift`.`rechnungid` > 0 and `gutschrift`.`belegnr` <> '' union select 'abbuchung' AS `abbuchung`,'rechnung' AS `rechnung`,`gutschrift`.`rechnungid` AS `rechnungid`,`gutschrift`.`soll` AS `soll`,`gutschrift`.`waehrung` AS `waehrung`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`datum` AS `datum`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id` from `gutschrift` where `gutschrift`.`rechnungid` > 0 and `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`.`zeit` AS `zeit`,'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`.`zeit` AS `zeit`,'fibu_buchungen' AS `fibu_buchungen`,`fibu_buchungen`.`id` AS `id` from `fibu_buchungen`) `fb` left join `fibu_objekte` on(`fb`.`gegen_typ` = `fibu_objekte`.`typ` and `fb`.`gegen_id` = `fibu_objekte`.`id`))" + "Create": "CREATE VIEW `fibu_buchungen_alle` AS select `fb`.`buchungsart` AS `buchungsart`,`fb`.`typ` AS `typ`,`fb`.`id` AS `id`,if(`fibu_objekte`.`datum` <> '',`fibu_objekte`.`datum`,`fb`.`datum`) AS `datum`,`fb`.`gegen_typ` AS `doc_typ`,`fb`.`gegen_id` AS `doc_id`,`fibu_objekte`.`info` AS `doc_belegnr`,`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 'abbuchung' AS `abbuchung`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,-`gutschrift`.`soll` AS `-``openxe``.``gutschrift``.``soll```,`gutschrift`.`waehrung` AS `waehrung`,'rechnung' AS `rechnung`,`gutschrift`.`rechnungid` AS `rechnungid`,`gutschrift`.`datum` AS `datum`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id` from `gutschrift` where `gutschrift`.`rechnungid` > 0 and `gutschrift`.`belegnr` <> '' union select 'abbuchung' AS `abbuchung`,'rechnung' AS `rechnung`,`gutschrift`.`rechnungid` AS `rechnungid`,`gutschrift`.`soll` AS `soll`,`gutschrift`.`waehrung` AS `waehrung`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`datum` AS `datum`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id` from `gutschrift` where `gutschrift`.`rechnungid` > 0 and `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`.`zeit` AS `zeit`,'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`.`zeit` AS `zeit`,'fibu_buchungen' AS `fibu_buchungen`,`fibu_buchungen`.`id` AS `id` from `fibu_buchungen`) `fb` left join `fibu_objekte` on(`fb`.`gegen_typ` = `fibu_objekte`.`typ` and `fb`.`gegen_id` = `fibu_objekte`.`id`)) where `fb`.`datum` >= (select `firmendaten_werte`.`wert` from `firmendaten_werte` where `firmendaten_werte`.`name` = 'fibu_buchungen_startdatum') and `fibu_objekte`.`datum` >= (select `firmendaten_werte`.`wert` from `firmendaten_werte` where `firmendaten_werte`.`name` = 'fibu_buchungen_startdatum')" } ] } 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:
    +
    +
    +
    +
    +
    + -
    +
    [MESSAGE] [FORMHANDLEREVENT]
    @@ -11,6 +11,20 @@
    {|Offene Einzelsalden|} +
    +
    +
    {|Filter|}
    +
      +
    • + + +
    • +
    +
    +
    [TAB1]
    diff --git a/www/pages/fibu_buchungen.php b/www/pages/fibu_buchungen.php index 9586f777..b483f0e9 100644 --- a/www/pages/fibu_buchungen.php +++ b/www/pages/fibu_buchungen.php @@ -196,7 +196,7 @@ class Fibu_buchungen { $linkstart = '
    '; - + $typ = $this->app->User->GetParameter('fibu_buchungen_doc_typ'); $objektlink = array ( @@ -233,6 +233,8 @@ class Fibu_buchungen { ['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).",')'))"], ' ', '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, - ".$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 fibu_objekte fo ON - salden.info LIKE CONCAT('%', fo.info, '%') - AND - salden.typ <> fo.typ AND fo.info <> '' - WHERE salden.saldonum <> 0) as erg + doc, + doc_id + 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, + ".$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 + FROM + fibu_objekte fo + 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 + ) AS erg "; $where = "1"; + + // Toggle filters + $this->app->Tpl->Add('JQUERYREADY', "$('#vorschlagfilter').click( function() { fnFilterColumn1( 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 { + } + // END Toggle filters + + // $count = "SELECT count(DISTINCT id) FROM fibu_buchungen_alle WHERE $where"; $groupby = "GROUP BY typ, id"; From e79f2839e27e4ea0550effc44fdef19da5439fff Mon Sep 17 00:00:00 2001 From: OpenXE <> Date: Wed, 5 Apr 2023 12:48:45 +0200 Subject: [PATCH 40/61] fibu_objekte_view added sachkonto and is_beleg filter --- upgrade/data/db_schema.json | 2 +- www/pages/fibu_buchungen.php | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/upgrade/data/db_schema.json b/upgrade/data/db_schema.json index fb0a9e28..bb0f8dc2 100644 --- a/upgrade/data/db_schema.json +++ b/upgrade/data/db_schema.json @@ -117352,7 +117352,7 @@ { "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` from (select `auftrag`.`datum` AS `datum`,'auftrag' AS `typ`,`auftrag`.`id` AS `id`,`auftrag`.`belegnr` AS `info` from `auftrag` where `auftrag`.`belegnr` <> '' union select `rechnung`.`datum` AS `datum`,'rechnung' AS `typ`,`rechnung`.`id` AS `id`,`rechnung`.`belegnr` AS `info` from `rechnung` where `rechnung`.`belegnr` <> '' union select `gutschrift`.`datum` AS `datum`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`belegnr` AS `belegnr` from `gutschrift` where `gutschrift`.`belegnr` <> '' union select `verbindlichkeit`.`rechnungsdatum` AS `rechnungsdatum`,'verbindlichkeit' AS `verbindlichkeit`,`verbindlichkeit`.`id` AS `id`,`verbindlichkeit`.`rechnung` AS `belegnr` from `verbindlichkeit` where `verbindlichkeit`.`belegnr` <> '' union select `kontoauszuege`.`buchung` AS `buchung`,'kontoauszuege' AS `kontoauszuege`,`kontoauszuege`.`id` AS `id`,concat(`konten`.`kurzbezeichnung`,' - ',`kontoauszuege`.`buchungstext`) AS `buchungstext` from (`kontoauszuege` left join `konten` on(`konten`.`id` = `kontoauszuege`.`konto`)) union select '' AS `datum`,'kontorahmen' AS `'kontorahmen'`,`kontorahmen`.`id` AS `id`,`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` = ''" + "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`.`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` from `auftrag` where `auftrag`.`belegnr` <> '' union select `rechnung`.`datum` AS `datum`,'rechnung' AS `typ`,`rechnung`.`id` AS `id`,`rechnung`.`belegnr` AS `info` from `rechnung` where `rechnung`.`belegnr` <> '' union select `gutschrift`.`datum` AS `datum`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`belegnr` AS `belegnr` from `gutschrift` where `gutschrift`.`belegnr` <> '' union select `verbindlichkeit`.`rechnungsdatum` AS `rechnungsdatum`,'verbindlichkeit' AS `verbindlichkeit`,`verbindlichkeit`.`id` AS `id`,`verbindlichkeit`.`rechnung` AS `belegnr` from `verbindlichkeit` where `verbindlichkeit`.`belegnr` <> '' union select `kontoauszuege`.`buchung` AS `buchung`,'kontoauszuege' AS `kontoauszuege`,`kontoauszuege`.`id` AS `id`,concat(`konten`.`kurzbezeichnung`,' - ',`kontoauszuege`.`buchungstext`) AS `buchungstext` 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` = ''" }, { "name": "fibu_buchungen_alle_view", diff --git a/www/pages/fibu_buchungen.php b/www/pages/fibu_buchungen.php index b483f0e9..1387207c 100644 --- a/www/pages/fibu_buchungen.php +++ b/www/pages/fibu_buchungen.php @@ -329,6 +329,7 @@ class Fibu_buchungen { fo.info FROM fibu_objekte fo + WHERE fo.is_beleg = 1 GROUP BY fo.typ, fo.id, From 828af9ab50642a5c8cfcfdf5a9e45df3c4cde6e5 Mon Sep 17 00:00:00 2001 From: OpenXE <> Date: Wed, 5 Apr 2023 13:07:03 +0200 Subject: [PATCH 41/61] fibu_buchungen check saldo for vorschlag --- upgrade/data/db_schema.json | 2 +- www/pages/content/fibu_buchungen_zuordnen.tpl | 7 +++ www/pages/fibu_buchungen.php | 44 ++++++++++++++----- 3 files changed, 42 insertions(+), 11 deletions(-) diff --git a/upgrade/data/db_schema.json b/upgrade/data/db_schema.json index bb0f8dc2..6d5b33b4 100644 --- a/upgrade/data/db_schema.json +++ b/upgrade/data/db_schema.json @@ -117352,7 +117352,7 @@ { "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`.`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` from `auftrag` where `auftrag`.`belegnr` <> '' union select `rechnung`.`datum` AS `datum`,'rechnung' AS `typ`,`rechnung`.`id` AS `id`,`rechnung`.`belegnr` AS `info` from `rechnung` where `rechnung`.`belegnr` <> '' union select `gutschrift`.`datum` AS `datum`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`belegnr` AS `belegnr` from `gutschrift` where `gutschrift`.`belegnr` <> '' union select `verbindlichkeit`.`rechnungsdatum` AS `rechnungsdatum`,'verbindlichkeit' AS `verbindlichkeit`,`verbindlichkeit`.`id` AS `id`,`verbindlichkeit`.`rechnung` AS `belegnr` from `verbindlichkeit` where `verbindlichkeit`.`belegnr` <> '' union select `kontoauszuege`.`buchung` AS `buchung`,'kontoauszuege' AS `kontoauszuege`,`kontoauszuege`.`id` AS `id`,concat(`konten`.`kurzbezeichnung`,' - ',`kontoauszuege`.`buchungstext`) AS `buchungstext` 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` = ''" + "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`.`adresse` AS `adresse`,`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`,`auftrag`.`adresse` AS `adresse` from `auftrag` where `auftrag`.`belegnr` <> '' and `auftrag`.`status` <> 'abgeschlossen' union select `rechnung`.`datum` AS `datum`,'rechnung' AS `typ`,`rechnung`.`id` AS `id`,`rechnung`.`belegnr` AS `info`,`rechnung`.`adresse` AS `adresse` from `rechnung` where `rechnung`.`belegnr` <> '' and `rechnung`.`zahlungsstatus` <> 'bezahlt' union select `gutschrift`.`datum` AS `datum`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`belegnr` AS `belegnr`,`gutschrift`.`adresse` AS `adresse` from `gutschrift` where `gutschrift`.`belegnr` <> '' and `gutschrift`.`zahlungsstatus` <> 'bezahlt' union select `verbindlichkeit`.`rechnungsdatum` AS `rechnungsdatum`,'verbindlichkeit' AS `verbindlichkeit`,`verbindlichkeit`.`id` AS `id`,`verbindlichkeit`.`rechnung` AS `belegnr`,`verbindlichkeit`.`adresse` AS `adresse` from `verbindlichkeit` where `verbindlichkeit`.`belegnr` <> '' and `verbindlichkeit`.`status` <> 'bezahlt' union select `kontoauszuege`.`buchung` AS `buchung`,'kontoauszuege' AS `kontoauszuege`,`kontoauszuege`.`id` AS `id`,concat(`konten`.`kurzbezeichnung`,' - ',`kontoauszuege`.`buchungstext`) AS `buchungstext`,'' 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` = ''" }, { "name": "fibu_buchungen_alle_view", diff --git a/www/pages/content/fibu_buchungen_zuordnen.tpl b/www/pages/content/fibu_buchungen_zuordnen.tpl index 126647c0..a8ab5ec4 100644 --- a/www/pages/content/fibu_buchungen_zuordnen.tpl +++ b/www/pages/content/fibu_buchungen_zuordnen.tpl @@ -22,6 +22,13 @@ +
  • + + +
  • diff --git a/www/pages/fibu_buchungen.php b/www/pages/fibu_buchungen.php index 1387207c..9ee74f9a 100644 --- a/www/pages/fibu_buchungen.php +++ b/www/pages/fibu_buchungen.php @@ -183,10 +183,10 @@ class Fibu_buchungen { case 'fibu_buchungen_zuordnen': $allowed['fibu_buchungen_zuordnung'] = array('list'); - $heading = array('','','Datum', 'Info', 'Betrag', 'Währung', 'Buchungsbetrag','Vorschlag', 'Menü'); + $heading = array('','','Datum','Typ', 'Info', 'Betrag', 'Währung', 'Buchungsbetrag','Vorschlag', 'Menü'); $width = array( ); - $findcols = array('','auswahl','datum','objektlink','saldo','waehrung','buchwert_input','vorschlag'); + $findcols = array('','auswahl','datum','typ','objektlink','saldo','waehrung','buchwert_input','vorschlag'); $searchsql = array(); $defaultorder = 1; @@ -209,6 +209,8 @@ class Fibu_buchungen { '' ); + $check_sql = "(fo.info <> '' AND salden.saldonum = -SUM(fbd.betrag))"; + $auswahl = array ( ' 'salden.typ'], @@ -220,7 +222,7 @@ class Fibu_buchungen { '_', ['sql' => 'salden.id'], '"', - ['sql' => "if(fo.info <> '','checked','')"], + ['sql' => "if(".$check_sql.",'checked','')"], ' />' ); @@ -234,7 +236,7 @@ class Fibu_buchungen { ' ', ['sql' => 'COALESCE(fo.info,\'\')'], ' ', - ['sql' => "if (SUM(fbd.betrag) IS NULL,'',CONCAT('(Saldo ',".$this->app->erp->FormatMenge('SUM(fbd.betrag)',2).",')'))"], + ['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).",')'))"], ' ', 'app->erp->FormatUCfirst("typ").", objektlink, saldo, waehrung, wert, vorschlag, - doc, - doc_id + doc, + doc_id, + doc_saldo, + checked FROM ( SELECT @@ -297,7 +302,8 @@ class Fibu_buchungen { fo.id AS doc_id, fo.info AS doc_info, SUM(fbd.betrag) as doc_saldo, - ".$this->app->erp->ConcatSQL($doc)." AS doc + if(".$check_sql.",'1','0') AS checked, + ".$this->app->erp->ConcatSQL($doc)." AS doc FROM ( SELECT @@ -326,9 +332,14 @@ class Fibu_buchungen { SELECT fo.typ, fo.id, - fo.info + fo.info, + SUM(fob.betrag) as doc_saldo FROM - fibu_objekte fo + fibu_objekte fo + INNER JOIN + fibu_buchungen_alle fob + ON + fo.typ = fob.typ AND fo.id = fob.id WHERE fo.is_beleg = 1 GROUP BY fo.typ, @@ -345,7 +356,9 @@ class Fibu_buchungen { salden.saldonum <> 0 GROUP BY salden.typ, - salden.id + salden.id, + fo.typ, + fo.id ) AS erg "; @@ -353,6 +366,7 @@ class Fibu_buchungen { // 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', ' @@ -378,12 +392,22 @@ class Fibu_buchungen { $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; } From 82fc36740598e0fd817b92da4e83e7cd985c290c Mon Sep 17 00:00:00 2001 From: OpenXE <> Date: Thu, 6 Apr 2023 10:43:36 +0200 Subject: [PATCH 42/61] fibu_buchungen einzelzuordnung --- upgrade/data/db_schema.json | 4 +- www/lib/class.erpapi.php | 4 +- .../content/fibu_buchungen_einzelzuordnen.tpl | 54 +++++ www/pages/fibu_buchungen.php | 213 +++++++++++++++++- www/pages/gutschrift.php | 2 +- www/pages/rechnung.php | 2 +- 6 files changed, 268 insertions(+), 11 deletions(-) create mode 100644 www/pages/content/fibu_buchungen_einzelzuordnen.tpl diff --git a/upgrade/data/db_schema.json b/upgrade/data/db_schema.json index 6d5b33b4..7ecf9cbd 100644 --- a/upgrade/data/db_schema.json +++ b/upgrade/data/db_schema.json @@ -117352,12 +117352,12 @@ { "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`.`adresse` AS `adresse`,`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`,`auftrag`.`adresse` AS `adresse` from `auftrag` where `auftrag`.`belegnr` <> '' and `auftrag`.`status` <> 'abgeschlossen' union select `rechnung`.`datum` AS `datum`,'rechnung' AS `typ`,`rechnung`.`id` AS `id`,`rechnung`.`belegnr` AS `info`,`rechnung`.`adresse` AS `adresse` from `rechnung` where `rechnung`.`belegnr` <> '' and `rechnung`.`zahlungsstatus` <> 'bezahlt' union select `gutschrift`.`datum` AS `datum`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`belegnr` AS `belegnr`,`gutschrift`.`adresse` AS `adresse` from `gutschrift` where `gutschrift`.`belegnr` <> '' and `gutschrift`.`zahlungsstatus` <> 'bezahlt' union select `verbindlichkeit`.`rechnungsdatum` AS `rechnungsdatum`,'verbindlichkeit' AS `verbindlichkeit`,`verbindlichkeit`.`id` AS `id`,`verbindlichkeit`.`rechnung` AS `belegnr`,`verbindlichkeit`.`adresse` AS `adresse` from `verbindlichkeit` where `verbindlichkeit`.`belegnr` <> '' and `verbindlichkeit`.`status` <> 'bezahlt' union select `kontoauszuege`.`buchung` AS `buchung`,'kontoauszuege' AS `kontoauszuege`,`kontoauszuege`.`id` AS `id`,concat(`konten`.`kurzbezeichnung`,' - ',`kontoauszuege`.`buchungstext`) AS `buchungstext`,'' 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` = ''" + "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` <> '' and `auftrag`.`status` <> 'abgeschlossen' 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` <> '' and `rechnung`.`zahlungsstatus` <> 'bezahlt' 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` <> '' and `gutschrift`.`zahlungsstatus` <> 'bezahlt' 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` <> '' and `verbindlichkeit`.`status` <> 'bezahlt' 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` = ''" }, { "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_belegnr`,`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 'abbuchung' AS `abbuchung`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,-`gutschrift`.`soll` AS `-``openxe``.``gutschrift``.``soll```,`gutschrift`.`waehrung` AS `waehrung`,'rechnung' AS `rechnung`,`gutschrift`.`rechnungid` AS `rechnungid`,`gutschrift`.`datum` AS `datum`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id` from `gutschrift` where `gutschrift`.`rechnungid` > 0 and `gutschrift`.`belegnr` <> '' union select 'abbuchung' AS `abbuchung`,'rechnung' AS `rechnung`,`gutschrift`.`rechnungid` AS `rechnungid`,`gutschrift`.`soll` AS `soll`,`gutschrift`.`waehrung` AS `waehrung`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`datum` AS `datum`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id` from `gutschrift` where `gutschrift`.`rechnungid` > 0 and `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`.`zeit` AS `zeit`,'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`.`zeit` AS `zeit`,'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')" + "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 'abbuchung' AS `abbuchung`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,-`gutschrift`.`soll` AS `-``openxe``.``gutschrift``.``soll```,`gutschrift`.`waehrung` AS `waehrung`,'rechnung' AS `rechnung`,`gutschrift`.`rechnungid` AS `rechnungid`,`gutschrift`.`datum` AS `datum`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id` from `gutschrift` where `gutschrift`.`rechnungid` > 0 and `gutschrift`.`belegnr` <> '' union select 'abbuchung' AS `abbuchung`,'rechnung' AS `rechnung`,`gutschrift`.`rechnungid` AS `rechnungid`,`gutschrift`.`soll` AS `soll`,`gutschrift`.`waehrung` AS `waehrung`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`datum` AS `datum`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id` from `gutschrift` where `gutschrift`.`rechnungid` > 0 and `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`.`zeit` AS `zeit`,'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`.`zeit` AS `zeit`,'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')" } ] } diff --git a/www/lib/class.erpapi.php b/www/lib/class.erpapi.php index 9e223247..1b2d01cc 100644 --- a/www/lib/class.erpapi.php +++ b/www/lib/class.erpapi.php @@ -35920,7 +35920,7 @@ function Firmendaten($field,$projekt="") /* * Calculate the payments of a document (rechnung, gutschrift, auftrag, verbindlichkeit) - * Results array of payments (datum, doc_type, doc_id, doc_belegnr, betrag, waehrung) + * Results array of payments (datum, doc_type, doc_id, doc_inof, betrag, waehrung) * Gutschrift -> Rechnungid, Rechnung -> Auftragid */ @@ -35949,7 +35949,7 @@ function Firmendaten($field,$projekt="") ".$this->app->erp->FormatDate('datum')." as datum, doc_typ, doc_id, - doc_belegnr, + doc_info, ".$this->app->erp->FormatMenge('betrag',2)." as betrag, waehrung FROM diff --git a/www/pages/content/fibu_buchungen_einzelzuordnen.tpl b/www/pages/content/fibu_buchungen_einzelzuordnen.tpl new file mode 100644 index 00000000..d4f9c616 --- /dev/null +++ b/www/pages/content/fibu_buchungen_einzelzuordnen.tpl @@ -0,0 +1,54 @@ +
    +
      +
    • +
    +
    + [MESSAGE] + [FORMHANDLEREVENT] +
    +
    +
    +
    +
    + + {|Buchung|} + + + Saldo: [DOC_SALDO]
    + "[DOC_ZUORDNUNG]" +
    +
    + [TAB1] +
    +
    +
    + + Stapelverarbeitung + + + + + + + + + + +
     Alle markieren 
     Mit Abweichung buchen 
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/www/pages/fibu_buchungen.php b/www/pages/fibu_buchungen.php index 9ee74f9a..bb023d18 100644 --- a/www/pages/fibu_buchungen.php +++ b/www/pages/fibu_buchungen.php @@ -21,6 +21,7 @@ class Fibu_buchungen { $this->app->ActionHandler("assoc", "fibu_buchungen_assoc"); //$this->app->ActionHandler("zuordnen", "fibu_buchungen_zuordnen"); $this->app->ActionHandler("zuordnen", "fibu_buchungen_zuordnen_tablesearch"); + $this->app->ActionHandler("einzelzuordnen", "fibu_buchungen_einzelzuordnen"); $this->app->DefaultActionHandler("list"); $this->app->ActionHandlerListen($app); @@ -46,8 +47,8 @@ class Fibu_buchungen { $alignright = array(7); $sumcol= array(7); - $findcols = array('f.id','f.id','f.buchungsart', 'f.typ', 'f.datum', 'f.doc_typ', 'f.betrag', 'f.waehrung'); - $searchsql = array('f.buchungsart', 'f.typ', 'f.datum', 'f.doc_typ', 'f.doc_belegnr'); + $findcols = array('f.id','f.id','f.buchungsart', 'f.typ', 'f.datum', 'f.doc_info', 'f.betrag', 'f.waehrung'); + $searchsql = array('f.buchungsart', 'f.typ', 'f.datum', 'f.doc_typ', 'f.doc_info'); $defaultorder = 1; $defaultorderdesc = 0; @@ -68,7 +69,7 @@ class Fibu_buchungen { ".$app->erp->FormatUCfirst('f.buchungsart').", ".$app->erp->FormatUCfirst('f.typ').", ".$app->erp->FormatDate('f.datum').", - CONCAT(".$app->erp->FormatUCfirst('f.doc_typ').",' ',f.doc_belegnr), + 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) @@ -147,7 +148,7 @@ class Fibu_buchungen { $width = array( '1%','1%','1%', '20%', '80%', '1%', '1%', '%1' ); $findcols = array('f.id','f.id','f.typ'); - $searchsql = array('f.buchungsart', 'f.typ', 'f.datum', 'f.doc_typ', 'f.doc_belegnr'); + $searchsql = array('f.buchungsart', 'f.typ', 'f.datum', 'f.doc_typ', 'f.doc_info'); $defaultorder = 1; $defaultorderdesc = 0; @@ -408,7 +409,108 @@ class Fibu_buchungen { //echo($sql." WHERE ".$where." ".$groupby); - break; + break; + case 'fibu_buchungen_einzelzuordnen': + + $allowed['fibu_buchungen_einzelzuordnen'] = array('list'); + $heading = array('','Datum','Typ', 'Info', 'Übergeordnet', 'Saldo','Währung','Buchungsbetrag', 'Menü'); + $width = array( ); + + $findcols = array('auswahl','fo.datum','fo.typ','fo.info','fo.parent_info'); + $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'); + $greater_0 = $this->app->User->GetParameter('fibu_buchungen_greater_0'); + + $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'], + '' + ); + + $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, + SUM(fba.betrag) as saldonum, + waehrung, + ".$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."'"; + +// $count = "SELECT count(DISTINCT id) FROM fibu_buchungen_alle WHERE $where"; + + if ($greater_0) { + $having = "saldonum < 0"; + } + else { + $having = "saldonum > 0"; + } + + $groupby = "GROUP BY fo.id, fo.typ"; + +//echo($sql." WHERE ".$where." ".$groupby); + + $sumcol= array(6); + + break; } $erg = false; @@ -730,6 +832,107 @@ class Fibu_buchungen { $this->app->Tpl->Parse('PAGE', "fibu_buchungen_zuordnen.tpl"); } + function fibu_buchungen_einzelzuordnen() { + $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"); + + $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); + + $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']; + + $this->app->User->SetParameter('fibu_buchungen_greater_0', $von_saldonum > 0); + + 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]; + + if ($betrag != 0) { + $sql = "INSERT INTO `fibu_buchungen` (`von_typ`, `von_id`, `nach_typ`, `nach_id`, `betrag`, `waehrung`, `benutzer`, `zeit`, `internebemerkung`) VALUES ('".$von_typ."','".$von_id."','".$doc_typ."', '".$doc_id."', '".-$betrag."', '".$von_waehrung."', '".$this->app->User->GetID()."','". $input['zeit'] = date("Y-m-d H:i")."', '')"; + $this->app->DB->Insert($sql); + $count_success++; + } + } + } + } + $msg .= "
    ".$count_success." Buchung".(($count_success===1)?'':'en')." durchgeführt.
    "; + $this->fibu_rebuild_tables(); + } + } + + // Reload after booking + $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']; + + $this->app->Tpl->Set('DOC_ZUORDNUNG', ucfirst($von_typ)." ".$von_info); + $this->app->Tpl->Set('DOC_SALDO',$von_saldo." ".$von_waehrung); + + $this->app->YUI->TableSearch('TAB1', 'fibu_buchungen_einzelzuordnen', "show", "", "", basename(__FILE__), __CLASS__); + + if (!empty($msg)) { + $this->app->Tpl->Set('MESSAGE', $msg); + } + + $this->app->Tpl->Parse('PAGE', "fibu_buchungen_einzelzuordnen.tpl"); + } + function fibu_buchungen_zuordnen() { $this->app->erp->MenuEintrag("index.php?module=fibu_buchungen&action=list", "Übersicht"); diff --git a/www/pages/gutschrift.php b/www/pages/gutschrift.php index 3545b9d2..1f2c4373 100644 --- a/www/pages/gutschrift.php +++ b/www/pages/gutschrift.php @@ -670,7 +670,7 @@ class Gutschrift extends GenGutschrift $zahlung['datum'], " ".ucfirst($zahlung['doc_typ'])." - ".$zahlung['doc_belegnr']." + ".$zahlung['doc_info']." ", $zahlung['betrag'], $zahlung['waehrung'] diff --git a/www/pages/rechnung.php b/www/pages/rechnung.php index bace78c6..a8bf9f42 100644 --- a/www/pages/rechnung.php +++ b/www/pages/rechnung.php @@ -2744,7 +2744,7 @@ class Rechnung extends GenRechnung $zahlung['datum'], " ".ucfirst($zahlung['doc_typ'])." - ".$zahlung['doc_belegnr']." + ".$zahlung['doc_info']." ", $zahlung['betrag'], $zahlung['waehrung'] From 44af8f3b3d80c708fcb1c901f8d9c139f2f0f746 Mon Sep 17 00:00:00 2001 From: OpenXE <> Date: Fri, 7 Apr 2023 18:17:57 +0200 Subject: [PATCH 43/61] Bugfix erpapi lagernummern typo --- www/lib/class.erpapi.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/www/lib/class.erpapi.php b/www/lib/class.erpapi.php index 1b2d01cc..02609f61 100644 --- a/www/lib/class.erpapi.php +++ b/www/lib/class.erpapi.php @@ -22218,8 +22218,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 @@ -22237,8 +22237,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 From 667b70eaf51fc03b742630bfc8ddd066d347e625 Mon Sep 17 00:00:00 2001 From: OpenXE <> Date: Sat, 8 Apr 2023 14:49:08 +0200 Subject: [PATCH 44/61] fibu_buchungen booking to kontorahmen --- upgrade/data/db_schema.json | 15 +- www/pages/content/fibu_buchungen_zuordnen.tpl | 25 +- www/pages/fibu_buchungen.php | 258 ++++-------------- www/pages/kontoauszuege.php | 24 +- 4 files changed, 98 insertions(+), 224 deletions(-) diff --git a/upgrade/data/db_schema.json b/upgrade/data/db_schema.json index 7ecf9cbd..2527e23d 100644 --- a/upgrade/data/db_schema.json +++ b/upgrade/data/db_schema.json @@ -39106,6 +39106,17 @@ "Privileges": "select,insert,update,references", "Comment": "" }, + { + "Field": "datum", + "Type": "date", + "Collation": null, + "Null": "NO", + "Key": "", + "Default": null, + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, { "Field": "zeit", "Type": "datetime", @@ -117352,12 +117363,12 @@ { "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` <> '' and `auftrag`.`status` <> 'abgeschlossen' 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` <> '' and `rechnung`.`zahlungsstatus` <> 'bezahlt' 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` <> '' and `gutschrift`.`zahlungsstatus` <> 'bezahlt' 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` <> '' and `verbindlichkeit`.`status` <> 'bezahlt' 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` = ''" + "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` <> '' and `auftrag`.`status` <> 'abgeschlossen' 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` <> '' and `rechnung`.`zahlungsstatus` <> 'bezahlt' 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` <> '' and `gutschrift`.`zahlungsstatus` <> 'bezahlt' 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` <> '' and `verbindlichkeit`.`status` <> 'bezahlt' 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 (select `firmendaten_werte`.`wert` from `firmendaten_werte` where `firmendaten_werte`.`name` = 'fibu_buchungen_startdatum') 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` = ''" }, { "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 'abbuchung' AS `abbuchung`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,-`gutschrift`.`soll` AS `-``openxe``.``gutschrift``.``soll```,`gutschrift`.`waehrung` AS `waehrung`,'rechnung' AS `rechnung`,`gutschrift`.`rechnungid` AS `rechnungid`,`gutschrift`.`datum` AS `datum`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id` from `gutschrift` where `gutschrift`.`rechnungid` > 0 and `gutschrift`.`belegnr` <> '' union select 'abbuchung' AS `abbuchung`,'rechnung' AS `rechnung`,`gutschrift`.`rechnungid` AS `rechnungid`,`gutschrift`.`soll` AS `soll`,`gutschrift`.`waehrung` AS `waehrung`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`datum` AS `datum`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id` from `gutschrift` where `gutschrift`.`rechnungid` > 0 and `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`.`zeit` AS `zeit`,'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`.`zeit` AS `zeit`,'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')" + "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 'abbuchung' AS `abbuchung`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,-`gutschrift`.`soll` AS `-``openxe``.``gutschrift``.``soll```,`gutschrift`.`waehrung` AS `waehrung`,'rechnung' AS `rechnung`,`gutschrift`.`rechnungid` AS `rechnungid`,`gutschrift`.`datum` AS `datum`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id` from `gutschrift` where `gutschrift`.`rechnungid` > 0 and `gutschrift`.`belegnr` <> '' union select 'abbuchung' AS `abbuchung`,'rechnung' AS `rechnung`,`gutschrift`.`rechnungid` AS `rechnungid`,`gutschrift`.`soll` AS `soll`,`gutschrift`.`waehrung` AS `waehrung`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`datum` AS `datum`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id` from `gutschrift` where `gutschrift`.`rechnungid` > 0 and `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')" } ] } diff --git a/www/pages/content/fibu_buchungen_zuordnen.tpl b/www/pages/content/fibu_buchungen_zuordnen.tpl index a8ab5ec4..d6777670 100644 --- a/www/pages/content/fibu_buchungen_zuordnen.tpl +++ b/www/pages/content/fibu_buchungen_zuordnen.tpl @@ -10,7 +10,7 @@
    - {|Offene Einzelsalden|} + {|Einzelsalden|}
    {|Filter|}
    @@ -41,11 +41,26 @@ Stapelverarbeitung
     alle markieren 
    + +
    + +
    + +
    diff --git a/www/pages/fibu_buchungen.php b/www/pages/fibu_buchungen.php index bb023d18..cd23d33b 100644 --- a/www/pages/fibu_buchungen.php +++ b/www/pages/fibu_buchungen.php @@ -19,8 +19,7 @@ class Fibu_buchungen { $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("zuordnen", "fibu_buchungen_zuordnen_tablesearch"); + $this->app->ActionHandler("zuordnen", "fibu_buchungen_zuordnen"); $this->app->ActionHandler("einzelzuordnen", "fibu_buchungen_einzelzuordnen"); $this->app->DefaultActionHandler("list"); $this->app->ActionHandlerListen($app); @@ -47,7 +46,7 @@ class Fibu_buchungen { $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'); + $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; @@ -57,7 +56,7 @@ class Fibu_buchungen { $menu = "
    " . "Conf->WFconf['defaulttheme']}/images/edit.svg\" border=\"0\">
    "; - if (!empty($doc_typ) && !empty($doc_id)) { + if (!empty($doc_typ) && !empty($doc_id)) { $where = "`doc_typ` = '$doc_typ' AND `doc_id` = $doc_id"; } else{ $where = "1"; @@ -81,11 +80,11 @@ class Fibu_buchungen { break; case "fibu_buchungen_salden": $allowed['fibu_buchungen_salden'] = array('list'); - $heading = array( '', 'Typ','Anzahl', 'Saldo', 'Menü'); - $width = array( '1%', '96%', '1%', '1%', '1%'); + $heading = array( 'Typ','Anzahl', 'Saldo', 'Menü'); + $width = array( '83%', '1%', '1%', '1%'); - $findcols = array('','','typ','anzahl','saldo'); - $searchsql = array(); + $findcols = array('typ','','saldonum'); + $searchsql = array('typ','saldonum'); $defaultorder = 1; $defaultorderdesc = 0; @@ -108,10 +107,9 @@ class Fibu_buchungen { ); $sql = "SELECT - '', '', ".$this->app->erp->FormatUCfirst('typ')." AS typ, - count(id) anzahl, + count(id) AS anzahl, ".$this->app->erp->ConcatSQL($saldolink)." AS saldo, typ FROM @@ -187,8 +185,8 @@ class Fibu_buchungen { $heading = array('','','Datum','Typ', 'Info', 'Betrag', 'Währung', 'Buchungsbetrag','Vorschlag', 'Menü'); $width = array( ); - $findcols = array('','auswahl','datum','typ','objektlink','saldo','waehrung','buchwert_input','vorschlag'); - $searchsql = array(); + $findcols = array('id','auswahl','datum','typ','objektlink','saldo','waehrung','saldo','vorschlag','doc'); + $searchsql = array('objektlink','vorschlag'); $defaultorder = 1; $defaultorderdesc = 0; @@ -416,7 +414,7 @@ class Fibu_buchungen { $heading = array('','Datum','Typ', 'Info', 'Übergeordnet', 'Saldo','Währung','Buchungsbetrag', 'Menü'); $width = array( ); - $findcols = array('auswahl','fo.datum','fo.typ','fo.info','fo.parent_info'); + $findcols = array('fo.id','fo.datum','fo.typ','fo.info','fo.parent_info','fba.betrag','waehrung','fba.betrag','fo.id'); $searchsql = array('fo.typ','fo.info','fo.parent_info'); $defaultorder = 1; @@ -429,7 +427,6 @@ class Fibu_buchungen { $doc_typ = $this->app->User->GetParameter('fibu_buchungen_doc_typ'); $doc_id = $this->app->User->GetParameter('fibu_buchungen_doc_id'); - $greater_0 = $this->app->User->GetParameter('fibu_buchungen_greater_0'); $auswahl = array ( 'app->erp->MenuEintrag("index.php?module=fibu_buchungen&action=list", "Übersicht"); -// $this->app->erp->MenuEintrag("index.php?module=fibu_buchungen&action=create", "Neu anlegen"); + function fibu_buchungen_zuordnen() { $submit = $this->app->Secure->GetPOST('submit'); if ($submit == 'neuberechnen') { @@ -785,34 +773,53 @@ class Fibu_buchungen { $waehrungen = $this->app->Secure->GetPOST('waehrungen'); $auswahl = $this->app->Secure->GetPOST('auswahl'); $vorschlaege = $this->app->Secure->GetPOST('vorschlaege'); - + $sachkonto = $this->app->Secure->GetPOST('sachkonto'); + + $sachkontoid = null; + if (!empty($sachkonto)) { + $sachkonto_kennung = explode(' ',$sachkonto)[0]; + $sachkontoid = $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 && $vorschlaege[$key_ids] != '_') { + if ($key_auswahl !== false) { + $von = explode('_',$id); $von_typ = strtolower($von[0]); $von_id = (int) $von[1]; - $doc = $vorschlaege[$key_ids]; - $doc = explode('_',$doc); - $doc_typ = strtolower($doc[0]); - $doc_id = (int) $doc[1]; - $betrag = $werte[$key_ids]; $waehrung = $waehrungen[$key_ids]; - - $sql = "INSERT INTO `fibu_buchungen` (`von_typ`, `von_id`, `nach_typ`, `nach_id`, `betrag`, `waehrung`, `benutzer`, `zeit`, `internebemerkung`) VALUES ('".$von_typ."','".$von_id."','".$doc_typ."', '".$doc_id."', '".-$betrag."', '".$waehrung."', '".$this->app->User->GetID()."','". $input['zeit'] = date("Y-m-d H:i")."', '')"; - - $this->app->DB->Insert($sql); - } - } - } - } + $doc_id = null; + + if ($sachkontoid) { + $doc_typ = 'kontorahmen'; + $doc_id = $sachkontoid; + } else if ($vorschlaege[$key_ids] != '_') { + $doc = $vorschlaege[$key_ids]; + $doc = explode('_',$doc); + $doc_typ = strtolower($doc[0]); + $doc_id = (int) $doc[1]; + } + + + $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 ($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()."','".$input['zeit'] = date("Y-m-d H:i")."', '')"; + $this->app->DB->Insert($sql); +// echo($sql."\n"); + } + } // auswahl + } // foreach + } // auswahl + } // submit $this->fibu_rebuild_tables(); @@ -821,7 +828,6 @@ class Fibu_buchungen { $this->app->User->SetParameter('fibu_buchungen_doc_typ', $doc_typ); -// $this->app->YUI->TableSearch('TAB1', 'fibu_buchungen_salden', "show", "", "", basename(__FILE__), __CLASS__); $this->app->YUI->TableSearch('TAB1', 'fibu_buchungen_zuordnen', "show", "", "", basename(__FILE__), __CLASS__); $this->app->YUI->TableSearch('TAB2', 'fibu_buchungen_list', "show", "", "", basename(__FILE__), __CLASS__); @@ -829,12 +835,15 @@ class Fibu_buchungen { $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() { - $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"); $submit = $this->app->Secure->GetPOST('submit'); if ($submit == 'neuberechnen') { @@ -851,6 +860,8 @@ class Fibu_buchungen { $this->app->User->SetParameter('fibu_buchungen_doc_typ', $von_typ); $this->app->User->SetParameter('fibu_buchungen_doc_id', $von_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']; @@ -858,8 +869,6 @@ class Fibu_buchungen { $von_saldo = $von_row['saldo']; $von_waehrung = $von_row['waehrung']; - $this->app->User->SetParameter('fibu_buchungen_greater_0', $von_saldonum > 0); - if ($submit == 'BUCHEN') { // Process multi action $count_success = 0; @@ -932,163 +941,4 @@ class Fibu_buchungen { $this->app->Tpl->Parse('PAGE', "fibu_buchungen_einzelzuordnen.tpl"); } - - function fibu_buchungen_zuordnen() { - - $this->app->erp->MenuEintrag("index.php?module=fibu_buchungen&action=list", "Übersicht"); - - $submit = $this->app->Secure->GetPOST('submit'); - $count_success = 0; - if ($submit == 'BUCHEN') { - - // Process multi action - $von_typen = $this->app->Secure->GetPOST('fibu_typ'); - $von_ids = $this->app->Secure->GetPOST('fibu_id'); - $betraege = $this->app->Secure->GetPOST('fibu_betrag'); - $waehrungen = $this->app->Secure->GetPOST('fibu_waehrung'); - $objekte = $this->app->Secure->GetPOST('fibu_objekt'); - - if(!empty($von_ids)) { - $count = -1; - foreach ($von_ids as $von_id) { - $count++; - if ($von_id > 0) { - $von_typ = $von_typen[$count]; - $objekt = $objekte[$count]; - $objekt = explode('-',$objekt); - $doc_typ = strtolower($objekt[0]); - $doc_id = (int) $objekt[1]; - $betrag = $betraege[$count]; - $betrag = (float) $this->app->erp->ReplaceBetrag(true,$betrag); - $waehrung = $waehrungen[$count]; - if (empty($von_typ) || empty($doc_typ) || empty($doc_id) || empty($betrag) || empty($waehrung)) { - continue; - } - $sql = "INSERT INTO `fibu_buchungen` (`von_typ`, `von_id`, `nach_typ`, `nach_id`, `betrag`, `waehrung`, `benutzer`, `zeit`, `internebemerkung`) VALUES ('".$von_typ."','".$von_id."','".$doc_typ."', '".$doc_id."', '".-$betrag."', '".$waehrung."', '".$this->app->User->GetID()."','". $input['zeit'] = date("Y-m-d H:i")."', '')"; - - $this->app->DB->Insert($sql); - - $count_success++; - } - } - $this->fibu_rebuild_tables(); - } - $msg .= "
    ".$count_success." Buchung".(($count_success===1)?'':'en')." durchgeführt.
    "; - } - - $typ = $this->app->Secure->GetGET('typ'); - - $objektlink = array ( - ' 'fb.typ'], - '&id=', - ['sql' => 'fb.id'], - '">', - ['sql' => 'fo.info'], - '' - ); - - $sql = "SELECT - salden.datum, - salden.typ, - salden.id, - salden.info, - salden.saldo, - salden.objektlink, - salden.saldonum, - salden.waehrung, - fo.typ as doc_typ, - fo.id as doc_id, - fo.info as doc_info - 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 fibu_objekte fo ON - salden.info LIKE CONCAT('%', fo.info, '%') - AND - salden.typ <> fo.typ AND fo.info <> '' - WHERE - salden.saldonum <> 0 - GROUP BY - salden.typ,salden.id - LIMIT 100 - "; - -// echo($sql); - - $items = $this->app->DB->SelectArr($sql); - - //print_r($items); - - $et = new EasyTable($this->app); - - $et->headings = array('Datum','Typ','Info','Betrag','Buchbetrag','Zuordnung'); - - foreach ($items as $item) { - - $checked = empty($item['doc_typ'])?'':'checked'; - - if (empty($item['doc_id'])) { - $object_identifier = ''; - } else { - $object_identifier = ucfirst($item['doc_typ'])."-".$item['doc_id']."-".$item['doc_info']; - } - - $input_id = 'fibu_object_select_'.$item['id']; - $object_select = ''; - - if ($item['saldonum'] < 0) { - $min = $item['saldo']; - $max = '0'; - } else { - $max = $item['saldo']; - $min = '0'; - } - - $row = array( - $item['datum'], - ucfirst($item['typ']), - $item['objektlink'], - $item['saldo'], - ''.$item['waehrung'], - $object_select, - '', - '', - '' - ); - $et->AddRow($row); - - $this->app->YUI->Autocomplete($input_id,'fibu_objekte'); - - } - - $et->DisplayNew('TAB1',"Gegenbuchung","noAction"); - $this->app->Tpl->Set('MESSAGE', $msg); - $this->app->Tpl->Parse('PAGE', "fibu_buchungen_zuordnen.tpl"); - } - } diff --git a/www/pages/kontoauszuege.php b/www/pages/kontoauszuege.php index 420310c8..61ed2093 100644 --- a/www/pages/kontoauszuege.php +++ b/www/pages/kontoauszuege.php @@ -32,13 +32,13 @@ class Kontoauszuege { case "kontoauszuege_konto_list": $allowed['konten_list'] = array('list'); - $heading = array('Bezeichnung', 'Kurzbezeichnung', 'Typ', 'Kontostand', 'Saldo','Menü'); + $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); + // $alignright = array(4,5,6,7,8); sdds - $findcols = array('k.bezeichnung', 'k.kurzbezeichnung', 'k.type', 'k.kontostand','saldo', 'k.id'); + $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; @@ -62,15 +62,13 @@ class Kontoauszuege { k.bezeichnung, k.kurzbezeichnung, ".$this->app->erp->FormatUCfirst('k.type').", - ".$this->app->erp->FormatMenge('SUM(COALESCE(ka.soll,0))',2)." AS kontostand, - ".$this->app->erp->ConcatSQL($saldolink)." AS saldo, + ".$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 - LEFT JOIN fibu_buchungen_alle fb ON - fb.id = ka.id AND fb.typ = 'kontoauszuege'"; + k.id = ka.konto"; $where = " k.aktiv = 1 AND ka.importfehler IS NULL "; @@ -122,8 +120,8 @@ class Kontoauszuege { $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'); + $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; @@ -165,9 +163,9 @@ class Kontoauszuege { $sql = "SELECT SQL_CALC_FOUND_ROWS * FROM ( SELECT k.id, $dropnbox, - ".$app->erp->FormatDateTimeShort('k.importdatum').", - (SELECT kurzbezeichnung FROM konten WHERE konten.id = k.konto), - ".$app->erp->FormatDate('k.buchung').", + ".$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( From 69172672b211b5dc2bbeb96e34fca4b9750b7b0a Mon Sep 17 00:00:00 2001 From: OpenXE <> Date: Tue, 11 Apr 2023 15:20:40 +0200 Subject: [PATCH 45/61] fibu_buchhaltung belege zuordnen multi option --- www/lib/class.erpapi.php | 6 +-- www/pages/content/fibu_buchungen_zuordnen.tpl | 23 ++++---- www/pages/fibu_buchungen.php | 54 +++++++++++++------ 3 files changed, 53 insertions(+), 30 deletions(-) diff --git a/www/lib/class.erpapi.php b/www/lib/class.erpapi.php index 02609f61..da7f2d1c 100644 --- a/www/lib/class.erpapi.php +++ b/www/lib/class.erpapi.php @@ -35973,7 +35973,7 @@ function Firmendaten($field,$projekt="") * Auftrag: gesamtsumme, rechnung: soll, gutschrift: soll verbindlichkeit: betrag * returns array(array(betrag, waehrung)) one line per waehrung */ - public function GetSaldenDokument($id, $type, string $cascadelevel = '') : array { + public function GetSaldenDokument(int $id, string $type, string $cascadelevel = '') : array { if ($cascadelevel != '') { $documents = $this->GetZahlungenAssociatedDocuments($id, $type, $cascadelevel); @@ -36014,9 +36014,9 @@ function Firmendaten($field,$projekt="") /* * Calculate the payment amount of a document * Auftrag: gesamtsumme, rechnung: soll, gutschrift: soll verbindlichkeit: betrag - * returns array(array(betrag, waehrung)) or empty array + * returns array(betrag, waehrung) or empty array if multiple */ - public function GetSaldoDokument($id, $type) : array { + public function GetSaldoDokument(int $id, string $type) : array { $sql = " SELECT diff --git a/www/pages/content/fibu_buchungen_zuordnen.tpl b/www/pages/content/fibu_buchungen_zuordnen.tpl index d6777670..272722e0 100644 --- a/www/pages/content/fibu_buchungen_zuordnen.tpl +++ b/www/pages/content/fibu_buchungen_zuordnen.tpl @@ -40,7 +40,16 @@ Stapelverarbeitung - + @@ -50,17 +59,7 @@ - - - - - - - +
     alle markieren  alle markieren  +   + + +
    - -
    - -
    diff --git a/www/pages/fibu_buchungen.php b/www/pages/fibu_buchungen.php index cd23d33b..578d49d3 100644 --- a/www/pages/fibu_buchungen.php +++ b/www/pages/fibu_buchungen.php @@ -766,7 +766,7 @@ class Fibu_buchungen { } if ($submit == 'BUCHEN') { - + // Process multi action $ids = $this->app->Secure->GetPOST('ids'); $werte = $this->app->Secure->GetPOST('werte'); @@ -774,11 +774,12 @@ class Fibu_buchungen { $auswahl = $this->app->Secure->GetPOST('auswahl'); $vorschlaege = $this->app->Secure->GetPOST('vorschlaege'); $sachkonto = $this->app->Secure->GetPOST('sachkonto'); + $aktion = $this->app->Secure->GetPOST('sel_aktion'); - $sachkontoid = null; + $account_id = null; if (!empty($sachkonto)) { $sachkonto_kennung = explode(' ',$sachkonto)[0]; - $sachkontoid = $this->app->DB->SelectArr("SELECT id from kontorahmen WHERE sachkonto = '".$sachkonto_kennung."'")[0]['id']; + $account_id = $this->app->DB->SelectArr("SELECT id from kontorahmen WHERE sachkonto = '".$sachkonto_kennung."'")[0]['id']; } if (!empty($auswahl)) { @@ -794,28 +795,51 @@ class Fibu_buchungen { $von_id = (int) $von[1]; $betrag = $werte[$key_ids]; + $waehrung = $waehrungen[$key_ids]; - $doc_id = null; + $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 ($sachkontoid) { - $doc_typ = 'kontorahmen'; - $doc_id = $sachkontoid; - } else if ($vorschlaege[$key_ids] != '_') { + $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()."','".$input['zeit'] = date("Y-m-d H:i")."', '')"; +// echo($sql."\n"); + $this->app->DB->Insert($sql); + } + 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()."','".$input['zeit'] = date("Y-m-d H:i")."', '')"; +// echo($sql."\n"); + $this->app->DB->Insert($sql); + break; + case 'vorschlag_diff_sachkonto': + if ($doc_id) { + $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()."','".$input['zeit'] = date("Y-m-d H:i")."', '')"; +// echo($sql."\n"); + $this->app->DB->Insert($sql); + } - $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 ($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()."','".$input['zeit'] = date("Y-m-d H:i")."', '')"; - $this->app->DB->Insert($sql); -// echo($sql."\n"); - } + // Retrieve counter doc saldo + 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()."','".$input['zeit'] = date("Y-m-d H:i")."', '')"; +// echo($sql."\n"); + $this->app->DB->Insert($sql); + } else { + $msg .= "
    Gegensaldo wurde nicht gebucht. ".count($doc_saldo)." ".$doc_saldo[0]['waehrung']."
    "; + } + break; + } } // auswahl } // foreach } // auswahl From ea6a6a5dda0ac10b4873f62df4d50010fc3e5cc4 Mon Sep 17 00:00:00 2001 From: OpenXE <> Date: Tue, 11 Apr 2023 15:40:23 +0200 Subject: [PATCH 46/61] rechnung removed all updates of `ist`, except from fibu_buchungen --- www/lib/class.erpapi.php | 4 ++-- www/pages/rechnung.php | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/www/lib/class.erpapi.php b/www/lib/class.erpapi.php index da7f2d1c..5c97843b 100644 --- a/www/lib/class.erpapi.php +++ b/www/lib/class.erpapi.php @@ -34525,7 +34525,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; @@ -35666,7 +35666,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); } } diff --git a/www/pages/rechnung.php b/www/pages/rechnung.php index a8bf9f42..46ce4573 100644 --- a/www/pages/rechnung.php +++ b/www/pages/rechnung.php @@ -277,18 +277,18 @@ class Rechnung extends GenRechnung */ public function removeManualPayed($invoiceId) { -/* if(empty($invoiceId) || !$this->app->DB->Select(sprintf('SELECT id FROM rechnung WHERE id = %d', $invoiceId))) { + if(empty($invoiceId) || !$this->app->DB->Select(sprintf('SELECT id FROM rechnung WHERE id = %d', $invoiceId))) { return false; } $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'" ); - return true;*/ + return true; } public function RechnungManuellBezahltEntfernen() @@ -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'" ); @@ -1829,7 +1829,7 @@ class Rechnung extends GenRechnung {*/ $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"); + 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"); }*/ From 170a33687f38d461aa80a6e0e461fcaca9841251 Mon Sep 17 00:00:00 2001 From: OpenXE <> Date: Tue, 11 Apr 2023 16:41:20 +0200 Subject: [PATCH 47/61] fibu_buchungen views fixed empty date on kontorahmen --- upgrade/data/db_schema.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/upgrade/data/db_schema.json b/upgrade/data/db_schema.json index 2527e23d..2a2c1f9f 100644 --- a/upgrade/data/db_schema.json +++ b/upgrade/data/db_schema.json @@ -117363,12 +117363,12 @@ { "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` <> '' and `auftrag`.`status` <> 'abgeschlossen' 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` <> '' and `rechnung`.`zahlungsstatus` <> 'bezahlt' 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` <> '' and `gutschrift`.`zahlungsstatus` <> 'bezahlt' 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` <> '' and `verbindlichkeit`.`status` <> 'bezahlt' 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 (select `firmendaten_werte`.`wert` from `firmendaten_werte` where `firmendaten_werte`.`name` = 'fibu_buchungen_startdatum') 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` = ''" + "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` <> '' and `auftrag`.`status` <> 'abgeschlossen' 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` <> '' and `rechnung`.`zahlungsstatus` <> 'bezahlt' 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` <> '' and `gutschrift`.`zahlungsstatus` <> 'bezahlt' 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` <> '' and `verbindlichkeit`.`status` <> 'bezahlt' 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` = ''" }, { "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 'abbuchung' AS `abbuchung`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,-`gutschrift`.`soll` AS `-``openxe``.``gutschrift``.``soll```,`gutschrift`.`waehrung` AS `waehrung`,'rechnung' AS `rechnung`,`gutschrift`.`rechnungid` AS `rechnungid`,`gutschrift`.`datum` AS `datum`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id` from `gutschrift` where `gutschrift`.`rechnungid` > 0 and `gutschrift`.`belegnr` <> '' union select 'abbuchung' AS `abbuchung`,'rechnung' AS `rechnung`,`gutschrift`.`rechnungid` AS `rechnungid`,`gutschrift`.`soll` AS `soll`,`gutschrift`.`waehrung` AS `waehrung`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`datum` AS `datum`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id` from `gutschrift` where `gutschrift`.`rechnungid` > 0 and `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')" + "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 'abbuchung' AS `abbuchung`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,-`gutschrift`.`soll` AS `-``openxe``.``gutschrift``.``soll```,`gutschrift`.`waehrung` AS `waehrung`,'rechnung' AS `rechnung`,`gutschrift`.`rechnungid` AS `rechnungid`,`gutschrift`.`datum` AS `datum`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id` from `gutschrift` where `gutschrift`.`rechnungid` > 0 and `gutschrift`.`belegnr` <> '' union select 'abbuchung' AS `abbuchung`,'rechnung' AS `rechnung`,`gutschrift`.`rechnungid` AS `rechnungid`,`gutschrift`.`soll` AS `soll`,`gutschrift`.`waehrung` AS `waehrung`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`datum` AS `datum`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id` from `gutschrift` where `gutschrift`.`rechnungid` > 0 and `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` = ''" } ] } From a43ac720b6459421ea9cfcd30f15ce7d194e8b70 Mon Sep 17 00:00:00 2001 From: OpenXE <> Date: Tue, 11 Apr 2023 16:51:42 +0200 Subject: [PATCH 48/61] fibu_buchungen single with sachkonto --- www/pages/content/fibu_buchungen_edit.tpl | 6 +- .../content/fibu_buchungen_einzelzuordnen.tpl | 28 +++-- www/pages/content/fibu_buchungen_zuordnen.tpl | 3 +- www/pages/fibu_buchungen.php | 115 ++++++++++++++---- 4 files changed, 112 insertions(+), 40 deletions(-) diff --git a/www/pages/content/fibu_buchungen_edit.tpl b/www/pages/content/fibu_buchungen_edit.tpl index 9a550898..d47a658b 100644 --- a/www/pages/content/fibu_buchungen_edit.tpl +++ b/www/pages/content/fibu_buchungen_edit.tpl @@ -45,7 +45,7 @@ {|Betrag|}: - + @@ -66,10 +66,10 @@ - {|Zeit|}: + {|Datum|}: - [ZEIT] + diff --git a/www/pages/content/fibu_buchungen_einzelzuordnen.tpl b/www/pages/content/fibu_buchungen_einzelzuordnen.tpl index d4f9c616..8d72c7b2 100644 --- a/www/pages/content/fibu_buchungen_einzelzuordnen.tpl +++ b/www/pages/content/fibu_buchungen_einzelzuordnen.tpl @@ -21,19 +21,31 @@ [TAB1] -
    +
    Stapelverarbeitung - - - - - - - + + + + + + + +
     Alle markieren 
     Mit Abweichung buchen 
     alle markieren  +   + + +
    + +
    diff --git a/www/pages/content/fibu_buchungen_zuordnen.tpl b/www/pages/content/fibu_buchungen_zuordnen.tpl index 272722e0..113c6e78 100644 --- a/www/pages/content/fibu_buchungen_zuordnen.tpl +++ b/www/pages/content/fibu_buchungen_zuordnen.tpl @@ -42,10 +42,9 @@  alle markieren    diff --git a/www/pages/fibu_buchungen.php b/www/pages/fibu_buchungen.php index 578d49d3..e7f7ced0 100644 --- a/www/pages/fibu_buchungen.php +++ b/www/pages/fibu_buchungen.php @@ -142,11 +142,11 @@ class Fibu_buchungen { case "fibu_buchungen_wahl": $allowed['fibu_buchungen_wahl'] = array('list'); - $heading = array('', '', 'Datum', 'Typ', 'Beleg', 'Von','Nach', 'Menü'); + $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.typ'); - $searchsql = array('f.buchungsart', 'f.typ', 'f.datum', 'f.doc_typ', 'f.doc_info'); + $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; @@ -175,7 +175,7 @@ class Fibu_buchungen { "; $where = "1"; - $count = "SELECT count(DISTINCT id) FROM fibu_buchungen_alle WHERE $where"; + $count = "SELECT count(id) FROM fibu_objekte"; // $groupby = ""; break; @@ -465,10 +465,10 @@ class Fibu_buchungen { $werte = array ( '' ); @@ -616,10 +616,14 @@ class Fibu_buchungen { $input['benutzer'] = $this->app->User->GetId(); $input['zeit'] = date("Y-m-d H:i"); $input['betrag'] = $this->app->erp->ReplaceBetrag(true,$input['betrag']); - $input['zeit'] = date("Y-m-d H:i"); - $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 = ""; @@ -663,6 +667,7 @@ class Fibu_buchungen { ".$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 @@ -712,6 +717,9 @@ class Fibu_buchungen { $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"); @@ -731,7 +739,7 @@ class Fibu_buchungen { $input['betrag'] = $this->app->Secure->GetPOST('betrag'); $input['waehrung'] = $this->app->Secure->GetPOST('waehrung'); $input['benutzer'] = $this->app->Secure->GetPOST('benutzer'); - $input['zeit'] = $this->app->Secure->GetPOST('zeit'); + $input['datum'] = $this->app->Secure->GetPOST('datum'); $input['internebemerkung'] = $this->app->Secure->GetPOST('internebemerkung'); @@ -756,6 +764,12 @@ class Fibu_buchungen { } + + 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'); @@ -773,8 +787,8 @@ class Fibu_buchungen { $waehrungen = $this->app->Secure->GetPOST('waehrungen'); $auswahl = $this->app->Secure->GetPOST('auswahl'); $vorschlaege = $this->app->Secure->GetPOST('vorschlaege'); - $sachkonto = $this->app->Secure->GetPOST('sachkonto'); $aktion = $this->app->Secure->GetPOST('sel_aktion'); + $sachkonto = $this->app->Secure->GetPOST('sachkonto'); $account_id = null; if (!empty($sachkonto)) { @@ -811,30 +825,34 @@ class Fibu_buchungen { 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()."','".$input['zeit'] = date("Y-m-d H:i")."', '')"; +// $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->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()."','".$input['zeit'] = date("Y-m-d H:i")."', '')"; +// $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->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()."','".$input['zeit'] = date("Y-m-d H:i")."', '')"; +// $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->app->DB->Insert($sql); + $this->fibu_buchungen_buchen($von_typ, $von_id, $doc_typ, $doc_id, -$betrag, $waehrung, $datum, ''); } - // Retrieve counter doc saldo 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()."','".$input['zeit'] = date("Y-m-d H:i")."', '')"; +// $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->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']."
    "; } @@ -842,7 +860,9 @@ class Fibu_buchungen { } } // auswahl } // foreach - } // auswahl + } else { // auswahl + $msg .= "
    Keine Posten ausgewählt.
    "; + } } // submit $this->fibu_rebuild_tables(); @@ -883,6 +903,14 @@ class Fibu_buchungen { $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'); + + $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"); @@ -893,6 +921,8 @@ class Fibu_buchungen { $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; @@ -931,18 +961,47 @@ class Fibu_buchungen { $doc_typ = strtolower($doc[0]); $doc_id = (int) $doc[1]; - $betrag = $werte[$key_ids]; - - if ($betrag != 0) { - $sql = "INSERT INTO `fibu_buchungen` (`von_typ`, `von_id`, `nach_typ`, `nach_id`, `betrag`, `waehrung`, `benutzer`, `zeit`, `internebemerkung`) VALUES ('".$von_typ."','".$von_id."','".$doc_typ."', '".$doc_id."', '".-$betrag."', '".$von_waehrung."', '".$this->app->User->GetID()."','". $input['zeit'] = date("Y-m-d H:i")."', '')"; - $this->app->DB->Insert($sql); - $count_success++; - } + $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.
    "; } } @@ -963,6 +1022,8 @@ class Fibu_buchungen { $this->app->Tpl->Set('MESSAGE', $msg); } + $this->app->YUI->AutoComplete('sachkonto', 'sachkonto'); + $this->app->Tpl->Parse('PAGE', "fibu_buchungen_einzelzuordnen.tpl"); } } From c4eaaa966a9d13acd7237734aa42eecb87d4dca1 Mon Sep 17 00:00:00 2001 From: OpenXE <> Date: Wed, 12 Apr 2023 22:16:52 +0200 Subject: [PATCH 49/61] removed fints-hbci, white-cup-filled-by-coffee.jpg --- .../fints-hbci-php/vendor/autoload.php | 7 - .../vendor/composer/ClassLoader.php | 445 ----- .../fints-hbci-php/vendor/composer/LICENSE | 21 - .../vendor/composer/autoload_classmap.php | 9 - .../vendor/composer/autoload_namespaces.php | 10 - .../vendor/composer/autoload_real.php | 47 - .../vendor/composer/autoload_static.php | 26 - .../vendor/composer/installed.json | 88 - .../fints-hbci-php/COMPATIBILITY.md | 1697 ----------------- .../mschindler83/fints-hbci-php/LICENSE | 21 - .../mschindler83/fints-hbci-php/README.md | 40 - .../lib/Fhp/Adapter/AdapterInterface.php | 18 - .../fints-hbci-php/lib/Fhp/Adapter/Curl.php | 106 - .../fints-hbci-php/lib/Fhp/Adapter/Debug.php | 56 - .../Adapter/Exception/AdapterException.php | 12 - .../Fhp/Adapter/Exception/CurlException.php | 40 - .../fints-hbci-php/lib/Fhp/Connection.php | 46 - .../DataElementGroups/EncryptionAlgorithm.php | 56 - .../Fhp/DataElementGroups/HashAlgorithm.php | 42 - .../lib/Fhp/DataElementGroups/KeyName.php | 35 - .../DataElementGroups/SecurityDateTime.php | 36 - .../SecurityIdentificationDetails.php | 28 - .../Fhp/DataElementGroups/SecurityProfile.php | 28 - .../DataElementGroups/SignatureAlgorithm.php | 41 - .../fints-hbci-php/lib/Fhp/DataTypes/Bin.php | 66 - .../fints-hbci-php/lib/Fhp/DataTypes/Dat.php | 56 - .../fints-hbci-php/lib/Fhp/DataTypes/Kik.php | 48 - .../fints-hbci-php/lib/Fhp/DataTypes/Kti.php | 76 - .../fints-hbci-php/lib/Fhp/DataTypes/Ktv.php | 58 - .../fints-hbci-php/lib/Fhp/Deg.php | 36 - .../fints-hbci-php/lib/Fhp/Dialog/Dialog.php | 339 ---- .../Exception/FailedRequestException.php | 96 - .../fints-hbci-php/lib/Fhp/FinTs.php | 418 ---- .../lib/Fhp/Message/AbstractMessage.php | 134 -- .../lib/Fhp/Message/Message.php | 196 -- .../fints-hbci-php/lib/Fhp/Model/Account.php | 219 --- .../lib/Fhp/Model/SEPAAccount.php | 141 -- .../fints-hbci-php/lib/Fhp/Model/Saldo.php | 97 - .../Model/StatementOfAccount/Statement.php | 134 -- .../StatementOfAccount/StatementOfAccount.php | 83 - .../Model/StatementOfAccount/Transaction.php | 359 ---- .../Fhp/Parser/Exception/MT940Exception.php | 12 - .../fints-hbci-php/lib/Fhp/Parser/MT940.php | 229 --- .../lib/Fhp/Response/GetAccounts.php | 60 - .../lib/Fhp/Response/GetSEPAAccounts.php | 56 - .../lib/Fhp/Response/GetSaldo.php | 70 - .../Fhp/Response/GetStatementOfAccount.php | 102 - .../lib/Fhp/Response/Initialization.php | 12 - .../lib/Fhp/Response/Response.php | 377 ---- .../lib/Fhp/Segment/AbstractSegment.php | 108 -- .../fints-hbci-php/lib/Fhp/Segment/HKEND.php | 41 - .../fints-hbci-php/lib/Fhp/Segment/HKIDN.php | 51 - .../fints-hbci-php/lib/Fhp/Segment/HKKAZ.php | 63 - .../fints-hbci-php/lib/Fhp/Segment/HKSAL.php | 48 - .../fints-hbci-php/lib/Fhp/Segment/HKSPA.php | 43 - .../fints-hbci-php/lib/Fhp/Segment/HKSYN.php | 47 - .../fints-hbci-php/lib/Fhp/Segment/HKVVB.php | 68 - .../fints-hbci-php/lib/Fhp/Segment/HNHBK.php | 52 - .../fints-hbci-php/lib/Fhp/Segment/HNHBS.php | 45 - .../fints-hbci-php/lib/Fhp/Segment/HNSHA.php | 51 - .../fints-hbci-php/lib/Fhp/Segment/HNSHK.php | 90 - .../fints-hbci-php/lib/Fhp/Segment/HNVSD.php | 61 - .../fints-hbci-php/lib/Fhp/Segment/HNVSK.php | 84 - .../lib/Fhp/Segment/NameMapping.php | 119 -- .../lib/Fhp/Segment/Segment.php | 35 - .../lib/Fhp/Segment/SegmentInterface.php | 24 - .../lib/Tests/Fhp/ConnectionTest.php | 47 - .../EncryptionAlgorithmTest.php | 28 - .../DataElementGroups/HashAlgorithmTest.php | 15 - .../Fhp/DataElementGroups/KeyNameTest.php | 16 - .../SecurityDateTimeTest.php | 15 - .../SecurityIdentificationDetailsTest.php | 17 - .../DataElementGroups/SecurityProfileTest.php | 14 - .../SignatureAlgorithmTest.php | 13 - .../lib/Tests/Fhp/DataTypes/BinTest.php | 22 - .../lib/Tests/Fhp/DataTypes/DatTest.php | 23 - .../lib/Tests/Fhp/DataTypes/KikTest.php | 13 - .../lib/Tests/Fhp/DataTypes/KtiTest.php | 14 - .../lib/Tests/Fhp/DataTypes/KtvTest.php | 14 - .../fints-hbci-php/lib/Tests/Fhp/DegTest.php | 20 - .../lib/Tests/Fhp/FinTsTest.php | 42 - .../lib/Tests/Fhp/Message/MessageTest.php | 91 - .../lib/Tests/Fhp/Model/AccountTest.php | 53 - .../lib/Tests/Fhp/Model/SEPAAccountTest.php | 25 - .../lib/Tests/Fhp/Model/SaldoTest.php | 28 - .../StatementOfAccountTest.php | 33 - .../StatementOfAccount/StatementTest.php | 58 - .../StatementOfAccount/TransactionTest.php | 37 - .../Tests/Fhp/ResponseTest/ResponseTest.php | 51 - .../fints-hbci-php/lib/Tests/TestInit.php | 33 - .../mschindler83/fints-hbci-php/phplint.sh | 31 - .../fints-hbci-php/phpunit.xml.dist | 24 - .../fints-hbci-php/vendor/psr/log/LICENSE | 19 - .../vendor/psr/log/Psr/Log/AbstractLogger.php | 128 -- .../log/Psr/Log/InvalidArgumentException.php | 7 - .../vendor/psr/log/Psr/Log/LogLevel.php | 18 - .../psr/log/Psr/Log/LoggerAwareInterface.php | 18 - .../psr/log/Psr/Log/LoggerAwareTrait.php | 26 - .../psr/log/Psr/Log/LoggerInterface.php | 123 -- .../vendor/psr/log/Psr/Log/LoggerTrait.php | 140 -- .../vendor/psr/log/Psr/Log/NullLogger.php | 28 - .../log/Psr/Log/Test/LoggerInterfaceTest.php | 140 -- .../fints-hbci-php/vendor/psr/log/README.md | 45 - .../templates/white-cup-filled-by-coffee.jpg | Bin 145455 -> 0 bytes 104 files changed, 8928 deletions(-) delete mode 100644 www/plugins/fints-hbci-php/vendor/autoload.php delete mode 100644 www/plugins/fints-hbci-php/vendor/composer/ClassLoader.php delete mode 100644 www/plugins/fints-hbci-php/vendor/composer/LICENSE delete mode 100644 www/plugins/fints-hbci-php/vendor/composer/autoload_classmap.php delete mode 100644 www/plugins/fints-hbci-php/vendor/composer/autoload_namespaces.php delete mode 100644 www/plugins/fints-hbci-php/vendor/composer/autoload_real.php delete mode 100644 www/plugins/fints-hbci-php/vendor/composer/autoload_static.php delete mode 100644 www/plugins/fints-hbci-php/vendor/composer/installed.json delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/COMPATIBILITY.md delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/LICENSE delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/README.md delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Adapter/AdapterInterface.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Adapter/Curl.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Adapter/Debug.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Adapter/Exception/AdapterException.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Adapter/Exception/CurlException.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Connection.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataElementGroups/EncryptionAlgorithm.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataElementGroups/HashAlgorithm.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataElementGroups/KeyName.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataElementGroups/SecurityDateTime.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataElementGroups/SecurityIdentificationDetails.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataElementGroups/SecurityProfile.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataElementGroups/SignatureAlgorithm.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataTypes/Bin.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataTypes/Dat.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataTypes/Kik.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataTypes/Kti.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataTypes/Ktv.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Deg.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Dialog/Dialog.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Dialog/Exception/FailedRequestException.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/FinTs.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Message/AbstractMessage.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Message/Message.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Model/Account.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Model/SEPAAccount.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Model/Saldo.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Model/StatementOfAccount/Statement.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Model/StatementOfAccount/StatementOfAccount.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Model/StatementOfAccount/Transaction.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Parser/Exception/MT940Exception.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Parser/MT940.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Response/GetAccounts.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Response/GetSEPAAccounts.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Response/GetSaldo.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Response/GetStatementOfAccount.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Response/Initialization.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Response/Response.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/AbstractSegment.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/HKEND.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/HKIDN.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/HKKAZ.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/HKSAL.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/HKSPA.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/HKSYN.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/HKVVB.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/HNHBK.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/HNHBS.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/HNSHA.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/HNSHK.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/HNVSD.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/HNVSK.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/NameMapping.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/Segment.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/SegmentInterface.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/ConnectionTest.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataElementGroups/EncryptionAlgorithmTest.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataElementGroups/HashAlgorithmTest.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataElementGroups/KeyNameTest.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataElementGroups/SecurityDateTimeTest.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataElementGroups/SecurityIdentificationDetailsTest.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataElementGroups/SecurityProfileTest.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataElementGroups/SignatureAlgorithmTest.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataTypes/BinTest.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataTypes/DatTest.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataTypes/KikTest.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataTypes/KtiTest.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataTypes/KtvTest.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DegTest.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/FinTsTest.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/Message/MessageTest.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/Model/AccountTest.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/Model/SEPAAccountTest.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/Model/SaldoTest.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/Model/StatementOfAccount/StatementOfAccountTest.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/Model/StatementOfAccount/StatementTest.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/Model/StatementOfAccount/TransactionTest.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/ResponseTest/ResponseTest.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/TestInit.php delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/phplint.sh delete mode 100644 www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/phpunit.xml.dist delete mode 100644 www/plugins/fints-hbci-php/vendor/psr/log/LICENSE delete mode 100644 www/plugins/fints-hbci-php/vendor/psr/log/Psr/Log/AbstractLogger.php delete mode 100644 www/plugins/fints-hbci-php/vendor/psr/log/Psr/Log/InvalidArgumentException.php delete mode 100644 www/plugins/fints-hbci-php/vendor/psr/log/Psr/Log/LogLevel.php delete mode 100644 www/plugins/fints-hbci-php/vendor/psr/log/Psr/Log/LoggerAwareInterface.php delete mode 100644 www/plugins/fints-hbci-php/vendor/psr/log/Psr/Log/LoggerAwareTrait.php delete mode 100644 www/plugins/fints-hbci-php/vendor/psr/log/Psr/Log/LoggerInterface.php delete mode 100644 www/plugins/fints-hbci-php/vendor/psr/log/Psr/Log/LoggerTrait.php delete mode 100644 www/plugins/fints-hbci-php/vendor/psr/log/Psr/Log/NullLogger.php delete mode 100644 www/plugins/fints-hbci-php/vendor/psr/log/Psr/Log/Test/LoggerInterfaceTest.php delete mode 100644 www/plugins/fints-hbci-php/vendor/psr/log/README.md delete mode 100644 www/themes/new/templates/white-cup-filled-by-coffee.jpg diff --git a/www/plugins/fints-hbci-php/vendor/autoload.php b/www/plugins/fints-hbci-php/vendor/autoload.php deleted file mode 100644 index 2107f7b6..00000000 --- a/www/plugins/fints-hbci-php/vendor/autoload.php +++ /dev/null @@ -1,7 +0,0 @@ - - * Jordi Boggiano - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Composer\Autoload; - -/** - * ClassLoader implements a PSR-0, PSR-4 and classmap class loader. - * - * $loader = new \Composer\Autoload\ClassLoader(); - * - * // register classes with namespaces - * $loader->add('Symfony\Component', __DIR__.'/component'); - * $loader->add('Symfony', __DIR__.'/framework'); - * - * // activate the autoloader - * $loader->register(); - * - * // to enable searching the include path (eg. for PEAR packages) - * $loader->setUseIncludePath(true); - * - * In this example, if you try to use a class in the Symfony\Component - * namespace or one of its children (Symfony\Component\Console for instance), - * the autoloader will first look for the class under the component/ - * directory, and it will then fallback to the framework/ directory if not - * found before giving up. - * - * This class is loosely based on the Symfony UniversalClassLoader. - * - * @author Fabien Potencier - * @author Jordi Boggiano - * @see http://www.php-fig.org/psr/psr-0/ - * @see http://www.php-fig.org/psr/psr-4/ - */ -class ClassLoader -{ - // PSR-4 - private $prefixLengthsPsr4 = array(); - private $prefixDirsPsr4 = array(); - private $fallbackDirsPsr4 = array(); - - // PSR-0 - private $prefixesPsr0 = array(); - private $fallbackDirsPsr0 = array(); - - private $useIncludePath = false; - private $classMap = array(); - private $classMapAuthoritative = false; - private $missingClasses = array(); - private $apcuPrefix; - - public function getPrefixes() - { - if (!empty($this->prefixesPsr0)) { - return call_user_func_array('array_merge', $this->prefixesPsr0); - } - - return array(); - } - - public function getPrefixesPsr4() - { - return $this->prefixDirsPsr4; - } - - public function getFallbackDirs() - { - return $this->fallbackDirsPsr0; - } - - public function getFallbackDirsPsr4() - { - return $this->fallbackDirsPsr4; - } - - public function getClassMap() - { - return $this->classMap; - } - - /** - * @param array $classMap Class to filename map - */ - public function addClassMap(array $classMap) - { - if ($this->classMap) { - $this->classMap = array_merge($this->classMap, $classMap); - } else { - $this->classMap = $classMap; - } - } - - /** - * Registers a set of PSR-0 directories for a given prefix, either - * appending or prepending to the ones previously set for this prefix. - * - * @param string $prefix The prefix - * @param array|string $paths The PSR-0 root directories - * @param bool $prepend Whether to prepend the directories - */ - public function add($prefix, $paths, $prepend = false) - { - if (!$prefix) { - if ($prepend) { - $this->fallbackDirsPsr0 = array_merge( - (array) $paths, - $this->fallbackDirsPsr0 - ); - } else { - $this->fallbackDirsPsr0 = array_merge( - $this->fallbackDirsPsr0, - (array) $paths - ); - } - - return; - } - - $first = $prefix[0]; - if (!isset($this->prefixesPsr0[$first][$prefix])) { - $this->prefixesPsr0[$first][$prefix] = (array) $paths; - - return; - } - if ($prepend) { - $this->prefixesPsr0[$first][$prefix] = array_merge( - (array) $paths, - $this->prefixesPsr0[$first][$prefix] - ); - } else { - $this->prefixesPsr0[$first][$prefix] = array_merge( - $this->prefixesPsr0[$first][$prefix], - (array) $paths - ); - } - } - - /** - * Registers a set of PSR-4 directories for a given namespace, either - * appending or prepending to the ones previously set for this namespace. - * - * @param string $prefix The prefix/namespace, with trailing '\\' - * @param array|string $paths The PSR-4 base directories - * @param bool $prepend Whether to prepend the directories - * - * @throws \InvalidArgumentException - */ - public function addPsr4($prefix, $paths, $prepend = false) - { - if (!$prefix) { - // Register directories for the root namespace. - if ($prepend) { - $this->fallbackDirsPsr4 = array_merge( - (array) $paths, - $this->fallbackDirsPsr4 - ); - } else { - $this->fallbackDirsPsr4 = array_merge( - $this->fallbackDirsPsr4, - (array) $paths - ); - } - } elseif (!isset($this->prefixDirsPsr4[$prefix])) { - // Register directories for a new namespace. - $length = strlen($prefix); - if ('\\' !== $prefix[$length - 1]) { - throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator."); - } - $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; - $this->prefixDirsPsr4[$prefix] = (array) $paths; - } elseif ($prepend) { - // Prepend directories for an already registered namespace. - $this->prefixDirsPsr4[$prefix] = array_merge( - (array) $paths, - $this->prefixDirsPsr4[$prefix] - ); - } else { - // Append directories for an already registered namespace. - $this->prefixDirsPsr4[$prefix] = array_merge( - $this->prefixDirsPsr4[$prefix], - (array) $paths - ); - } - } - - /** - * Registers a set of PSR-0 directories for a given prefix, - * replacing any others previously set for this prefix. - * - * @param string $prefix The prefix - * @param array|string $paths The PSR-0 base directories - */ - public function set($prefix, $paths) - { - if (!$prefix) { - $this->fallbackDirsPsr0 = (array) $paths; - } else { - $this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths; - } - } - - /** - * Registers a set of PSR-4 directories for a given namespace, - * replacing any others previously set for this namespace. - * - * @param string $prefix The prefix/namespace, with trailing '\\' - * @param array|string $paths The PSR-4 base directories - * - * @throws \InvalidArgumentException - */ - public function setPsr4($prefix, $paths) - { - if (!$prefix) { - $this->fallbackDirsPsr4 = (array) $paths; - } else { - $length = strlen($prefix); - if ('\\' !== $prefix[$length - 1]) { - throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator."); - } - $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; - $this->prefixDirsPsr4[$prefix] = (array) $paths; - } - } - - /** - * Turns on searching the include path for class files. - * - * @param bool $useIncludePath - */ - public function setUseIncludePath($useIncludePath) - { - $this->useIncludePath = $useIncludePath; - } - - /** - * Can be used to check if the autoloader uses the include path to check - * for classes. - * - * @return bool - */ - public function getUseIncludePath() - { - return $this->useIncludePath; - } - - /** - * Turns off searching the prefix and fallback directories for classes - * that have not been registered with the class map. - * - * @param bool $classMapAuthoritative - */ - public function setClassMapAuthoritative($classMapAuthoritative) - { - $this->classMapAuthoritative = $classMapAuthoritative; - } - - /** - * Should class lookup fail if not found in the current class map? - * - * @return bool - */ - public function isClassMapAuthoritative() - { - return $this->classMapAuthoritative; - } - - /** - * APCu prefix to use to cache found/not-found classes, if the extension is enabled. - * - * @param string|null $apcuPrefix - */ - public function setApcuPrefix($apcuPrefix) - { - $this->apcuPrefix = function_exists('apcu_fetch') && ini_get('apc.enabled') ? $apcuPrefix : null; - } - - /** - * The APCu prefix in use, or null if APCu caching is not enabled. - * - * @return string|null - */ - public function getApcuPrefix() - { - return $this->apcuPrefix; - } - - /** - * Registers this instance as an autoloader. - * - * @param bool $prepend Whether to prepend the autoloader or not - */ - public function register($prepend = false) - { - spl_autoload_register(array($this, 'loadClass'), true, $prepend); - } - - /** - * Unregisters this instance as an autoloader. - */ - public function unregister() - { - spl_autoload_unregister(array($this, 'loadClass')); - } - - /** - * Loads the given class or interface. - * - * @param string $class The name of the class - * @return bool|null True if loaded, null otherwise - */ - public function loadClass($class) - { - if ($file = $this->findFile($class)) { - includeFile($file); - - return true; - } - } - - /** - * Finds the path to the file where the class is defined. - * - * @param string $class The name of the class - * - * @return string|false The path if found, false otherwise - */ - public function findFile($class) - { - // class map lookup - if (isset($this->classMap[$class])) { - return $this->classMap[$class]; - } - if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) { - return false; - } - if (null !== $this->apcuPrefix) { - $file = apcu_fetch($this->apcuPrefix.$class, $hit); - if ($hit) { - return $file; - } - } - - $file = $this->findFileWithExtension($class, '.php'); - - // Search for Hack files if we are running on HHVM - if (false === $file && defined('HHVM_VERSION')) { - $file = $this->findFileWithExtension($class, '.hh'); - } - - if (null !== $this->apcuPrefix) { - apcu_add($this->apcuPrefix.$class, $file); - } - - if (false === $file) { - // Remember that this class does not exist. - $this->missingClasses[$class] = true; - } - - return $file; - } - - private function findFileWithExtension($class, $ext) - { - // PSR-4 lookup - $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext; - - $first = $class[0]; - if (isset($this->prefixLengthsPsr4[$first])) { - $subPath = $class; - while (false !== $lastPos = strrpos($subPath, '\\')) { - $subPath = substr($subPath, 0, $lastPos); - $search = $subPath.'\\'; - if (isset($this->prefixDirsPsr4[$search])) { - foreach ($this->prefixDirsPsr4[$search] as $dir) { - $length = $this->prefixLengthsPsr4[$first][$search]; - if (file_exists($file = $dir . DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $length))) { - return $file; - } - } - } - } - } - - // PSR-4 fallback dirs - foreach ($this->fallbackDirsPsr4 as $dir) { - if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) { - return $file; - } - } - - // PSR-0 lookup - if (false !== $pos = strrpos($class, '\\')) { - // namespaced class name - $logicalPathPsr0 = substr($logicalPathPsr4, 0, $pos + 1) - . strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR); - } else { - // PEAR-like class name - $logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext; - } - - if (isset($this->prefixesPsr0[$first])) { - foreach ($this->prefixesPsr0[$first] as $prefix => $dirs) { - if (0 === strpos($class, $prefix)) { - foreach ($dirs as $dir) { - if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) { - return $file; - } - } - } - } - } - - // PSR-0 fallback dirs - foreach ($this->fallbackDirsPsr0 as $dir) { - if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) { - return $file; - } - } - - // PSR-0 include paths. - if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) { - return $file; - } - - return false; - } -} - -/** - * Scope isolated include. - * - * Prevents access to $this/self from included files. - */ -function includeFile($file) -{ - include $file; -} diff --git a/www/plugins/fints-hbci-php/vendor/composer/LICENSE b/www/plugins/fints-hbci-php/vendor/composer/LICENSE deleted file mode 100644 index f27399a0..00000000 --- a/www/plugins/fints-hbci-php/vendor/composer/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ - -Copyright (c) Nils Adermann, Jordi Boggiano - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is furnished -to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - diff --git a/www/plugins/fints-hbci-php/vendor/composer/autoload_classmap.php b/www/plugins/fints-hbci-php/vendor/composer/autoload_classmap.php deleted file mode 100644 index 7a91153b..00000000 --- a/www/plugins/fints-hbci-php/vendor/composer/autoload_classmap.php +++ /dev/null @@ -1,9 +0,0 @@ - array($vendorDir . '/mschindler83/fints-hbci-php/lib'), -); diff --git a/www/plugins/fints-hbci-php/vendor/composer/autoload_real.php b/www/plugins/fints-hbci-php/vendor/composer/autoload_real.php deleted file mode 100644 index fecf5a5a..00000000 --- a/www/plugins/fints-hbci-php/vendor/composer/autoload_real.php +++ /dev/null @@ -1,47 +0,0 @@ -= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); - if ($useStaticLoader) { - require_once __DIR__ . '/autoload_static.php'; - - call_user_func(\Composer\Autoload\ComposerStaticInitbdcab6487556631ed3c158e0e8422e44::getInitializer($loader)); - } else { - $map = require __DIR__ . '/autoload_namespaces.php'; - foreach ($map as $namespace => $path) { - $loader->set($namespace, $path); - } - - $classMap = require __DIR__ . '/autoload_classmap.php'; - if ($classMap) { - $loader->addClassMap($classMap); - } - } - - $loader->register(true); - - return $loader; - } -} diff --git a/www/plugins/fints-hbci-php/vendor/composer/autoload_static.php b/www/plugins/fints-hbci-php/vendor/composer/autoload_static.php deleted file mode 100644 index 3bed9977..00000000 --- a/www/plugins/fints-hbci-php/vendor/composer/autoload_static.php +++ /dev/null @@ -1,26 +0,0 @@ - - array ( - 'Fhp' => - array ( - 0 => 'plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib' - ) - ), - ); - - public static function getInitializer(ClassLoader $loader) - { - return \Closure::bind(function () use ($loader) { - $loader->prefixesPsr0 = ComposerStaticInitbdcab6487556631ed3c158e0e8422e44::$prefixesPsr0; - - }, null, ClassLoader::class); - } -} diff --git a/www/plugins/fints-hbci-php/vendor/composer/installed.json b/www/plugins/fints-hbci-php/vendor/composer/installed.json deleted file mode 100644 index e692c060..00000000 --- a/www/plugins/fints-hbci-php/vendor/composer/installed.json +++ /dev/null @@ -1,88 +0,0 @@ -[ - { - "name": "psr/log", - "version": "1.0.2", - "version_normalized": "1.0.2.0", - "source": { - "type": "git", - "url": "https://github.com/php-fig/log.git", - "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d", - "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d", - "shasum": "" - }, - "require": { - "php": ">=5.3.0" - }, - "time": "2016-10-10T12:19:37+00:00", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "Psr\\Log\\": "Psr/Log/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" - } - ], - "description": "Common interface for logging libraries", - "homepage": "https://github.com/php-fig/log", - "keywords": [ - "log", - "psr", - "psr-3" - ] - }, - { - "name": "mschindler83/fints-hbci-php", - "version": "1.0.4", - "version_normalized": "1.0.4.0", - "source": { - "type": "git", - "url": "https://github.com/mschindler83/fints-hbci-php.git", - "reference": "e58cb825c178d4c39a8974a9dd93abbc8094551f" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/mschindler83/fints-hbci-php/zipball/e58cb825c178d4c39a8974a9dd93abbc8094551f", - "reference": "e58cb825c178d4c39a8974a9dd93abbc8094551f", - "shasum": "" - }, - "require": { - "php": ">=5.3.2", - "psr/log": "~1.0" - }, - "suggest": { - "monolog/monolog": "Allow sending log messages to a variety of different handlers" - }, - "time": "2017-02-15T13:48:21+00:00", - "type": "library", - "installation-source": "dist", - "autoload": { - "psr-0": { - "Fhp": "lib/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "description": "PHP Library for the protocols fints and hbci", - "homepage": "http://fints-hbci-php.markus-schindler.de" - } -] diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/COMPATIBILITY.md b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/COMPATIBILITY.md deleted file mode 100644 index 7f5e9446..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/COMPATIBILITY.md +++ /dev/null @@ -1,1697 +0,0 @@ -# BANK COMPATIBILITY LIST - -This library is verified to work with following banks. - -* If you can not find your bank, feel free to add it to the list. -* If you could successfully test the library with a bank, please mark it here as verified. - -## Bank List - -- [ ] 1822direkt (PIN/TAN) -- [ ] Aachener Bank eG -- [ ] Abtsgmünder Bank -Raiffeisen- -- [ ] AgrarB@nk -- [ ] akf bank GmbH & Co KG -- [ ] AKTIVBANK -- [ ] Allgäuer Volksbank Kempten-Sonthofen -- [ ] Allianz-Bank (Zndl der Oldenburgische Landesbank AG) -- [ ] Augsburger Aktienbank AG -- [ ] Augusta-Bank Raiffeisen-Volksbank -- [ ] Bad Waldseer Bank -- [ ] Baden-Württembergische Bank (BW-Bank) -- [ ] BAG Bankaktiengesellsch. Hamm -- [ ] Bank 1 Saar -- [ ] Bank f Orden u Mission Zndl vr bk Untertaunus -- [ ] Bank für Kirche und Caritas eG -- [ ] Bank für Kirche und Diakonie eG -- [ ] Bank im Bistum Essen eG -- [ ] Bank Sarasin -- [ ] Bank Schilling & Co -- [ ] Bank11Direkt GmbH -- [ ] Bankhaus Bauer -- [ ] Bankhaus C. Faisst OHG -- [ ] Bankhaus C. L. Seeliger -- [ ] Bankhaus Carl F. Plump & Co. GmbH & Co. KG -- [ ] Bankhaus E. Mayer AG -- [ ] Bankhaus Ellwanger & Geiger -- [ ] Bankhaus Hallbaum AG -- [ ] Bankhaus Jungholz Zndl der Raiffeisenbank Reutte -- [x] Bankhaus Kruber -- [ ] Bankhaus Lampe -- [ ] Bankhaus Löbbecke & Co. -- [ ] Bankhaus Ludwig Sperrer KG -- [ ] Bankhaus Max Flessa KG (Flessabank) -- [ ] Bankhaus Neelmeyer -- [x] Bankhaus Rautenschlein -- [ ] Bankverein Bebra -- [ ] Bankverein Werther AG -- [ ] Bayerische Landesbank Girozentrale -- [ ] BBBank -- [ ] Bensberger Bank eG -- [ ] Berkheimer Bank -- [ ] Berliner Sparkasse -- [x] Berliner Volksbank -- [ ] Bernhauser Bank -- [ ] Bezirkssparkasse Reichenau -- [ ] Bezirkssparkasse St. Blasien -- [ ] BHF-Bank AG -- [x] Birsteiner Volksbank -- [ ] biw Bank für Investments und Wertpapiere -- [x] BNP Paribas S.A. Niederlassung Deutschland - Consorsbank -- [ ] Bopfinger Bank Sechta-Ries -- [ ] Bordesholmer Sparkasse AG -- [ ] Borkener Volksbank eG. -- [ ] Brandenburger Bank Volksbank-Raiffeisenbank eG -- [ ] Bremer Landesbank -- [ ] Bremische Volksbank eG -- [ ] Brookmerlander Raiffeisenbank eG -- [ ] Brühler Kreditbank eG -- [ ] Budenheimer Volksbank -- [ ] BVB Volksbank Ndl d Frankfurter Volksbank -- [ ] Calenberger Kreditverein -- [ ] Cash Express Gesellschaft f Finanz-u Reisedienstleistungen -- [x] comdirect bank AG -- [ ] Commerzbank -- [ ] Crailsheimer Volksbank -alt- -- [ ] Credit- und Volksbank eG -- [x] Cronbank -- [ ] CVW - Privatbank -- [ ] Darmsheimer Bank -- [ ] Degussa Bank AG -- [ ] Dettinger Bank -- [ ] Deutsche Apotheker- und Ärztebank eG -- [ ] Deutsche Bank AG -- [x] Deutsche Bank Privat und Geschäftskunden AG -- [ ] Deutsche Genossenschafts-Hypothekenbank AG -- [x] Deutsche Kreditbank Berlin (DKB) AG -- [ ] Deutsche Skatbank Zndl VR Bank Altenburger Land -- [ ] Die Sparkasse Bremen -- [ ] Dithmarscher Volks- und Raiffeisenbank eG -- [ ] DKM Darlehnskasse Münster eG -- [ ] Donner & Reuschel Aktiengesellschaft -- [ ] Dortmunder Volksbank eG. -- [ ] Dresdner Volksbank Raiffeisenbank -- [ ] Düsseldorfer Bank eG -- [ ] Echterdinger Bank -- [ ] Eckernförder Bank eG Volksbank-Raiffeisenbank -- [ ] EDEKABANK AG -- [ ] Ehinger Volksbank -- [ ] Ehninger Bank -- [ ] Emsländische Volksbank eG -- [ ] Enztalbank -- [ ] Eppelborner Volksbank -alt- -- [ ] Erfurter Bank -- [ ] Erligheimer Bank -alt- -- [ ] Erzgebirgssparkasse -- [x] Ev. Darlehnsgenossenschaft eG -- [ ] Evangelische Kreditgenossenschaft -- [ ] Evenord-Bank -- [ ] Federseebank -- [ ] Fellbacher Bank -- [ ] Föhr-Amrumer Bank eG -- [ ] Förde Sparkasse -- [ ] Frankenberger Bank Raiffeisenbank -- [x] Frankfurter Bankgesellschaft -- [x] Frankfurter Sparkasse -- [x] Frankfurter Volksbank e.G. -- [ ] Freiberger Bank -- [ ] Freisinger Bank Volksbank-Raiffeisenbank -- [ ] Fürst Fugger Privatbank -- [ ] Fürst Fugger Privatbankiers -- [ ] Fürstlich Castell'sche Bank -- [ ] Gabler-Saliter-Bank KG -- [x] GALLINAT-BANK -- [x] GENO Broker GmbH -- [ ] Geno-Volks-Bank Essen eG. -- [ ] GenoBank DonauWald -- [ ] Genobank Mainz -- [ ] Genobank Rhön-Grabfeld -- [ ] Genobank Rhön-Grabfeld eG -- [ ] Genossenschaftsbank Meckenbeuren -- [ ] Genossenschaftsbank München -- [ ] Genossenschaftsbank Unterallgäu -- [ ] Genossenschaftsbank Weil im Schönbuch -- [ ] Genossenschaftsbank Wolfschlugen -- [ ] Geraer Bank -- [ ] Giengener Volksbank -alt- -- [ ] Gladbacher Bank AG -- [x] GLS Gemeinschaftsbank eG -- [x] Goyer & Göppel -- [ ] Grafschafter Volksbank eG -- [x] GRENKE BANK -- [x] Gries & Heissel - Bankiers -- [x] Groß-Gerauer Volksbank -- [ ] H + G BANK Heidelberg -- [ ] Hagnauer Volksbank -- [x] Hallertauer Volksbank -- [ ] Hamburger Bank v. 1861 -- [ ] Hamburger Bank von 1861 Volksbank eG -- [ ] Hamburger Sparkasse -- [x] Hannoversche Volksbank eG -- [ ] Harzsparkasse -- [ ] Hauck & Aufhäuser Privatbankiers -- [ ] Hausbank München -- [ ] Hegnacher Bank -alt- -- [ ] Heidelberger Volksbank -- [ ] Heidenheimer Volksbank -- [ ] Herner Sparkasse -- [ ] Hoerner-Bank -- [ ] HSBC Trinkaus & Burkhardt -- [ ] HSH Nordbank AG -- [ ] Hümmlinger Volksbank eG -- [x] Hüttenberger Bank -- [ ] Ibbenbürener Volksbank eG -- [x] ING-DiBa AG -- [ ] Internationales Bankhaus Bodensee -- [ ] Kasseler Bank -- [ ] Kasseler Sparkasse -- [ ] KBC-Bank -- [ ] Keine FinTS-Unterstützung -- [ ] Kerner Volksbank -- [ ] Kieler Volksbank eG -- [ ] Kölner Bank eG -- [ ] Korber Bank -- [ ] Kreis- und Stadtsparkasse Dillingen -- [ ] Kreis- und Stadtsparkasse Dinkelsbühl -- [ ] Kreis- und Stadtsparkasse Kaufbeuren -- [ ] Kreis- und Stadtsparkasse Wasserburg am Inn -- [x] Kreissparkasse Ahrweiler -- [ ] Kreissparkasse Anhalt-Bitterfeld -- [x] Kreissparkasse Augsburg -- [ ] Kreissparkasse Bautzen -- [ ] Kreissparkasse Bersenbrück -- [ ] Kreissparkasse Biberach -- [ ] Kreissparkasse Birkenfeld -- [ ] Kreissparkasse Bitburg-Prüm -- [ ] Kreissparkasse Böblingen -- [ ] Kreissparkasse Börde -- [ ] Kreissparkasse Döbeln -- [ ] Kreissparkasse Düsseldorf -- [ ] Kreissparkasse Eichsfeld -- [x] Kreissparkasse Esslingen-Nürtingen -- [ ] Kreissparkasse Euskirchen -- [ ] Kreissparkasse Freudenstadt -- [ ] Kreissparkasse Garmisch-Partenkirchen -- [ ] Kreissparkasse Gelnhausen -- [ ] Kreissparkasse Göppingen -- [ ] Kreissparkasse Gotha -- [ ] Kreissparkasse Grafschaft Bentheim zu Nordhorn -- [ ] Kreissparkasse Grafschaft Diepholz -- [ ] Kreissparkasse Groß-Gerau -- [ ] Kreissparkasse Halle (Westf.) -- [ ] Kreissparkasse Heidenheim -- [ ] Kreissparkasse Heilbronn -- [ ] Kreissparkasse Heinsberg -- [ ] Kreissparkasse Herzogtum Lauenburg -- [ ] Kreissparkasse Hildburghausen -- [ ] Kreissparkasse Höchstadt a. d. Aisch -- [x] Kreissparkasse Kaiserslautern -- [ ] Kreissparkasse Kelheim -- [x] Kreissparkasse Köln -- [ ] Kreissparkasse Kusel -- [ ] Kreissparkasse Limburg -- [ ] Kreissparkasse Ludwigsburg -- [ ] Kreissparkasse Mayen -- [ ] Kreissparkasse Melle -- [ ] Kreissparkasse Miesbach-Tegernsee -- [x] Kreissparkasse München Starnberg Ebersberg -- [ ] Kreissparkasse Nordhausen -- [ ] Kreissparkasse Northeim -- [ ] Kreissparkasse Ostalb (Aalen) -- [ ] Kreissparkasse Osterholz -- [ ] Kreissparkasse Peine -- [ ] Kreissparkasse Ravensburg -- [ ] Kreissparkasse Recklinghausen -- [ ] Kreissparkasse Reutlingen -- [ ] Kreissparkasse Rhein-Hunsrück -- [ ] Kreissparkasse Rottweil -- [ ] Kreissparkasse Saale-Orla -- [ ] Kreissparkasse Saalfeld-Rudolstadt -- [ ] Kreissparkasse Saarlouis -- [ ] Kreissparkasse Saarpfalz -- [ ] Kreissparkasse Schlüchtern -- [ ] Kreissparkasse Schongau -- [ ] Kreissparkasse Schwäbisch Hall-Crailsheim -- [ ] Kreissparkasse Schwalm-Eder -- [ ] Kreissparkasse Sigmaringen -- [ ] Kreissparkasse Soltau -- [ ] Kreissparkasse St. Wendel -- [ ] Kreissparkasse Stade -- [ ] Kreissparkasse Steinfurt -- [ ] Kreissparkasse Stendal -- [ ] Kreissparkasse Syke -- [ ] Kreissparkasse Traunstein-Trostberg -- [ ] Kreissparkasse Tübingen -- [ ] Kreissparkasse Tuttlingen -- [ ] Kreissparkasse Verden -- [ ] Kreissparkasse Vulkaneifel -- [ ] Kreissparkasse Waiblingen -- [ ] Kreissparkasse Walsrode -- [ ] Kreissparkasse Weilburg -- [ ] Kreissparkasse Wiedenbrück -- [ ] Kulmbacher Bank -- [ ] Kurhessische Landbank -- [ ] Kyffhäusersparkasse Artern-Sondershausen -- [ ] Landbank Horlofftal -- [ ] Landesbank Baden-Württemberg -- [ ] Landesbank Berlin AG -- [ ] Landeskirchliche Kredit-Genossenschaft Sachsen -- [ ] Landessparkasse zu Oldenburg -- [ ] Landsberg-Ammersee Bank -- [ ] Leutkircher Bank Raiffeisen- und Volksbank -- [ ] LevoBank Vereinte VB Lebach Eppelborn -- [ ] LIGA Bank -- [ ] Löchgauer Bank -- [ ] Lohner Bank eG -- [ ] M.M.Warburg & CO (AG & Co.) Kommanditgesellschaft auf Aktien -- [ ] Mainzer Volksbank -- [ ] Marcard,Stein & Co GmbH -- [ ] Märkische Bank -- [ ] Merck Finck & Co. -- [ ] Merkur Bank -- [ ] Mittelbrandenburgische Sparkasse in Potsdam -- [ ] MKB Mittelstandskreditbank Aktiengesellschaft -- [ ] MLP Finanzdienstleistungen -- [ ] MLP Finanzdienstleistungen Zw CS -- [ ] Münchner Bank -- [ ] Münsterländische Bank Thie & Co -- [ ] Murgtalbank Mitteltal - Obertal -alt- -- [ ] Müritz-Sparkasse -- [ ] Nassauische Sparkasse -- [ ] National-Bank -- [ ] net-m privatbank 1891 AG -- [ ] netbank AG -- [ ] NF Bank -- [ ] NIBC Bank Zndl Frankfurt am Main -- [ ] NL Bank Volks- und Raiffeisenbank eG -- [ ] Nord-Ostsee Sparkasse -- [ ] Nord/LB Hannover -- [ ] Norderstedter Bank eG -- [ ] Nordthüringer Volksbank -- [ ] norisbank GmbH -- [ ] Nufringer Bank -Raiffeisen- -- [ ] Oberbank AG -- [x] Offenbacher Volksbank -alt- -- [ ] Onstmettinger Bank -- [ ] Ostfriesische Volksbank eG -- [x] Ostsächsische Sparkasse Dresden -- [ ] Ostseesparkasse Rostock -- [ ] Paffrather Raiffeisenbank eG -- [ ] Paffrather RB eG -- [ ] Pax Bank -- [ ] PayCenter GmbH -- [ ] Postbank -- [ ] Postbank (Giro) -- [x] Postbank Geschäftskunden -- [x] PSD Bank Berlin-Brandenburg -- [x] PSD Bank Braunschweig -- [x] PSD Bank Hannover -- [x] PSD Bank Hessen-Thüringen -- [x] PSD Bank Kiel -- [x] PSD Bank Köln -- [x] PSD Bank Nord -- [x] PSD Bank Rhein-Ruhr -- [x] PSD Bank Westfalen-Lippe -- [ ] Raiba Asbach-Neustadt eG -- [ ] Raiba eG Unterwesterwald -- [ ] Raiba Lutzerather Höhe eG -- [ ] Raiba Mehring-Leiwen eG -- [ ] Raiba Rheinbach Euskirchen eG -- [ ] Raiffbk Neumarkt-St. Veit - Niederbergkirchen -- [ ] Raiffeisen Spar+Kreditbank Lauf a d Pegnitz -- [x] Raiffeisen Volksbank -- [ ] Raiffeisen- u Volksbank Dahn -- [ ] Raiffeisen- und Volksbank Bad Bramstedt eG -- [ ] Raiffeisen-Bank Bad Abbach-Saal -- [ ] Raiffeisen-Bank Bruck -- [ ] Raiffeisen-Bodenseebank -- [ ] Raiffeisen-Volksbank -- [ ] Raiffeisen-Volksbank Bad Staffelstein -- [ ] Raiffeisen-Volksbank Delmenhorst-Schierbrok eG -- [ ] Raiffeisen-Volksbank Dillingen -- [ ] Raiffeisen-Volksbank Donauwörth -- [ ] Raiffeisen-Volksbank Ebersberg -- [ ] Raiffeisen-Volksbank Fürth -- [ ] Raiffeisen-Volksbank Grafeld-Nortrup eG -- [ ] Raiffeisen-Volksbank Haßberge -- [ ] Raiffeisen-Volksbank Hermsdorfer Kreuz -- [ ] Raiffeisen-Volksbank Isen-Sempt -- [ ] Raiffeisen-Volksbank Jever eG -- [ ] Raiffeisen-Volksbank Kronach-Ludwigsstadt -- [ ] Raiffeisen-Volksbank Lichtenfels-Itzgrund -- [ ] Raiffeisen-Volksbank Miltenberg -- [ ] Raiffeisen-Volksbank Neuburg/Donau -- [ ] Raiffeisen-Volksbank Neustadt eG -- [ ] Raiffeisen-Volksbank Oder-Spree eG -- [ ] Raiffeisen-Volksbank Quedlinburg-Aschersleben eG -- [ ] Raiffeisen-Volksbank Ries -- [ ] Raiffeisen-Volksbank Saale-Orla -- [ ] Raiffeisen-Volksbank Uplengen-Remels eG -- [ ] Raiffeisen-Volksbank Varel-Nordenham eG -- [ ] Raiffeisen-Volksbank Wemding -- [ ] Raiffeisenbank -- [ ] Raiffeisenbank -alt- -- [ ] Raiffeisenbank Adelzhausen-Sielenbach -- [ ] Raiffeisenbank Aichhalden-Hardt-Sulgen -- [ ] Raiffeisenbank Aiglsbach -- [ ] Raiffeisenbank Aitrang-Ruderatshofen -- [ ] Raiffeisenbank Alsheim-Gimbsheim -- [ ] Raiffeisenbank Altdorf-Ergolding -- [ ] Raiffeisenbank Altdorf-Feucht -- [ ] Raiffeisenbank Alteglofsheim-Hagelstadt -- [ ] Raiffeisenbank Altschweier -- [ ] Raiffeisenbank Alxing-Bruck -- [x] Raiffeisenbank Alzey-Land -- [ ] Raiffeisenbank am Dreisessel -- [ ] Raiffeisenbank Am Goldenen Steig -- [ ] Raiffeisenbank am Kulm -- [ ] Raiffeisenbank am Rothsee -- [ ] Raiffeisenbank Anklam eG -- [ ] Raiffeisenbank Anzing-Forstern -alt- -- [ ] Raiffeisenbank Aresing-Hörzhausen-Schiltberg -- [ ] Raiffeisenbank Arnstorf -- [ ] Raiffeisenbank Asbach-Sorga -- [ ] Raiffeisenbank Aschaffenburg -- [ ] Raiffeisenbank Aschau-Samerberg -- [ ] Raiffeisenbank Aschberg -- [ ] Raiffeisenbank Auerbach-Freihung -- [ ] Raiffeisenbank Augsburger Land West -- [ ] Raiffeisenbank Aulendorf -- [ ] Raiffeisenbank Bachgau -- [ ] Raiffeisenbank Bad Doberan eG -- [ ] Raiffeisenbank Bad Gögging -- [x] Raiffeisenbank Bad Homburg Ndl d FrankfurterVB -- [ ] Raiffeisenbank Bad Kötzting -- [ ] Raiffeisenbank Bad Saulgau -- [ ] Raiffeisenbank Bad Schussenried -- [ ] Raiffeisenbank Bad Windsheim -- [ ] Raiffeisenbank Baiertal -- [ ] Raiffeisenbank Baisweil-Eggenthal-Friesenried -- [ ] Raiffeisenbank Bargteheide eG -- [ ] Raiffeisenbank Bauschlott -- [ ] Raiffeisenbank Beilngries -- [ ] Raiffeisenbank Berching-Freystadt-Mühlhausen -- [ ] Raiffeisenbank Berg im Gau-Langenmosen -alt- -- [ ] Raiffeisenbank Berg-Bad Steben -- [ ] Raiffeisenbank Berne-Moorriem eG -- [ ] Raiffeisenbank Beuerberg-Eurasburg -- [ ] Raiffeisenbank Bibertal-Kötz -- [ ] Raiffeisenbank Biebergrund-Petersberg -- [ ] Raiffeisenbank Bissingen -- [ ] Raiffeisenbank Böllingertal -- [ ] Raiffeisenbank Borken -- [ ] Raiffeisenbank Bretzfeld-Neuenstein -- [x] Raiffeisenbank Bruchköbel -alt- -- [ ] Raiffeisenbank Buch-Eching -- [ ] Raiffeisenbank Burghaun -- [ ] Raiffeisenbank Butjadingen-Abbehausen eG -- [ ] Raiffeisenbank Bütthard-Gaukönigshofen -- [ ] Raiffeisenbank Cham-Roding-Furth im Wald -- [ ] Raiffeisenbank Chiemgau-Nord - Obing -- [ ] Raiffeisenbank Deggendorf-Plattling -- [ ] Raiffeisenbank Dellmensingen -- [ ] Raiffeisenbank Denzlingen-Sexau -- [ ] Raiffeisenbank Dietersheim und Umgebung -- [ ] Raiffeisenbank Donau-Heuberg -- [ ] Raiffeisenbank Donau-Iller -- [ ] Raiffeisenbank Donaumooser Land -- [ ] Raiffeisenbank Donnersberg -alt- -- [ ] Raiffeisenbank Ebrachgrund -- [ ] Raiffeisenbank Ehekirchen-Oberhausen -- [ ] Raiffeisenbank Ehingen-Hochsträß -- [ ] Raiffeisenbank Eichenbühl und Umgebung -- [ ] Raiffeisenbank Elbmarsch eG -- [ ] Raiffeisenbank Elsavatal -- [ ] Raiffeisenbank Elztal -- [ ] Raiffeisenbank Emmerich eG -- [ ] Raiffeisenbank Emsland-Mitte eG -- [ ] Raiffeisenbank Erding -- [ ] Raiffeisenbank Erkelenz eG -- [ ] Raiffeisenbank Erlenmoos -- [ ] Raiffeisenbank Ersingen -- [ ] Raiffeisenbank Eschlkam-Lam-Lohberg-Neukirchen b Hl Blut -- [ ] Raiffeisenbank Eschweiler eG -- [ ] Raiffeisenbank Estenfeld-Bergtheim -- [ ] Raiffeisenbank Falkenstein-Wörth -- [ ] Raiffeisenbank Flachsmeer eG -- [ ] Raiffeisenbank Frankenhardt-Stimpfach -- [ ] Raiffeisenbank Frankenwald Ost-Oberkotzau -- [ ] Raiffeisenbank Frankenwinheim und Umgebung -- [ ] Raiffeisenbank Fränkisches Weinland -- [ ] Raiffeisenbank Frechen-Hürth -- [ ] Raiffeisenbank Freinsheim -- [ ] Raiffeisenbank Friedelsheim-Rödersheim -- [ ] Raiffeisenbank Fuchstal-Denklingen -- [ ] Raiffeisenbank Füssen-Pfronten-Nesselwang -- [ ] Raiffeisenbank Gaimersheim-Buxheim -- [ ] Raiffeisenbank Gammesfeld -- [ ] Raiffeisenbank Garrel eG -- [ ] Raiffeisenbank Geiselhöring-Pfaffenberg -- [ ] Raiffeisenbank Geisenhausen -- [ ] Raiffeisenbank Geislingen-Rosenfeld -- [ ] Raiffeisenbank Gerolsbach -- [ ] Raiffeisenbank Gmund am Tegernsee -- [ ] Raiffeisenbank Gößweinstein -alt- -- [ ] Raiffeisenbank Gotha -- [ ] Raiffeisenbank Grafenwöhr-Kirchenthumbach -- [ ] Raiffeisenbank Greding - Thalmässing -- [ ] Raiffeisenbank Grevenbroich eG -- [ ] Raiffeisenbank Griesstätt-Halfing -- [ ] Raiffeisenbank Grimma -- [x] Raiffeisenbank Groß-Rohrheim -- [ ] Raiffeisenbank Großhabersdorf-Roßtal -- [ ] Raiffeisenbank Gruibingen -- [ ] Raiffeisenbank Gymnich eG -- [ ] Raiffeisenbank Haag-Gars-Maitenbeth -- [ ] Raiffeisenbank Hagenow eG -- [ ] Raiffeisenbank Haibach-Obernau -- [ ] Raiffeisenbank Haldenwang -- [ ] Raiffeisenbank Hallbergmoos-Neufahrn -- [ ] Raiffeisenbank Hallertau -- [ ] Raiffeisenbank Handewitt eG -- [ ] Raiffeisenbank Hardt-Bruhrain -- [ ] Raiffeisenbank Hardtbg.-Alfter -- [ ] Raiffeisenbank Härten -alt- -- [ ] Raiffeisenbank Heide eG -- [ ] Raiffeisenbank Heidenheimer Alb -- [ ] Raiffeisenbank Heilsbronn-Windsbach -- [ ] Raiffeisenbank Hemau-Kallmünz -- [ ] Raiffeisenbank Hengersberg-Schöllnach -- [ ] Raiffeisenbank Heroldstatt -- [ ] Raiffeisenbank Herrnwahlthann-Teugn-Dünzling -alt- -- [ ] Raiffeisenbank Hersbruck -- [ ] Raiffeisenbank Hirschau -- [ ] Raiffeisenbank Höchberg -- [ ] Raiffeisenbank Hofkirchen-Bayerbach -- [ ] Raiffeisenbank Höhenkirchen und Umgebung -- [ ] Raiffeisenbank Hohenwart -alt- -- [ ] Raiffeisenbank Hollfeld-Waischenfeld-Aufseß -- [ ] Raiffeisenbank Holzkirchen-Otterfing -- [ ] Raiffeisenbank Horb -- [ ] Raiffeisenbank i Lkr Passau-Nord -- [ ] Raiffeisenbank Iller-Roth-Günz -- [ ] Raiffeisenbank Illertal -- [ ] Raiffeisenbank im Allgäuer Land -- [ ] Raiffeisenbank im Kreis Calw -- [ ] Raiffeisenbank im Naabtal -- [ ] Raiffeisenbank im Oberland -- [ ] Raiffeisenbank im Stiftland -- [ ] Raiffeisenbank im Südl Bayerischen Wald -- [ ] Raiffeisenbank Ingersheim -- [ ] Raiffeisenbank Irrel eG -- [ ] Raiffeisenbank Isar-Loisachtal -- [ ] Raiffeisenbank Jessen eG -- [ ] Raiffeisenbank Jettingen-Scheppach -- [ ] Raiffeisenbank Junkersdorf eG -- [ ] Raiffeisenbank Kaarst eG -- [ ] Raiffeisenbank Kaisersesch eG -- [ ] Raiffeisenbank Kaiserstuhl -- [ ] Raiffeisenbank Kalbe-Bismark eG -- [ ] Raiffeisenbank Kallmünz -alt- -- [ ] Raiffeisenbank Kaltenkirchen eG -- [ ] Raiffeisenbank Karlstadt-Gemünden -- [ ] Raiffeisenbank Kastellaun eG -- [ ] Raiffeisenbank Kehrig eG -- [ ] Raiffeisenbank Kemnather Land - Steinwald -- [ ] Raiffeisenbank Kieselbronn -- [ ] Raiffeisenbank Kirchberg v. Wald -- [ ] Raiffeisenbank Kirchheim-Walheim -- [ ] Raiffeisenbank Kirchweihtal -- [x] Raiffeisenbank Kirtorf -- [ ] Raiffeisenbank Kissing-Mering -- [ ] Raiffeisenbank Kitzinger Land -- [ ] Raiffeisenbank Knoblauchsland Nürnberg-Buch -- [ ] Raiffeisenbank Kocher-Jagst -- [ ] Raiffeisenbank Kraichgau -- [ ] Raiffeisenbank Kreuzwertheim-Hasloch -alt- -- [ ] Raiffeisenbank Krumbach/Schwaben -- [ ] Raiffeisenbank Küps-Mitwitz-Stockheim -- [ ] Raiffeisenbank Kürten-Odenthal eG -- [ ] Raiffeisenbank Langenschwarz -- [ ] Raiffeisenbank Lech-Ammersee -- [ ] Raiffeisenbank Leezen eG -- [ ] Raiffeisenbank Lorup eG -- [x] Raiffeisenbank Maintal Ndl d Frankfurter VB -- [ ] Raiffeisenbank Maitis -- [ ] Raiffeisenbank Malchin eG -- [ ] Raiffeisenbank Mangfalltal -alt- -- [ ] Raiffeisenbank Maselheim-Äpfingen -- [ ] Raiffeisenbank Maßbach -- [ ] Raiffeisenbank Mengkofen-Loiching -- [ ] Raiffeisenbank Mittelbiberach -- [ ] Raiffeisenbank Mittelrhein eG -- [ ] Raiffeisenbank Moormerland eG -- [ ] Raiffeisenbank Moselkrampen eG -- [ ] Raiffeisenbank Münchaurach -alt- -- [ ] Raiffeisenbank München -alt- -- [ ] Raiffeisenbank München-Nord -- [ ] Raiffeisenbank München-Süd -- [ ] Raiffeisenbank Mutlangen -- [ ] Raiffeisenbank Nahe eG -- [ ] Raiffeisenbank Neudenau-Stein-Herbolzheim -- [ ] Raiffeisenbank Neumarkt -- [ ] Raiffeisenbank Neustadt-Vohenstrauß -- [ ] Raiffeisenbank Neustadt, Sachs -- [ ] Raiffeisenbank Niedere Alb -- [ ] Raiffeisenbank Nordkreis Landsberg -- [x] Raiffeisenbank Nördliche Bergstraße -- [ ] Raiffeisenbank Oberallgäu-Süd -- [ ] Raiffeisenbank Oberaudorf -- [ ] Raiffeisenbank Oberer Wald -- [ ] Raiffeisenbank Oberes Bühlertal -- [ ] Raiffeisenbank Oberes Gäu Ergenzingen -- [ ] Raiffeisenbank Oberessendorf -- [ ] Raiffeisenbank Obereßfeld-Römhild -- [ ] Raiffeisenbank Oberferrieden-Burgthann -- [ ] Raiffeisenbank Obergermaringen -- [ ] Raiffeisenbank Oberhaardt-Gäu -- [ ] Raiffeisenbank Oberland -- [ ] Raiffeisenbank Obermain Nord -- [ ] Raiffeisenbank Obernburg -- [ ] Raiffeisenbank Oberpfalz Süd -- [ ] Raiffeisenbank Oberschleißheim -- [x] Raiffeisenbank Oberursel -- [x] Raiffeisenbank Offenbach/M.-Bieber -- [ ] Raiffeisenbank Oldenburg eG -- [ ] Raiffeisenbank östl. Südeifel eG -- [ ] Raiffeisenbank Ostprignitz-Ruppin eG -- [ ] Raiffeisenbank Ottenbach -- [ ] Raiffeisenbank Owschlag eG -- [ ] Raiffeisenbank Parsberg-Velburg -- [ ] Raiffeisenbank Pfaffenhausen -- [ ] Raiffeisenbank Pfaffenhofen a d Glonn -- [ ] Raiffeisenbank Pfaffenwinkel -- [ ] Raiffeisenbank Pfeffenhausen-Rottenburg -- [ ] Raiffeisenbank Plankstetten -- [ ] Raiffeisenbank Pretzfeld -alt- -- [ ] Raiffeisenbank Rain am Lech -- [ ] Raiffeisenbank Raisting -- [ ] Raiffeisenbank Rastede eG -- [ ] Raiffeisenbank Rattiszell-Konzell -- [ ] Raiffeisenbank Ratzeburg eG -- [ ] Raiffeisenbank Ravensburg -- [ ] Raiffeisenbank Regensburg-Wenzenbach -- [ ] Raiffeisenbank Reischach-Wurmannsquick-Zeilarn -- [ ] Raiffeisenbank Reute-Gaisbeuren -- [ ] Raiffeisenbank Rhein-Berg eG -- [x] Raiffeisenbank Ried -- [ ] Raiffeisenbank Riedenburg-Lobsing -- [ ] Raiffeisenbank Rißtal -- [ ] Raiffeisenbank Ronshausen-Marksuhl -- [ ] Raiffeisenbank Rosenstein -- [ ] Raiffeisenbank Roth-Schwabach -- [ ] Raiffeisenbank Rottumtal -- [ ] Raiffeisenbank RSA -- [ ] Raiffeisenbank Rupertiwinkel -- [ ] Raiffeisenbank Salzweg-Thyrnau -- [x] Raiffeisenbank Schaafheim -- [ ] Raiffeisenbank Scharrel eG -- [ ] Raiffeisenbank Schefflenz-Seckach -alt- -- [ ] Raiffeisenbank Schlat -alt- -- [ ] Raiffeisenbank Schleusingen -- [ ] Raiffeisenbank Schrobenhausen -- [ ] Raiffeisenbank Schrobenhausener Land -- [ ] Raiffeisenbank Schrozberg-Rot am See -- [ ] Raiffeisenbank Schwandorf-Nittenau -- [ ] Raiffeisenbank Seebachgrund -- [ ] Raiffeisenbank Seeg -alt- -- [ ] Raiffeisenbank Seestermühe eG -- [ ] Raiffeisenbank Simmerath eG -- [ ] Raiffeisenbank Singoldtal -- [ ] Raiffeisenbank Sondelfingen -- [ ] Raiffeisenbank Sonnenwald -- [ ] Raiffeisenbank Sparneck-Stammbach-Zell -- [ ] Raiffeisenbank St. Augustin eG -- [ ] Raiffeisenbank St. Wolfgang-Schwindkirchen -- [ ] Raiffeisenbank Stauden -- [ ] Raiffeisenbank Stegaurach -- [ ] Raiffeisenbank Steinheim -- [ ] Raiffeisenbank Strücklingen-Idafehn eG -- [ ] Raiffeisenbank Struvenhütten eG -- [ ] Raiffeisenbank Südhardt Durmersheim -- [ ] Raiffeisenbank Südliches Ostallgäu -- [ ] Raiffeisenbank südöstl. Starnberger See -- [ ] Raiffeisenbank Südstormarn eG -- [ ] Raiffeisenbank Südtondern-Bredstedt/Land eG -- [ ] Raiffeisenbank Sulzbach-Rosenberg -- [ ] Raiffeisenbank Tattenh-Großkarolinenf -- [ ] Raiffeisenbank Taufkirchen-Oberneukirchen -- [ ] Raiffeisenbank Teck -- [ ] Raiffeisenbank Thurnauer Land -- [ ] Raiffeisenbank Todenbüttel eG -- [ ] Raiffeisenbank Tölzer Land -- [ ] Raiffeisenbank Travemünde eG -- [ ] Raiffeisenbank Trendelburg -- [ ] Raiffeisenbank Trostberg-Traunreut -- [ ] Raiffeisenbank Tüngental -- [ ] Raiffeisenbank Uehlfeld-Dachsbach -- [ ] Raiffeisenbank Ulsenheim-Gollhofen -alt- -- [ ] Raiffeisenbank Unteres Inntal -- [ ] Raiffeisenbank Unteres Vilstal -- [ ] Raiffeisenbank Unteres Zusamtal -- [ ] Raiffeisenbank Unterschleißheim-Haimhn -alt- -- [ ] Raiffeisenbank Urbach -- [ ] Raiffeisenbank Ursensollen-Ammerthal-Hohenburg -- [ ] Raiffeisenbank Vellberg-Großaltdorf -- [ ] Raiffeisenbank Vilshofener Land -- [x] Raiffeisenbank Vogelsberg -- [ ] Raiffeisenbank Volkach-Wiesentheid -- [ ] Raiffeisenbank Volkmarsen -- [ ] Raiffeisenbank von 1895 eG -- [ ] Raiffeisenbank Vorallgäu -- [ ] Raiffeisenbank Vordere Alb -- [ ] Raiffeisenbank Vordersteinenberg -- [ ] Raiffeisenbank Wald-Görisried -- [ ] Raiffeisenbank Waldaschaff-Heigenbrücken -- [ ] Raiffeisenbank Wallgau-Krün -- [ ] Raiffeisenbank Walpertskirchen-Wörth-Hörlkofen -- [ ] Raiffeisenbank Waren eG -- [ ] Raiffeisenbank Weiden -- [ ] Raiffeisenbank Weil u Umgebung -- [ ] Raiffeisenbank Weilheim -- [ ] Raiffeisenbank Weissach -- [ ] Raiffeisenbank Weissacher Tal -- [ ] Raiffeisenbank Weißenburg-Gunzenhausen -- [ ] Raiffeisenbank Welling eG -- [ ] Raiffeisenbank Werdau-Zwickau -- [ ] Raiffeisenbank Werratal-Landeck Zw -- [ ] Raiffeisenbank Westallgäu -- [ ] Raiffeisenbank Westeifel eG -- [ ] Raiffeisenbank Westhausen -- [ ] Raiffeisenbank Westkreis Fürstenfeldbruck -- [ ] Raiffeisenbank Wiehl eG -- [ ] Raiffeisenbank Wiesede-Marcardsmoor eG -- [ ] Raiffeisenbank Wimsheim-Mönsheim -- [ ] Raiffeisenbank Wittislingen -- [ ] Raiffeisenbank Wüstenselbitz -- [ ] Raiffeisenbank Wyhl -- [ ] Raiffeisenbank Zeitz eG -- [ ] Raiffeisenbank Zeller Land eG -- [ ] Raiffeisenbank Zndl VB Nordschwarzwald -- [ ] Raiffeisenbank Zorneding -- [ ] Raiffeisenbk Ingolstadt-Pfaffenhofen-Eichstätt -- [ ] Raiffeisenbk. Niederwallmenach -- [x] Raiffeisenkasse Erbes-Büdesheim und Umgebung -- [ ] Raiffeisenkasse Wiesbach -- [ ] Raiffeisenlandesbank Oberösterreich -- [ ] RaiffeisenVolksbank Gewerbebank -- [ ] RB Bernkastel-Wittlich eG -- [ ] RB eG Heinsberg -- [ ] RB eG Lauenburg -- [ ] RB eG, Heinsberg -- [ ] RB eG, Leezen -- [ ] RB Fischenich-Kendenich eG -- [ ] RB Frechen-Hürth eG -- [ ] RB Grafschaft-Wachtberg eG -- [ ] RB Hatten-Wardenburg -- [ ] RB Much-Ruppichteroth eG -- [x] Rheingauer Volksbank -- [ ] Rhön-Rennsteig-Sparkasse -- [ ] Ritterschaftl. Kreditinst. Stade -- [ ] Rosbacher Raiffeisenbank eG -- [ ] Rostocker Volks- und Raiffeisenbank eG -- [ ] Rottaler Raiffeisenbank -- [ ] Rottaler Volksbank-Raiffeisenbank Eggenfelden -- [ ] RSB Retail + Service Bank -- [x] Rüsselsheimer Volksbank -- [ ] RV Bank Rhein-Haardt -- [ ] RV-Bank -- [ ] RVB Grafeld-Nortup eG -- [ ] Saalesparkasse -- [ ] SaarLB -- [ ] Salzlandsparkasse -- [ ] Santander Bank -- [ ] Sberbank Direct -- [ ] Scharnhauser Bank -- [ ] Schwäbische Bank AG -- [ ] SDK Menden eG -- [ ] SDK Oeventrop eG -- [ ] SDK Schloß Holte-Stukenbrock -- [ ] SG BANK AG -- [ ] SKG BANK AG / SKG BANK GmbH -- [ ] SpaDaka Aegidienberg eG -- [ ] Spadaka Bockum-Hövel eG. -- [ ] Spadaka Gescher eG -- [ ] Spadaka Minden-Porta Westfalica -- [ ] Spadaka Reken eG. -- [x] Spar- u Kreditbank ev-freikirchl Gemeinden -- [ ] Spar- und Darlehnskasse Börde Lamstedt-Hechthausen -- [ ] Spar- und Darlehnskasse Dinklage eG -- [ ] Spar- und Darlehnskasse Friesoythe eG -- [ ] Spar- und Darlehnskasse Holtland eG -- [ ] Spar- und Darlehnskasse Immendorf eG -- [ ] Spar- und Darlehnskasse Stockhausen -- [x] Spar- und Darlehnskasse Zell -alt- -- [ ] Spar- und Kreditbank -- [ ] Spar- und Kreditbank eG -- [ ] Spar- und Kreditbank Hardt -- [ ] Spar- und Kreditbank Witten eG -- [ ] Spar-u. Kredit-Bank -- [ ] Sparda-Bank Augsburg eG -- [ ] Sparda-Bank Baden-Württemberg eG -- [ ] Sparda-Bank Berlin eG -- [ ] Sparda-Bank Hamburg eG -- [ ] Sparda-Bank Hannover eG -- [ ] Sparda-Bank Hessen eG -- [ ] Sparda-Bank München eG -- [ ] Sparda-Bank Münster eG -- [ ] Sparda-Bank Nürnberg eG -- [ ] Sparda-Bank Regensburg eG -- [x] Sparda-Bank Südwest eG -- [ ] Sparda-Bank West eG -- [ ] SparDaKa Brachelen eG -- [ ] Spardaka Hoengen eG -- [ ] Sparkasse Aachen -- [ ] Sparkasse Allgäu (Kempten) -- [ ] Sparkasse Altenburger Land -- [ ] Sparkasse Altmark-West -- [ ] Sparkasse Altötting-Mühldorf a.Inn -- [ ] Sparkasse am Niederrhein -- [ ] Sparkasse Amberg-Sulzbach -- [ ] Sparkasse Arnsberg -- [ ] Sparkasse Arnstadt-Ilmenau -- [ ] Sparkasse Aschaffenburg-Alzenau -- [ ] Sparkasse Attendorn-Lennestadt-Kichhundern -- [ ] Sparkasse Aurich-Norden -- [ ] Sparkasse Bad Hersfeld-Rotenburg -- [ ] Sparkasse Bad Kissingen -- [ ] Sparkasse Bad Neustadt a. d. Saale -- [ ] Sparkasse Bad Tölz-Wolfratshausen -- [ ] Sparkasse Bamberg -- [ ] Sparkasse Barnim -- [ ] Sparkasse Battenberg -- [ ] Sparkasse Bayreuth -- [ ] Sparkasse Beckum-Wadersloh -- [ ] Sparkasse Bensheim -- [ ] Sparkasse Berchtesgadener Land -- [ ] Sparkasse Bergkamen-Bönen -- [ ] Sparkasse Bielefeld -- [ ] Sparkasse Bochum -- [ ] Sparkasse Bodensee -- [ ] Sparkasse Bonndorf-Stühlingen -- [ ] Sparkasse Bottrop -- [ ] Sparkasse Bühl -- [ ] Sparkasse Burbach-Neunkirchen -- [ ] Sparkasse Burgenlandkreis -- [ ] Sparkasse Celle -- [ ] Sparkasse Chemnitz -- [ ] Sparkasse Dachau -- [ ] Sparkasse Darmstadt -- [ ] Sparkasse Deggendorf -- [ ] Sparkasse der Homburgischen Gemeinden -- [ ] Sparkasse Dieburg -- [ ] Sparkasse Dillenburg -- [ ] Sparkasse Dinslaken-Voerde-Hünxe -- [ ] Sparkasse Donauwörth -- [ ] Sparkasse Donnersberg -- [ ] Sparkasse Dortmund -- [ ] Sparkasse Duderstadt -- [ ] Sparkasse Duisburg -- [ ] Sparkasse Düren -- [ ] Sparkasse Eichstätt -- [ ] Sparkasse Einbeck -- [ ] Sparkasse Elbe-Elster -- [ ] Sparkasse Elmshorn -- [ ] Sparkasse Emden -- [ ] Sparkasse Emsdetten-Ochtrup -- [ ] Sparkasse Emsland -- [ ] Sparkasse Engen-Gottmadingen -- [ ] Sparkasse Ennepetal-Breckerfeld -- [ ] Sparkasse Erding - Dorfen -- [ ] Sparkasse Erwitte-Anröchte -- [ ] Sparkasse Essen -- [ ] Sparkasse Finnentrop -- [ ] Sparkasse Forchheim -- [ ] Sparkasse Freiburg - Nördlicher Breisgau -- [ ] Sparkasse Freising -- [ ] Sparkasse Freyung-Grafenau -- [ ] Sparkasse Fröndenberg -- [ ] Sparkasse Fulda -- [ ] Sparkasse Fürstenfeldbruck -- [ ] Sparkasse Fürth -- [ ] Sparkasse Gelsenkirchen -- [ ] Sparkasse Gengenbach -- [ ] Sparkasse Gera-Greiz -- [ ] Sparkasse Germersheim-Kandel -- [ ] Sparkasse Geseke -- [ ] Sparkasse Giessen -- [ ] Sparkasse Gifhorn-Wolfsburg -- [ ] Sparkasse Goslar/Harz -- [ ] Sparkasse Göttingen -- [ ] Sparkasse Grünberg -- [ ] Sparkasse Gummersbach-Bergneustadt -- [ ] Sparkasse Günzburg-Krumbach -- [ ] Sparkasse Gütersloh -- [ ] Sparkasse Hagen -- [ ] Sparkasse Hamm -- [ ] Sparkasse Hanau -- [ ] Sparkasse Hanauerland -- [ ] Sparkasse Hannover -- [ ] Sparkasse Harburg-Buxtehude -- [ ] Sparkasse Haslach-Zell -- [ ] Sparkasse Hattingen -- [ ] Sparkasse Heidelberg -- [ ] Sparkasse Hennstedt-Wesselburen -- [ ] Sparkasse Herford -- [ ] Sparkasse Hilden-Ratingen-Velbert -- [ ] Sparkasse Hildesheim -- [ ] Sparkasse Hochfranken -- [ ] Sparkasse Hochrhein -- [ ] Sparkasse Hochsauerland -- [ ] Sparkasse Hochschwarzwald -- [ ] Sparkasse Hohenlohekreis -- [ ] Sparkasse Hohenwestedt -- [ ] Sparkasse Holstein -- [ ] Sparkasse Höxter -- [ ] Sparkasse im Landkreis Cham -- [ ] Sparkasse im Landkreis Neustadt-Bad Winsheim -- [ ] Sparkasse im Landkreis Schwandorf -- [ ] Sparkasse Ingolstadt -- [ ] Sparkasse Iserlohn -- [ ] Sparkasse Jena Saale-Holzland -- [ ] Sparkasse Jerichower Land -- [ ] Sparkasse Karlsruhe Ettlingen -- [ ] Sparkasse Kierspe-Meinerzhagen -- [ ] Sparkasse Kleve -- [ ] Sparkasse Koblenz -- [ ] Sparkasse KölnBonn -- [ ] Sparkasse Kraichgau (Bruchsal-Bretten-Sinsheim) -- [ ] Sparkasse Krefeld -- [ ] Sparkasse Kulmbach-Kronach -- [ ] Sparkasse Landsberg-Dießen -- [ ] Sparkasse Landshut -- [ ] Sparkasse Langen-Seligenstadt -- [ ] Sparkasse Laubach Hungen -- [ ] Sparkasse LeerWittmund -- [ ] Sparkasse Lemgo -- [ ] Sparkasse Leverkusen -- [ ] Sparkasse Lippstadt -- [ ] Sparkasse Lörrach-Rheinfelden -- [ ] Sparkasse Lüdenscheid -- [ ] Sparkasse Lüneburg -- [ ] Sparkasse Lünen -- [ ] Sparkasse Mainfranken-Würzburg -- [ ] Sparkasse Mainz -- [ ] Sparkasse Mansfeld-Südharz -- [ ] Sparkasse Marburg-Biedenkopf -- [ ] Sparkasse Markgräflerland -- [ ] Sparkasse Märkisch-Oderland -- [ ] Sparkasse Mecklenburg-Nordwest -- [ ] Sparkasse Mecklenburg-Schwerin -- [ ] Sparkasse Mecklenburg-Strelitz -- [ ] Sparkasse Meißen -- [ ] Sparkasse Memmingen-Lindau-Mindelheim -- [ ] Sparkasse Merzig-Wadern -- [ ] Sparkasse Meschede -- [ ] Sparkasse Miltenberg-Obernburg -- [ ] Sparkasse Minden-Lübbecke -- [ ] Sparkasse Mittelfranken-Süd -- [ ] Sparkasse Mittelholstein AG -- [ ] Sparkasse Mittelmosel-Eifel-Mosel-Hunsrück -- [ ] Sparkasse Mittelsachsen -- [ ] Sparkasse Mittelthüringen -- [ ] Sparkasse Moosburg -- [ ] Sparkasse Muldental -- [ ] Sparkasse Mülheim a.d. Ruhr -- [ ] Sparkasse Münden -- [ ] Sparkasse Neckartal-Odenwald -- [ ] Sparkasse Neu-Ulm-Illertissen -- [ ] Sparkasse Neubrandenburg-Demmin -- [ ] Sparkasse Neuburg-Rain -- [ ] Sparkasse Neumarkt i.d.OPf.-Parsberg -- [ ] Sparkasse Neunkirchen -- [ ] Sparkasse Neuss -- [ ] Sparkasse Neuwied -- [ ] Sparkasse Niederbayern Mitte -- [ ] Sparkasse Niederlausitz -- [ ] Sparkasse Nienburg -- [ ] Sparkasse Nördlingen -- [ ] Sparkasse Nürnberg -- [ ] Sparkasse Oberhessen -- [ ] Sparkasse Oberlausitz-Niederschlesien -- [ ] Sparkasse Oberpfalz-Nord -- [ ] Sparkasse Odenwaldkreis -- [ ] Sparkasse Oder-Spree -- [ ] Sparkasse Offenbach -- [ ] Sparkasse Offenburg/Ortenau -- [ ] Sparkasse Olpe-Drolshagen-Wenden -- [ ] Sparkasse Osnabrück -- [ ] Sparkasse Osterode am Harz -- [ ] Sparkasse Ostprignitz-Ruppin -- [ ] Sparkasse Ostunterfranken -- [ ] Sparkasse Paderborn-Detmold -- [ ] Sparkasse Parchim-Lübz -- [ ] Sparkasse Passau -- [x] Sparkasse Pforzheim Calw -- [ ] Sparkasse Pfullendorf-Meßkirch -- [ ] Sparkasse Prignitz -- [ ] Sparkasse Radevormwald-Hückeswagen -- [ ] Sparkasse Rastatt-Gernsbach -- [ ] Sparkasse Regen-Viechtach -- [ ] Sparkasse Regensburg -- [ ] Sparkasse Remscheid -- [ ] Sparkasse Rhein-Haardt -- [ ] Sparkasse Rhein-Nahe -- [ ] Sparkasse Rhein-Neckar-Nord (Mannheim/Weinheim) -- [ ] Sparkasse Rietberg -- [ ] Sparkasse Riezlern -- [ ] Sparkasse Rosenheim-Bad/Aibling -- [ ] Sparkasse Rotenburg-Bremervörde -- [ ] Sparkasse Rottal-Inn -- [ ] Sparkasse Saabrücken -- [ ] Sparkasse Salem-Heiligenberg -- [ ] Sparkasse Schaumburg -- [ ] Sparkasse Scheeßel -- [ ] Sparkasse Schönau-Todtnau -- [ ] Sparkasse Schopfheim-Zell -- [ ] Sparkasse Schwarzwald-Baar -- [ ] Sparkasse Schweinfurt -- [ ] Sparkasse Siegen -- [ ] Sparkasse Singen-Radolfzell -- [ ] Sparkasse Soest -- [ ] Sparkasse Sonneberg -- [ ] Sparkasse Spree-Neiße -- [ ] Sparkasse Stade-Altes Land -- [ ] Sparkasse Starkenburg -- [ ] Sparkasse Staufen-Breisach -- [ ] Sparkasse Stockach -- [ ] Sparkasse Straelen -- [ ] Sparkasse Südholstein -- [ ] Sparkasse Südliche Weinstraße Landau -- [ ] Sparkasse Südwestpfalz -- [ ] Sparkasse Tauberfranken -- [ ] Sparkasse Trier -- [ ] Sparkasse Uckermark -- [ ] Sparkasse Uecker-Randow -- [ ] Sparkasse Uelzen Lüchow-Dannenberg -- [ ] Sparkasse Ulm -- [ ] Sparkasse UnnaKamen -- [ ] Sparkasse Unstrut-Hainich -- [ ] Sparkasse Vogtland -- [ ] Sparkasse Vorpommern -- [ ] Sparkasse Waldeck-Frankenberg -- [ ] Sparkasse Werl -- [ ] Sparkasse Werra-Meißner -- [ ] Sparkasse Weserbergland -- [ ] Sparkasse Westerwald-Sieg -- [ ] Sparkasse Westholstein -- [ ] Sparkasse Westmünsterland -- [ ] Sparkasse Wetzlar -- [ ] Sparkasse Wilhelmshaven -- [ ] Sparkasse Wittenberg -- [ ] Sparkasse Wittgenstein -- [ ] Sparkasse Wolfach -- [ ] Sparkasse Worms-Alzey-Ried -- [ ] Sparkasse Zollernalb -- [ ] Sparkasse zu Lübeck AG -- [ ] Sparkasse Zwickau -- [ ] Spreewaldbank eG Volksbank-Raiffeisenbank -- [ ] St. Galler Kantonalbank Deutschland -- [ ] St. Wendeler Volksbank -- [ ] Stadt- und Kreissparkasse Erlangen -- [ ] Stadt- und Kreissparkasse Leipzig -- [ ] Stadt- und Kreissparkasse Rothenburg -- [ ] Stadt-Sparkasse Düsseldorf -- [ ] Stadt-Sparkasse Haan (Rheinland) -- [ ] Stadt-Sparkasse Langenfeld -- [ ] Stadt-Sparkasse Solingen -- [ ] Stadtsparkasse Aichach-Schrobenhausen -- [x] Stadtsparkasse Augsburg -- [ ] Stadtsparkasse Bad Honnef -- [ ] Stadtsparkasse Bad Oeynhausen -- [ ] Stadtsparkasse Bad Pyrmont -- [ ] Stadtsparkasse Bad Sachsa -- [ ] Stadtsparkasse Baden-Baden Gaggenau -- [ ] Stadtsparkasse Barsinghausen -- [ ] Stadtsparkasse Blomberg/Lippe -- [ ] Stadtsparkasse Bocholt -- [ ] Stadtsparkasse Borken -- [ ] Stadtsparkasse Burgdorf -- [ ] Stadtsparkasse Cuxhaven -- [ ] Stadtsparkasse Delbrück -- [ ] Stadtsparkasse Dessau -- [ ] Stadtsparkasse Emmerich-Rees -- [ ] Stadtsparkasse Felsberg -- [ ] Stadtsparkasse Gevelsberg -- [ ] Stadtsparkasse Gladbeck -- [ ] Stadtsparkasse Grebenstein -- [ ] Stadtsparkasse Gronau -- [ ] Stadtsparkasse Haltern am See -- [ ] Stadtsparkasse Hameln -- [ ] Stadtsparkasse Herdecke -- [ ] Stadtsparkasse Hilchenbach -- [ ] Stadtsparkasse Kaiserslautern -- [ ] Stadtsparkasse Lengerich -- [ ] Stadtsparkasse Magdeburg -- [ ] Stadtsparkasse Märkisches Sauerland Hemer-Menden -- [ ] Stadtsparkasse Mönchengladbach -- [ ] Stadtsparkasse München -- [ ] Stadtsparkasse Münsterland Ost -- [ ] Stadtsparkasse Porta Westfalica -- [ ] Stadtsparkasse Rahden -- [ ] Stadtsparkasse Rheine -- [ ] Stadtsparkasse Schmallenberg -- [ ] Stadtsparkasse Schwalmstadt -- [ ] Stadtsparkasse Schwedt -- [ ] Stadtsparkasse Schwelm -- [ ] Stadtsparkasse Schwerte -- [ ] Stadtsparkasse Sprockhövel -- [ ] Stadtsparkasse Versmold -- [ ] Stadtsparkasse Völklingen -- [ ] Stadtsparkasse Vorderpfalz -- [ ] Stadtsparkasse Wedel -- [ ] Stadtsparkasse Wermelskirchen -- [ ] Stadtsparkasse Werne -- [ ] Stadtsparkasse Wetter (Ruhr) -- [ ] Stadtsparkasse Witten -- [ ] Stadtsparkasse Wunsdorf -- [ ] Stadtsparkasse Wuppertal -- [ ] Steyler Missionssparinst. GmbH -- [ ] Stralsunder Volksbank eG -- [ ] Stuttgarter Volksbank -- [ ] Südwestbank -- [ ] Sydbank A/S -- [ ] Taunus-Sparkasse -- [x] Triodos Bank Deutschland -- [ ] Uhlbacher Bank -- [ ] UniCredit Bank - HypoVereinsbank AG -- [ ] Untertürkheimer Volksbank -- [x] VakifBank International Wien Zndl Frankfurt -- [ ] VB Arnsberg-Sundern eG. -- [ ] VB Bad Salzuflen eG -- [ ] VB Bielefeld eG -- [ ] VB Bitburg eG -- [ ] VB Clarholz-Lette-Beelen eG. -- [ ] VB Clenze-Schnega eG -- [ ] VB eG Bremerhaven -- [ ] VB eG im Landkr. Cuxhav. -- [ ] VB Eifel Mitte, Prüm -- [ ] VB Erkelenz-Hückelhofen-Wegberg eG -- [ ] VB Freudenberg eG -- [ ] VB Gelsenkirchen-Buer -- [ ] VB Grevenbrück eG -- [ ] VB Hunsrück eG -- [ ] VB Laer-Horstmar-Leer eG -- [ ] VB Mönchengladbach eG -- [x] VB Mörfelden-Walldorf Ndl d Frankfurter VB -- [ ] VB Nahetal eG -- [ ] VB Nordmünsterland Mitte eG -- [ ] VB RB eG, Neumünster -- [ ] VB RheinAhrEifel eG. -- [ ] VB Spelle-Freren eG -- [ ] VB Südkirchen-Cap.-Nordkirchen -- [ ] VB Vallendar-Niederwerth eG -- [ ] VB Westerkappeln-Wersen eG. -- [ ] VB Westerloh-Westerwiehe eG -- [ ] VB Wipperfürth-Lindlar eG -- [ ] VB Wolfsburg eG -- [ ] VBM Volksbank Mittelrhein eG -- [ ] VBU Volksbank im Unterland -- [ ] Verbands-Sparkasse Wesel -- [ ] Verbandssparkasse Goch-Kevelaer-Weeze -- [ ] Vereinigte Coburger Sparkassen -- [ ] Vereinigte Raiffeisenbank Burgstädt -- [ ] Vereinigte Raiffeisenbanken -- [ ] Vereinigte Sparkasse d. Ldkr. Pfaffenhofen -- [ ] Vereinigte Sparkasse Eschenbach, Neustadt, Vohenstrauß -- [ ] Vereinigte Sparkasse Gunzenhausen -- [ ] Vereinigte Sparkasse i. Ldkr. Weilheim -- [ ] Vereinigte Sparkasse im Märkischen Kreis -- [ ] Vereinigte Sparkassen Ansbach -- [ ] Vereinigte Volksbank -- [x] Vereinigte Volksbank Griesheim-Weiterstadt -- [ ] Vereinigte Volksbank im Regionalverband Saarbrücken -- [ ] Vereinigte Volksbank Limburg -- [x] Vereinigte Volksbank Maingau -- [ ] Vierländer Volksbank eG -- [ ] Voba Dünnwald-Holweide eG -- [ ] Volks- und Raiffeisenbank Boll -alt- -- [ ] Volks- und Raiffeisenbank Burg eG -- [ ] Volks- und Raiffeisenbank eG Leinebergland -- [ ] Volks- und Raiffeisenbank eG Wismar -- [ ] Volks- und Raiffeisenbank Eisleben eG -- [ ] Volks- und Raiffeisenbank Forst eG -- [ ] Volks- und Raiffeisenbank Fürstenw. Seelow Wriezen eG -- [ ] Volks- und Raiffeisenbank Güstrow eG -- [ ] Volks- und Raiffeisenbank Muldental -- [ ] Volks- und Raiffeisenbank Prignitz eG -- [ ] Volks- und Raiffeisenbank Saale-Unstrut eG -- [ ] Volks- und Raiffeisenbank Sylt eG -- [ ] Volks- und Raiffeisenbank Weilmünster -alt- -- [ ] Volksbank -- [ ] Volksbank 2000 eG. -- [ ] Volksbank Achern -- [ ] Volksbank Adelebsen eG -- [ ] Volksbank Aerzen eG -- [ ] Volksbank Ahlen Sassenberg Warendorf eG -- [ ] Volksbank Ahlerstedt eG -- [ ] Volksbank Allgäu-West -- [ ] Volksbank Altshausen -- [ ] Volksbank Alzey -- [ ] Volksbank am Ith eG -- [ ] Volksbank Amelsbüren eG -- [ ] Volksbank Ammerbuch -- [ ] Volksbank Ammerland-Süd eG -- [ ] Volksbank an der Niers -- [ ] Volksbank Anröchte eG -- [ ] Volksbank Appenweier-Urloffen Appenweier -alt- -- [ ] Volksbank Aschaffenburg -- [ ] Volksbank Ascheberg-Herbern eG. -- [ ] Volksbank Backnang -- [ ] Volksbank Bad Mergentheim -- [ ] Volksbank Bad Münder eG -- [ ] Volksbank Bad Oeynhausen-Herford eG -- [ ] Volksbank Bad Salzuflen eG -- [ ] Volksbank Bad Saulgau -- [ ] Volksbank Baden-Baden Rastatt -- [ ] Volksbank Baiersbronn -- [ ] Volksbank Bakum eG -- [ ] Volksbank Balingen -- [ ] Volksbank Baumberge eG -- [ ] Volksbank Bautzen -- [ ] Volksbank Bechtheim -- [ ] Volksbank Beckum eG. -- [ ] Volksbank Beilstein-Ilsfeld-Abstatt -- [ ] Volksbank Benninghausen eG -- [ ] Volksbank Bielefeld eG -- [ ] Volksbank Bigge-Lenne eG -- [ ] Volksbank Bitburg eG -- [ ] Volksbank Blaubeuren -- [ ] Volksbank Bocholt eG. -- [ ] Volksbank Bochum Witten eG -- [ ] Volksbank Bönen eG -- [ ] Volksbank Bonn Rhein-Sieg eG -- [ ] Volksbank Bookholzberg-Lemwerder eG -- [ ] Volksbank Börde-Bernburg eG -- [ ] Volksbank Börßum-Hornburg eG -- [ ] Volksbank Bösel eG -- [ ] Volksbank Brackenheim-Güglingen -- [ ] Volksbank Bramgau eG im Osnabrücker Land -- [ ] Volksbank Brandoberndorf -- [ ] Volksbank Braunlage eG -- [ ] Volksbank Breisgau Nord -- [ ] Volksbank Breisgau-Süd -- [ ] Volksbank Bremen-Nord eG -- [ ] Volksbank Brenztal -- [ ] Volksbank Brilon eG. -- [ ] Volksbank Brilon-Thülen eG -- [ ] Volksbank Bruchsal-Bretten -- [ ] Volksbank Bruchsal-Bretten -alt- -- [ ] Volksbank Brüggen-Nettetal eG -- [ ] Volksbank Bruhrain-Kraich-Hardt -- [x] Volksbank Büdingen -alt- -- [ ] Volksbank Bühl -- [ ] Volksbank Bühl Fil Kehl -- [ ] Volksbank Büren und Salzkotten eG -- [ ] Volksbank Butzbach -- [ ] Volksbank Chemnitz -- [ ] Volksbank Clenze-Hitzacker eG -- [ ] Volksbank Cloppenburg eG -- [ ] Volksbank Daaden -- [ ] Volksbank Damme-Osterfeine eG -- [x] Volksbank Darmstadt - Kreis Bergstraße -- [ ] Volksbank Darup-Rorup eG -- [ ] Volksbank Dassel eG -- [ ] Volksbank Deißlingen -- [ ] Volksbank Delbrück-Hövelshof eG -- [ ] Volksbank Delitzsch -- [ ] Volksbank Demmin eG -- [ ] Volksbank Dessau-Anhalt eG -- [ ] Volksbank Dettenhausen -- [ ] Volksbank Diepholz-Barnstorf eG -- [ ] Volksbank Dill VB und Raiffbk -- [ ] Volksbank Dillingen -- [ ] Volksbank Dinslaken eG -- [ ] Volksbank Donau-Neckar -- [ ] Volksbank Dornstetten -- [ ] Volksbank Dorsten eG. -- [ ] Volksbank Dortmund-Nordwest eG -- [x] Volksbank Dreieich -- [ ] Volksbank Dreiländereck -- [ ] Volksbank Driburg - Brakel - Steinheim eG -- [ ] Volksbank Düren eG -- [ ] Volksbank Ebingen -- [ ] Volksbank eG -- [ ] Volksbank eG Dransfeld Groß Schneen Hann.Mün. Staufenb. -- [ ] Volksbank eG Gelsenkirchen-Buer -- [ ] Volksbank eG Wolfsburg -- [x] Volksbank Egelsbach -alt- -- [ ] Volksbank Eichsfeld-Northeim eG -- [ ] Volksbank Einbeck eG -- [ ] Volksbank Eisbergen eG -- [ ] Volksbank Eisenberg eG -- [ ] Volksbank Elmshorn eG -- [ ] Volksbank Elsen-Wewer-Borchen eG -- [ ] Volksbank Eltville -- [ ] Volksbank Emstal Rütenbrock-Lathen eG -- [ ] Volksbank Emstek eG -- [ ] Volksbank Enger-Spenge eG -- [ ] Volksbank Enniger Ostenf. Westkirchen -- [ ] Volksbank Erft eG -- [ ] Volksbank Erle eG. -- [ ] Volksbank Erzgebirge -- [ ] Volksbank Erzgebirge -alt- -- [ ] Volksbank Esens-Holtriem eG -- [ ] Volksbank Essen-Cappeln eG -- [ ] Volksbank Esslingen -- [ ] Volksbank Ettlingen -- [ ] Volksbank Euskirchen eG -- [ ] Volksbank Feldatal -- [ ] Volksbank Filder -- [ ] Volksbank Flein-Talheim -- [ ] Volksbank Forchheim -- [ ] Volksbank Franken -- [ ] Volksbank Fredenbeck eG -- [ ] Volksbank Freiberg und Umgebung -- [ ] Volksbank Freiburg -- [ ] Volksbank Freudenberg eG. -- [ ] Volksbank Friedrichshafen -- [ ] Volksbank Ganderkesee-Hude eG -- [ ] Volksbank Gardelegen eG -- [ ] Volksbank Gebhardshain eG -- [ ] Volksbank Geest eG -- [ ] Volksbank Geeste-Nord eG -- [ ] Volksbank Gelderland eG -- [ ] Volksbank Gemen eG. -- [ ] Volksbank Georgsmarienhütte-Hagen eG -- [x] Volksbank Gersprenztal-Otzberg -- [ ] Volksbank Glan-Münchweiler -- [ ] Volksbank Glatten-Wittendorf -- [ ] Volksbank Goldner Grund -- [ ] Volksbank Göppingen -- [ ] Volksbank Göttingen eG -- [x] Volksbank Gräfenhausen -alt- -- [ ] Volksbank Grafschaft Hoya eG -- [x] Volksbank Grebenhain -- [ ] Volksbank Greifswald eG -- [ ] Volksbank Greven eG -- [ ] Volksbank Grevenbrück eG -- [x] Volksbank Griesheim -- [ ] Volksbank Gronau-Ahaus eG -- [ ] Volksbank Günzburg -- [ ] Volksbank Gütersloh eG -- [ ] Volksbank Haaren eG -- [ ] Volksbank Halle (Saale) eG -- [ ] Volksbank Halle/Westf. eG -- [ ] Volksbank Haltern eG -- [ ] Volksbank Hameln-Pyrmont eG -- [ ] Volksbank Hamm eG. -- [ ] Volksbank Hamm, Sieg -- [x] Volksbank Hankensbüttel-Wahrenholz eG -- [ ] Volksbank Harsewinkel eG. -- [ ] Volksbank Harzburg-Wernigerode eG -- [ ] Volksbank Haselünne eG -- [ ] Volksbank Hegau -- [ ] Volksbank Heiden eG. -- [ ] Volksbank Heilbronn -- [ ] Volksbank Heiligenstadt -- [ ] Volksbank Heimbach eG -- [ ] Volksbank Heinsberg eG -- [x] Volksbank Heldenbergen Ndl d Frankfurter VB -- [ ] Volksbank Hellweg eG. -- [ ] Volksbank Helmstedt eG -- [ ] Volksbank Herborn-Eschenburg -- [ ] Volksbank Herrenberg-Rottenburg -- [ ] Volksbank Heuberg -- [ ] Volksbank Heuchelheim -- [x] Volksbank Hildesheim-Lehrte-Pattensen eG -- [ ] Volksbank Hildesheimer Börde eG -- [ ] Volksbank Hochrhein -- [x] Volksbank Höchst -- [ ] Volksbank Hohenlimburg eG -- [ ] Volksbank Hohenlohe -- [ ] Volksbank Hohenneuffen -- [ ] Volksbank Hohenzollern -- [ ] Volksbank Höhr-Grenzhausen -alt- -- [ ] Volksbank Hoogstede-Wilsum eG -- [ ] Volksbank Horb -alt- -- [ ] Volksbank Horb-Freudenstadt -- [ ] Volksbank Hörste eG -- [ ] Volksbank Hörstel eG -- [ ] Volksbank Im Harz eG -- [ ] Volksbank im Kleinwalsertal -- [ ] Volksbank im Märkischen Kreis eG -- [ ] Volksbank im Siegerland eG. -- [ ] Volksbank Immenstadt -- [ ] Volksbank in Schaumburg eG -- [ ] Volksbank Itzehoe eG -- [ ] Volksbank Jestetten -- [ ] Volksbank Kaiserslautern-Nordwestpfalz -- [ ] Volksbank Kamen-Werne eG -- [ ] Volksbank Karlsruhe -- [ ] Volksbank Kehdingen eG -- [x] Volksbank Kelsterbach Ndl d Frankfurter VB -- [ ] Volksbank Kempen-Grefrath eG -- [ ] Volksbank Kierspe eG -- [ ] Volksbank Kinzigtal -- [ ] Volksbank Kirchberg-Hunsrück eG -- [ ] Volksbank Kirchheim-Nürtingen -- [ ] Volksbank Kirchhellen eG -- [ ] Volksbank Kirnau -- [ ] Volksbank Klettgau-Wutöschingen -- [ ] Volksbank Kleverland eG -- [ ] Volksbank Konstanz -- [ ] Volksbank Köthen eG -- [ ] Volksbank Kraichgau -- [ ] Volksbank Krautheim -- [ ] Volksbank Krefeld eG -- [ ] Volksbank Kur- und Rheinpfalz -- [ ] Volksbank Lahr -- [ ] Volksbank Laichingen -- [ ] Volksbank Langen-Gersten eG -- [ ] Volksbank Langendernbach -- [ ] Volksbank Lastrup eG -- [ ] Volksbank Laupheim -- [ ] Volksbank Lauterbach-Schlitz -- [ ] Volksbank Lauterecken -- [ ] Volksbank Leipzig -- [ ] Volksbank Lembeck-Rhade eG. -- [ ] Volksbank Lengerich eG -- [ ] Volksbank Limbach -- [ ] Volksbank Lingen eG -- [ ] Volksbank Lippstadt eG -- [ ] Volksbank Löbau-Zittau -- [ ] Volksbank Löningen eG -- [ ] Volksbank Lübbecke eG -- [ ] Volksbank Lübeck Landbank von 1902 eG -- [ ] Volksbank Lüdenscheid eG -- [ ] Volksbank Lüdinghausen-Olfen -- [ ] Volksbank Ludwigsburg -- [x] Volksbank Lüneburger Heide eG -- [ ] Volksbank Magdeburg eG -- [ ] Volksbank Magstadt -- [ ] Volksbank Main-Tauber -- [x] Volksbank Main-Taunus -- [x] Volksbank Mainspitze -- [ ] Volksbank Mainz-Finthen -- [ ] Volksbank Marl-Recklinghausen eG -- [ ] Volksbank Marsberg eG -- [ ] Volksbank Maulbronn-Oberderdingen -alt- -- [ ] Volksbank Medebach eG -- [ ] Volksbank Meerbusch eG -- [ ] Volksbank Meinerzhagen eG -- [ ] Volksbank Melle-Borgloh eG -- [ ] Volksbank Merzen-Fürstenau eG -- [ ] Volksbank Meßkirch Raiffeisenbank -- [ ] Volksbank Metzingen-Bad Urach -- [ ] Volksbank Minden eG -- [ ] Volksbank Mittelhessen -- [ ] Volksbank Mittleres Erzgebirge -- [ ] Volksbank Möckmühl-Neuenstadt -- [x] Volksbank Modau -- [x] Volksbank Modautal Modau -- [ ] Volksbank Mönchengladbach eG -- [ ] Volksbank Montabaur-Höhr-Grenzhausen -- [ ] Volksbank Mosbach -- [ ] Volksbank Mülheim-Kärlich eG -- [ ] Volksbank Müllheim -- [ ] Volksbank Münsingen -- [ ] Volksbank Münster eG -- [ ] Volksbank Murgtal Baiersbr-Klosterreichenbach -- [ ] Volksbank Nagoldtal -- [ ] Volksbank Nahe-Schaumberg -- [ ] Volksbank Neckartal -- [ ] Volksbank Neu-Ulm -- [ ] Volksbank Neuenkirchen-Vörden eG -- [ ] Volksbank Neumünster eG -- [ ] Volksbank Niederrhein eG -- [ ] Volksbank Nienburg eG -- [ ] Volksbank Nordharz eG -- [x] Volksbank Nordheide eG -- [ ] Volksbank Nordhümmling eG -- [ ] Volksbank Nordoberpfalz -- [ ] Volksbank Nordschwarzwald -- [ ] Volksbank Nottuln eG -- [ ] Volksbank Ober-Mörlen -- [ ] Volksbank Ochtrup eG -- [x] Volksbank Odenwald -- [ ] Volksbank Offenburg -- [ ] Volksbank Oldendorf eG -- [ ] Volksbank Olpe eG -- [ ] Volksbank Osnabrück eG -- [ ] Volksbank Osterburg-Wendland eG -- [ ] Volksbank Osterholz-Scharmbeck eG -- [ ] Volksbank Ostholstein Nord eG -- [ ] Volksbank Ostlippe eG. -- [ ] Volksbank Oyten eG -- [ ] Volksbank Paderborn eG -- [ ] Volksbank Paderborn-Höxter eG -- [ ] Volksbank Peine eG -- [ ] Volksbank Pforzheim -- [ ] Volksbank Pfullendorf -- [ ] Volksbank Pinneberg-Uetersen eG -- [ ] Volksbank Pirna -- [ ] Volksbank Plochingen -- [ ] Volksbank Quierschied -alt- -- [ ] Volksbank Raesfeld eG. -- [ ] Volksbank Raiffeisenbank -- [ ] Volksbank Raiffeisenbank Dachau -- [ ] Volksbank Raiffeisenbank Döbeln -- [ ] Volksbank Raiffeisenbank Eichstätt -- [ ] Volksbank Raiffeisenbank Fürstenfeldbruck -- [x] Volksbank Raiffeisenbank Hanau Ndl d Frankf VB -- [ ] Volksbank Raiffeisenbank Ismaning -- [ ] Volksbank Raiffeisenbank Mangfalltal-Rosenheim -- [ ] Volksbank Raiffeisenbank Meißen Großenhain -- [ ] Volksbank Raiffeisenbank Niederschlesien -- [ ] Volksbank Raiffeisenbank Oberbayern Südost -- [ ] Volksbank Raiffeisenbank Schlüchtern -- [ ] Volksbank Rathenow eG -- [ ] Volksbank Regensburg -- [ ] Volksbank Region Leonberg -- [ ] Volksbank Reiste-Eslohe eG -- [ ] Volksbank Rems -- [ ] Volksbank Remscheid-Solingen eG -- [x] Volksbank Remseck -- [ ] Volksbank Reutlingen -- [ ] Volksbank Rhede eG -- [ ] Volksbank Rhein-Lahn -- [ ] Volksbank Rhein-Lippe eG -- [ ] Volksbank Rhein-Ruhr eG -- [ ] Volksbank Rhein-Selz -alt- -- [ ] Volksbank Rhein-Wehra -- [ ] Volksbank Rhein-Wupper eG -- [ ] Volksbank Rheinböllen eG -- [ ] Volksbank Riesa -- [ ] Volksbank Rietberg eG -- [ ] Volksbank Rosenheim -alt- -- [ ] Volksbank Rot -- [ ] Volksbank Rottweil -- [ ] Volksbank Saaletal -- [ ] Volksbank Saar-West -- [ ] Volksbank Saarburg eG -- [ ] Volksbank Saarlouis -- [ ] Volksbank Saarpfalz -- [ ] Volksbank Saerbeck eG -- [ ] Volksbank Sandhofen -- [ ] Volksbank Sangerhausen eG -- [ ] Volksbank Sauerland eG -- [ ] Volksbank Schermbeck eG. -- [ ] Volksbank Schlangen eG -- [ ] Volksbank Schleswig eG -- [ ] Volksbank Schmallenberg eG -- [ ] Volksbank Schnathorst eG -- [ ] Volksbank Schrobenhausen -- [ ] Volksbank Schupbach -- [ ] Volksbank Schwäbisch Gmünd -- [ ] Volksbank Schwalmtal eG -- [ ] Volksbank Schwanewede eG -- [ ] Volksbank Schwarzwald-Neckar -- [x] Volksbank Seeheim-Jugenheim -- [ ] Volksbank Seesen eG -- [x] Volksbank Seligenstadt -- [ ] Volksbank Selm-Bork eG. -- [ ] Volksbank Senden eG -- [ ] Volksbank Seppenrade eG. -- [ ] Volksbank Siegerland eG -- [ ] Volksbank Siegerland eG. -- [ ] Volksbank Solling eG -- [ ] Volksbank Sottrum eG -- [ ] Volksbank Spelle-Freren eG -- [ ] Volksbank Sprakel eG. -- [ ] Volksbank Spremberg-Bad Muskau eG -- [ ] Volksbank Sprockhövel eG. -- [ ] Volksbank Stade-Cuxhaven eG -- [ ] Volksbank Staufen -- [ ] Volksbank Stein Eisingen -- [ ] Volksbank Stendal eG -- [ ] Volksbank Steyerberg eG -- [ ] Volksbank Stormarn eG -- [ ] Volksbank Störmede eG -- [ ] Volksbank Straubing -- [ ] Volksbank Strohgäu -- [ ] Volksbank Stuhr eG -- [ ] Volksbank Stutensee Hardt -- [x] Volksbank Südheide -- [ ] Volksbank Sulingen eG -- [ ] Volksbank Sulmtal -- [ ] Volksbank Sulzbachtal -alt- -- [ ] Volksbank Tailfingen -- [ ] Volksbank Tauber -alt- -- [ ] Volksbank Teltow-Fläming eG -- [ ] Volksbank Tettnang -- [ ] Volksbank Triberg -- [ ] Volksbank Trier eG -- [ ] Volksbank Trossingen -- [ ] Volksbank Tübingen -- [ ] Volksbank Überherrn -- [ ] Volksbank Überlingen -- [x] Volksbank Überwald-Gorxheimertal -- [ ] Volksbank Uckermark eG -- [ ] Volksbank Uelzen-Bevensen eG -- [ ] Volksbank Ulm-Biberach -- [ ] Volksbank und Raiffeisenbank -- [ ] Volksbank Untere Saar -- [x] Volksbank Usinger Land Ndl d Frankfurter VB -- [ ] Volksbank Vechelde-Wendeburg eG -- [ ] Volksbank Vechta eG -- [ ] Volksbank Veldhausen-Neuenhaus eG -- [ ] Volksbank Verden eG -- [ ] Volksbank Versmold eG. -- [ ] Volksbank Viersen eG -- [ ] Volksbank Vilshofen -- [ ] Volksbank Visbek eG -- [ ] Volksbank Vogtland -- [ ] Volksbank Vorbach-Tauber -- [ ] Volksbank Wachtberg eG -- [ ] Volksbank Warburg-Scherfede eG. -- [ ] Volksbank Weingarten -- [ ] Volksbank Weingarten-Walzbachtal -- [ ] Volksbank Weinheim -- [ ] Volksbank Welzheim -- [ ] Volksbank Wenden-Drolshagen eG -- [x] Volksbank Weschnitztal -- [ ] Volksbank Weserbergland eG -- [ ] Volksbank Westenholz eG -- [ ] Volksbank Westerstede eG -- [ ] Volksbank Westrhauderfehn eG -- [ ] Volksbank Wetzlar-Weilburg -- [ ] Volksbank Wewelsburg-Ahden eG -- [ ] Volksbank Wickede (Ruhr) eG -- [ ] Volksbank Wiesloch -- [ ] Volksbank Wildeshausen eG -- [ ] Volksbank Wilferdingen-Keltern -- [ ] Volksbank Wilhelmshaven eG -- [ ] Volksbank Winsener Marsch eG -- [x] Volksbank Wißmar -- [ ] Volksbank Wittenberg eG -- [ ] Volksbank Wittgenstein eG -- [ ] Volksbank Wittingen-Klötze eG -- [ ] Volksbank Wittlage eG -- [ ] Volksbank Wolfenbüttel-Salzgitter eG -- [ ] Volksbank Wolgast eG -- [ ] Volksbank Worms-Wonnegau -- [ ] Volksbank Worpswede eG -- [ ] Volksbank Wulfsen eG -- [ ] Volksbank Würselen eG -- [ ] Volksbank Zuffenhausen m Zndl Stammheimer VB -- [ ] Volksbank Zwickau -- [ ] Volksbank-Raiffeisenbank Amberg -- [ ] Volksbank-Raiffeisenbank Bayreuth -- [ ] Volksbank-Raiffeisenbank Chiemsee -alt- -- [ ] Volksbank-Raiffeisenbank Deggingen -- [ ] Volksbank-Raiffeisenbank Dingolfing -- [ ] Volksbank-Raiffeisenbank Eutin eG -- [ ] Volksbank-Raiffeisenbank Glauchau -- [ ] Volksbank-Raiffeisenbank Husum eG -- [ ] Volksbank-Raiffeisenbank im Kreis Rendsburg eG -- [ ] Volksbank-Raiffeisenbank Penzberg -- [ ] Volksbank-Raiffeisenbank Riedlingen -- [ ] VR Bank -- [x] VR Bank Bad Orb-Gelnhausen -- [ ] VR Bank Bamberg Raiffeisen-Volksbank -- [ ] VR Bank Biedenkopf-Gladenbach -- [ ] VR Bank Burglengenfeld -- [ ] VR Bank Dinkelsbühl -- [ ] VR Bank eG -- [ ] VR Bank Flensburg-Schleswig eG -- [ ] VR Bank HessenLand -- [ ] VR Bank Hof -- [ ] VR Bank im Enzkreis -- [ ] VR Bank Kaufbeuren-Ostallgäu -- [ ] VR Bank Kitzingen -- [ ] VR Bank Leipziger Land -- [x] VR Bank Main-Kinzig-Büdingen -- [ ] VR Bank Mittelhaardt -- [ ] VR Bank München Land -- [ ] VR Bank Nordwestpfalz -alt- -- [ ] VR Bank Pinneberg eG -- [ ] VR Bank Rhein-Neckar -- [ ] VR Bank Rhein-Sieg eG. -- [ ] VR Bank Rosenheim-Chiemsee -- [ ] VR Bank Saarpfalz -- [ ] VR Bank Schwäbisch Hall-Crailsheim -- [ ] VR Bank Steinlach-Wiesaz-Härten -- [ ] VR Bank Südliche Weinstraße -- [ ] VR Bank Südpfalz -- [ ] VR Bank Südthüringen -- [ ] vr bank Untertaunus -- [x] VR Bank Wächtersbach/Bad Soden-Salmünster -alt -- [ ] VR Bank Weimar -- [ ] VR Bank Westthüringen -- [ ] VR Genossenschaftsbank Fulda -- [ ] VR I meine Raiffeisenbank -- [ ] VR-Bank -- [ ] VR-Bank Aalen -- [ ] VR-Bank Alb -- [ ] VR-Bank Altenburger Land -- [ ] VR-Bank Asperg-Markgröningen -- [ ] VR-Bank Bad Hersfeld-Rotenburg -- [ ] VR-Bank Bad Kissingen-Bad Brückenau -- [ ] VR-Bank Bad Salzungen Schmalkalden -- [ ] VR-Bank Burghausen-Mühldorf -- [ ] VR-Bank Chattengau -- [ ] VR-Bank Chiemgau-Süd -alt- -- [ ] VR-Bank Coburg -- [ ] VR-Bank Ellwangen -- [ ] VR-Bank Erding -- [ ] VR-Bank Feuchtwangen-Limes -- [ ] VR-Bank Fichtelgebirge -- [ ] VR-Bank Gerolzhofen -- [ ] VR-Bank im Landkreis Garmisch-Partenkirchen -- [ ] VR-Bank in Mittelbaden -- [ ] VR-Bank Landau -- [ ] VR-Bank Landshut -- [ ] VR-Bank Langenau-Ulmer Alb -- [ ] VR-Bank Lech-Zusam -- [ ] VR-Bank Mainz -- [ ] VR-Bank Memmingen -- [ ] VR-Bank Neu-Ulm/Weißenhorn -- [ ] VR-Bank Neuwied-Linz eG -- [ ] VR-Bank Nordeifel eG. -- [ ] VR-Bank Nordrhön eG -- [ ] VR-Bank Passau -- [ ] VR-Bank Pirmasens -- [ ] VR-Bank Rhein-Erft eG -- [ ] VR-Bank Rhein-Mosel -- [ ] VR-Bank Rothenburg -- [ ] VR-Bank Rottal-Inn -- [ ] VR-Bank Schwalm-Eder -- [ ] VR-Bank Schweinfurt -- [ ] VR-Bank Schweinfurt Land -alt- -- [ ] VR-Bank Schwerin eG -- [ ] VR-Bank Spangenberg-Morschen -- [ ] VR-Bank Starnberg-Herrsching-Landsberg -- [ ] VR-Bank Stromberg-Neckar -- [ ] VR-Bank Stuttgart -- [ ] VR-Bank Südwestpfalz -- [ ] VR-Bank Taufkirchen-Dorfen -- [ ] VR-Bank Uffenheim-Neustadt -- [ ] VR-Bank Vilsbiburg -- [ ] VR-Bank Weinstadt -- [ ] VR-Bank Werra-Meißner -- [x] VR-Bank Westmünsterland eG -- [ ] VR-Bank Westpfalz -- [ ] VRB eG, Wismar -- [ ] VTB Bank AG -- [ ] Waldecker Bank -- [ ] Wartburg-Sparkasse -- [ ] Weberbank -- [ ] Weser-Elbe-Sparkasse -- [ ] Westerwald Bank -- [x] Wiesbadener Volksbank -- [ ] Winterbacher Bank -- [ ] Winterlinger Bank -- [ ] WL-Bank -- [X] Wüstenrot Bank AG -- [ ] Zevener Volksbank eG diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/LICENSE b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/LICENSE deleted file mode 100644 index fc762d02..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2016 Markus Schindler - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/README.md b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/README.md deleted file mode 100644 index 551a36d3..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/README.md +++ /dev/null @@ -1,40 +0,0 @@ -# FinTS HBCI PHP - -[![Build Status](https://travis-ci.org/mschindler83/fints-hbci-php.svg?branch=master)](https://travis-ci.org/mschindler83/fints-hbci-php) -[![Latest Stable Version](https://poser.pugx.org/mschindler83/fints-hbci-php/v/stable)](https://packagist.org/packages/mschindler83/fints-hbci-php) -[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/mschindler83/fints-hbci-php/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/mschindler83/fints-hbci-php/?branch=master) -[![Monthly Downloads](https://poser.pugx.org/mschindler83/fints-hbci-php/d/monthly)](https://packagist.org/packages/mschindler83/fints-hbci-php) -[![License](https://poser.pugx.org/mschindler83/fints-hbci-php/license)](https://packagist.org/packages/mschindler83/fints-hbci-php) - -A PHP library implementing the basics of the FinTS / HBCI protocol. -It can be used to fetch the balance of connected bank accounts and for fetching bank statements of accounts. - -## Getting Started - -Install via composer: - - composer require mschindler83/fints-hbci-php - - -## How to use it - -You can have a look at the "Samples" folder in this repository. -Just fill in the required data beginning from line 13 to 17 and run the script. - -You can find the server information of your bank here: -https://www.hbci-zka.de/institute/institut_auswahl.htm - -## Contribute - -### Bank compatibility - -This library can only work stable with *YOUR* help! -As I'm very limited in testing different banks it would be good to get some feedback from you all. -Feel free to create PR's for the [COMPATIBILITY.md](COMPATIBILITY.md) file where you can update the list of working banks. - -### Code Style - -If you plan to contribute to this library, please ensure that you stick with the PSR coding rules as close as you can (At least PSR-0 to PSR-4). -You can find the PHP Standard Recommendations [here](http://www.php-fig.org/psr/) - -### Have fun! diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Adapter/AdapterInterface.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Adapter/AdapterInterface.php deleted file mode 100644 index c78a5073..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Adapter/AdapterInterface.php +++ /dev/null @@ -1,18 +0,0 @@ -host = (string) $host; - $this->port = (int) $port; - $this->curlHandle = curl_init(); - - curl_setopt($this->curlHandle, CURLOPT_SSLVERSION, 1); - curl_setopt($this->curlHandle, CURLOPT_SSL_VERIFYPEER, true); - curl_setopt($this->curlHandle, CURLOPT_SSL_VERIFYHOST, 2); - curl_setopt($this->curlHandle, CURLOPT_USERAGENT, "FHP-lib"); - curl_setopt($this->curlHandle, CURLOPT_RETURNTRANSFER, true); - curl_setopt($this->curlHandle, CURLOPT_URL, $this->host); - curl_setopt($this->curlHandle, CURLOPT_CONNECTTIMEOUT, 15); - curl_setopt($this->curlHandle, CURLOPT_CUSTOMREQUEST, 'POST'); - curl_setopt($this->curlHandle, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1); - curl_setopt($this->curlHandle, CURLOPT_ENCODING, ''); - curl_setopt($this->curlHandle, CURLOPT_MAXREDIRS, 0); - curl_setopt($this->curlHandle, CURLOPT_TIMEOUT, 30); - curl_setopt($this->curlHandle, CURLOPT_HTTPHEADER, array("cache-control: no-cache", 'Content-Type: text/plain')); - } - - /** - * @param AbstractMessage $message - * @return string - * @throws CurlException - */ - public function send(AbstractMessage $message) - { - curl_setopt($this->curlHandle, CURLOPT_POSTFIELDS, base64_encode($message->toString())); - $response = curl_exec($this->curlHandle); - $this->lastResponseInfo = curl_getinfo($this->curlHandle); - - if (false === $response) { - throw new CurlException( - 'Failed connection to ' . $this->host . ': ' . curl_error($this->curlHandle), - curl_errno($this->curlHandle), - null, - $this->lastResponseInfo - ); - } - - $statusCode = curl_getinfo($this->curlHandle, CURLINFO_HTTP_CODE); - - if ($statusCode < 200 || $statusCode > 299) { - throw new CurlException('Bad response with status code ' . $statusCode, 0, null, $this->lastResponseInfo); - } - - return base64_decode($response); - } - - /** - * Gets curl info for last request / response. - * - * @return mixed - */ - public function getLastResponseInfo() - { - return $this->lastResponseInfo; - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Adapter/Debug.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Adapter/Debug.php deleted file mode 100644 index ed5fb785..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Adapter/Debug.php +++ /dev/null @@ -1,56 +0,0 @@ -host = (string) $host; - $this->port = (int) $port; - } - - /** - * Should return a dummy response body. - * - * @param AbstractMessage $message - * @return string - */ - public function send(AbstractMessage $message) - { - /* @todo Implement me - * return file_get_contents(__DIR__ . '/../../../develop/accounts_response.txt'); - */ - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Adapter/Exception/AdapterException.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Adapter/Exception/AdapterException.php deleted file mode 100644 index 3cf7f808..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Adapter/Exception/AdapterException.php +++ /dev/null @@ -1,12 +0,0 @@ -curlInfo = $curlInfo; - } - - /** - * Gets the curl info from request / response. - * - * @return mixed - */ - public function getCurlInfo() - { - return $this->curlInfo; - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Connection.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Connection.php deleted file mode 100644 index c217ebe8..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Connection.php +++ /dev/null @@ -1,46 +0,0 @@ -adapter = $adapter; - } - - /** - * Uses the configured adapter to send a message. - * - * @param AbstractMessage $message - * @return string - */ - public function send(AbstractMessage $message) - { - return iconv('ISO-8859-1', 'UTF-8', $this->adapter->send($message)); - } - - /** - * @return AdapterInterface - */ - public function getAdapter() - { - return $this->adapter; - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataElementGroups/EncryptionAlgorithm.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataElementGroups/EncryptionAlgorithm.php deleted file mode 100644 index d1f74747..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataElementGroups/EncryptionAlgorithm.php +++ /dev/null @@ -1,56 +0,0 @@ -addDataElement($type); - $this->addDataElement($operationMode); - $this->addDataElement($algorithm); - $this->addDataElement($algorithmIv); - $this->addDataElement($algorithmKeyType); - $this->addDataElement($algorithmIvDescription); - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataElementGroups/HashAlgorithm.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataElementGroups/HashAlgorithm.php deleted file mode 100644 index ea89d52e..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataElementGroups/HashAlgorithm.php +++ /dev/null @@ -1,42 +0,0 @@ -addDataElement($hashAlgorithmUsage); - $this->addDataElement($hashAlgorithm); - $this->addDataElement($hashAlgorithmParamDescription); - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataElementGroups/KeyName.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataElementGroups/KeyName.php deleted file mode 100644 index 8371cb25..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataElementGroups/KeyName.php +++ /dev/null @@ -1,35 +0,0 @@ -addDataElement($kik->toString()); - $this->addDataElement($userName); - $this->addDataElement($keyType); - $this->addDataElement(0); - $this->addDataElement(0); - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataElementGroups/SecurityDateTime.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataElementGroups/SecurityDateTime.php deleted file mode 100644 index aecdd6ec..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataElementGroups/SecurityDateTime.php +++ /dev/null @@ -1,36 +0,0 @@ -addDataElement($type); - $this->addDataElement($date->format('Ymd')); - $this->addDataElement($date->format('His')); - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataElementGroups/SecurityIdentificationDetails.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataElementGroups/SecurityIdentificationDetails.php deleted file mode 100644 index b95bbbe6..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataElementGroups/SecurityIdentificationDetails.php +++ /dev/null @@ -1,28 +0,0 @@ -addDataElement(static::PARTY_MS); - $this->addDataElement($cid); - $this->addDataElement($systemId); - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataElementGroups/SecurityProfile.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataElementGroups/SecurityProfile.php deleted file mode 100644 index fb68ce25..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataElementGroups/SecurityProfile.php +++ /dev/null @@ -1,28 +0,0 @@ -addDataElement($securityProceduresCode); - $this->addDataElement($securityProceduresVersion); - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataElementGroups/SignatureAlgorithm.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataElementGroups/SignatureAlgorithm.php deleted file mode 100644 index 5b479a66..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataElementGroups/SignatureAlgorithm.php +++ /dev/null @@ -1,41 +0,0 @@ -addDataElement($sigAlgoUsage); - $this->addDataElement($sigAlgo); - $this->addDataElement($operationMode); - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataTypes/Bin.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataTypes/Bin.php deleted file mode 100644 index dc9064ad..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataTypes/Bin.php +++ /dev/null @@ -1,66 +0,0 @@ -string = $string; - } - - /** - * Sets the binary data. - * - * @param string $data - * @return $this - */ - public function setData($data) - { - $this->string = $data; - - return $this; - } - - /** - * Gets the binary data. - * - * @return string - */ - public function getData() - { - return $this->string; - } - - /** - * Convert to string. - * - * @return string - */ - public function toString() - { - return '@' . strlen($this->string) . '@' . $this->string; - } - - /** - * @return string - */ - public function __toString() - { - return $this->toString(); - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataTypes/Dat.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataTypes/Dat.php deleted file mode 100644 index c0dd9972..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataTypes/Dat.php +++ /dev/null @@ -1,56 +0,0 @@ -value = $dateTime; - } - - /** - * @param \DateTime $date - */ - public function setDate(\DateTime $date) - { - $this->value = $date; - } - - /** - * @return \DateTime - */ - public function getDate() - { - return $this->value; - } - - /** - * @return string - */ - public function toString() - { - return $this->value->format('Ymd'); - } - - /** - * @return string - */ - public function __toString() - { - return $this->toString(); - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataTypes/Kik.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataTypes/Kik.php deleted file mode 100644 index bb216d67..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataTypes/Kik.php +++ /dev/null @@ -1,48 +0,0 @@ -countryCode = (string) $countryCode; - $this->bankCode = (string) $bankCode; - } - - /** - * @return string - */ - public function toString() - { - return $this->countryCode . ':' . $this->bankCode; - } - - /** - * @return string - */ - public function __toString() - { - return $this->toString(); - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataTypes/Kti.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataTypes/Kti.php deleted file mode 100644 index 0f94baed..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataTypes/Kti.php +++ /dev/null @@ -1,76 +0,0 @@ -iban = $iban; - $this->bic = $bic; - $this->accountNumber = $accountNumber; - $this->subAccountFeature = $subAccountFeature; - $this->kik = $kik; - } - - /** - * @return string - */ - public function toString() - { - return $this->iban . ':' - . $this->bic . ':' - . $this->accountNumber . ':' - . $this->subAccountFeature . ':' - . (string) $this->kik; - } - - /** - * @return string - */ - public function __toString() - { - return $this->toString(); - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataTypes/Ktv.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataTypes/Ktv.php deleted file mode 100644 index 93efdc8a..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/DataTypes/Ktv.php +++ /dev/null @@ -1,58 +0,0 @@ -accountNumber = $accountNumber; - $this->subAccountFeature = $subAccountFeature; - $this->kik = $kik; - } - - /** - * @return string - */ - public function toString() - { - return $this->accountNumber . ':' . $this->subAccountFeature . ':' . (string) $this->kik; - } - - /** - * @return string - */ - public function __toString() - { - return $this->toString(); - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Deg.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Deg.php deleted file mode 100644 index a07660a4..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Deg.php +++ /dev/null @@ -1,36 +0,0 @@ -dataElements[] = $value; - } - - public function toString() - { - return (string) implode(':', $this->dataElements); - } - - /** - * @return string - */ - public function __toString() - { - return $this->toString(); - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Dialog/Dialog.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Dialog/Dialog.php deleted file mode 100644 index 5f2e0ddd..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Dialog/Dialog.php +++ /dev/null @@ -1,339 +0,0 @@ -connection = $connection; - $this->bankCode = $bankCode; - $this->username = $username; - $this->pin = $pin; - $this->systemId = $systemId; - } - - /** - * @param AbstractMessage $message - * @return Response - * @throws AdapterException - * @throws CurlException - * @throws FailedRequestException - */ - public function sendMessage(AbstractMessage $message) - { - try { - $message->setMessageNumber($this->messageNumber); - $message->setDialogId($this->dialogId); - - $result = $this->connection->send($message); - $this->messageNumber++; - $response = new Response($result); - - $this->handleResponse($response); - - if (!$response->isSuccess()) { - $summary = $response->getMessageSummary(); - $ex = new FailedRequestException($summary); - throw $ex; - } - - return $response; - } catch (AdapterException $e) { - if ($e instanceof CurlException) { - } - - throw $e; - } - } - - /** - * @param Response $response - */ - protected function handleResponse(Response $response) - { - $summary = $response->getMessageSummary(); - $segSum = $response->getSegmentSummary(); - - foreach ($summary as $code => $message) { - $this->logMessage('HIRMG', $code, $message); - } - - foreach ($segSum as $code => $message) { - $this->logMessage('HIRMS', $code, $message); - } - } - - /** - * @param string $type - * @param string $code - * @param $message - */ - protected function logMessage($type, $code, $message) - { - } - - /** - * Gets the dialog ID. - * - * @return integer - */ - public function getDialogId() - { - return $this->dialogId; - } - - /** - * Gets the current message number. - * - * @return int - */ - public function getMessageNumber() - { - return $this->messageNumber; - } - - /** - * Gets the system ID. - * - * @return int|string - */ - public function getSystemId() - { - return $this->systemId; - } - - /** - * Gets all supported TAN mechanisms. - * - * @return array - */ - public function getSupportedPinTanMechanisms() - { - return $this->supportedTanMechanisms; - } - - /** - * Gets the max possible HKSAL version. - * - * @return int - */ - public function getHksalMaxVersion() - { - return $this->hksalVersion; - } - - /** - * Gets the max possible HKKAZ version. - * - * @return int - */ - public function getHkkazMaxVersion() - { - return $this->hkkazVersion; - } - - /** - * Gets the bank name. - * - * @return string - */ - public function getBankName() - { - return $this->bankName; - } - - /** - * Initializes a dialog. - * - * @return string|null - * @throws AdapterException - * @throws CurlException - * @throws FailedRequestException - * @throws \Exception - */ - public function initDialog() - { - $identification = new HKIDN(3, $this->bankCode, $this->username, $this->systemId); - $prepare = new HKVVB(4, HKVVB::DEFAULT_BPD_VERSION, HKVVB::DEFAULT_UPD_VERSION, HKVVB::LANG_DEFAULT); - - $message = new Message( - $this->bankCode, - $this->username, - $this->pin, - $this->systemId, - 0, - 1, - array($identification, $prepare), - array(AbstractMessage::OPT_PINTAN_MECH => $this->supportedTanMechanisms) - ); - - - $response = $this->sendMessage($message)->rawResponse; - - $result = new Initialization($response); - $this->dialogId = $result->getDialogId(); - - return $this->dialogId; - } - - /** - * Sends sync request. - * - * @return string - * @throws AdapterException - * @throws CurlException - * @throws FailedRequestException - * @throws \Exception - */ - public function syncDialog() - { - $this->messageNumber = 1; - $this->systemId = 0; - $this->dialogId = 0; - - $identification = new HKIDN(3, $this->bankCode, $this->username, 0); - $prepare = new HKVVB(4, HKVVB::DEFAULT_BPD_VERSION, HKVVB::DEFAULT_UPD_VERSION, HKVVB::LANG_DEFAULT); - $sync = new HKSYN(5); - - $syncMsg = new Message( - $this->bankCode, - $this->username, - $this->pin, - $this->systemId, - $this->dialogId, - $this->messageNumber, - array($identification, $prepare, $sync) - ); - - $response = $this->sendMessage($syncMsg); - - // save BPD (Bank Parameter Daten) - $this->systemId = $response->getSystemId(); - $this->dialogId = $response->getDialogId(); - $this->bankName = $response->getBankName(); - - // max version for segment HKSAL (Saldo abfragen) - $this->hksalVersion = $response->getHksalMaxVersion(); - $this->supportedTanMechanisms = $response->getSupportedTanMechanisms(); - - // max version for segment HKKAZ (Kontoumsätze anfordern / Zeitraum) - $this->hkkazVersion = $response->getHkkazMaxVersion(); - - $this->endDialog(); - - return $response->rawResponse; - } - - /** - * Ends a previous started dialog. - * - * @return string - * @throws AdapterException - * @throws CurlException - * @throws FailedRequestException - */ - public function endDialog() - { - $endMsg = new Message( - $this->bankCode, - $this->username, - $this->pin, - $this->systemId, - $this->dialogId, - $this->messageNumber, - array( - new HKEND(3, $this->dialogId) - ) - ); - - $response = $this->sendMessage($endMsg); - - $this->dialogId = 0; - $this->messageNumber = 1; - - return $response->rawResponse; - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Dialog/Exception/FailedRequestException.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Dialog/Exception/FailedRequestException.php deleted file mode 100644 index 31d44096..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Dialog/Exception/FailedRequestException.php +++ /dev/null @@ -1,96 +0,0 @@ -summary = $summary; - $keys = array_keys($summary); - - $this->responseCode = 0; - $this->responseMessage = 'Unknown error'; - - if (count($summary) == 1) { - $this->responseCode = (int) $keys[0]; - $this->responseMessage = array_shift($summary); - } elseif (count($summary) > 1) { - foreach ($summary as $scode => $smsg) { - if (0 === strpos($smsg, '*')) { - $this->responseCode = (int) $scode; - $this->responseMessage = substr($smsg, 1); - } - } - } - - parent::__construct('Request Failed: ' . $this->responseMessage, $this->responseCode); - } - - /** - * @return array - */ - public function getCodes() - { - return array_keys($this->summary); - } - - /** - * @return array - */ - public function getSummary() - { - return $this->summary; - } - - /** - * @return int - */ - public function getResponseCode() - { - return $this->responseCode; - } - - /** - * @return string - */ - public function getResponseMessage() - { - return $this->responseMessage; - } - - /** - * @return string - */ - public function getResponseMessages() - { - return implode(', ', $this->summary); - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/FinTs.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/FinTs.php deleted file mode 100644 index f808f72c..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/FinTs.php +++ /dev/null @@ -1,418 +0,0 @@ -server = $server; - $this->port = $port; - - // escaping of bank code not really needed here as it should - // never have special chars. But we just do it to ensure - // that the request will not get messed up and the user - // can receive a valid error response from the HBCI server. - $this->bankCode = $this->escapeString($bankCode); - - // Here, escaping is needed for usernames or pins with - // HBCI special chars. - $this->username = $this->escapeString($username); - $this->pin = $this->escapeString($pin); - - $this->adapter = new Curl($this->server, $this->port); - $this->connection = new Connection($this->adapter); - } - - /** - * Sets the adapter to use. - * - * @param AdapterInterface $adapter - */ - public function setAdapter(AdapterInterface $adapter) - { - $this->adapter = $adapter; - $this->connection = new Connection($this->adapter); - } - - /** - * Gets array of all accounts. - * - * @return Model\Account[] - */ - public function getAccounts() - { - $dialog = $this->getDialog(); - $result = $dialog->syncDialog(); - $this->bankName = $dialog->getBankName(); - $accounts = new GetAccounts($result); - - return $accounts->getAccountsArray(); - } - - /** - * Gets array of all SEPA Accounts. - * - * @return Model\SEPAAccount[] - * @throws Adapter\Exception\AdapterException - * @throws Adapter\Exception\CurlException - */ - public function getSEPAAccounts() - { - $dialog = $this->getDialog(); - $dialog->syncDialog(); - $dialog->initDialog(); - - $message = $this->getNewMessage( - $dialog, - array(new HKSPA(3)), - array(AbstractMessage::OPT_PINTAN_MECH => $dialog->getSupportedPinTanMechanisms()) - ); - - $result = $dialog->sendMessage($message); - $dialog->endDialog(); - $sepaAccounts = new GetSEPAAccounts($result->rawResponse); - - return $sepaAccounts->getSEPAAccountsArray(); - } - - /** - * Gets the bank name. - * - * @return string - */ - public function getBankName() - { - if (null == $this->bankName) { - $this->getDialog()->syncDialog(); - } - - return $this->bankName; - } - - /** - * Gets statement of account. - * - * @param SEPAAccount $account - * @param \DateTime $from - * @param \DateTime $to - * @return Model\StatementOfAccount\StatementOfAccount|null - * @throws \Exception - */ - public function getStatementOfAccount(SEPAAccount $account, \DateTime $from, \DateTime $to) - { - $responses = array(); - - $dialog = $this->getDialog(); - $dialog->syncDialog(); - $dialog->initDialog(); - - $message = $this->createStateOfAccountMessage($dialog, $account, $from, $to, null); - $response = $dialog->sendMessage($message); - $touchdowns = $response->getTouchdowns($message); - $soaResponse = new GetStatementOfAccount($response->rawResponse); - $responses[] = $soaResponse->getRawMt940(); - - $touchdownCounter = 1; - while (isset($touchdowns[HKKAZ::NAME])) { - $message = $this->createStateOfAccountMessage( - $dialog, - $account, - $from, - $to, - $touchdowns[HKKAZ::NAME] - ); - - $r = $dialog->sendMessage($message); - $touchdowns = $r->getTouchDowns($message); - $soaResponse = new GetStatementOfAccount($r->rawResponse); - $responses[] = $soaResponse->getRawMt940(); - } - - $dialog->endDialog(); - - return GetStatementOfAccount::createModelFromRawMt940(implode('', $responses)); - } - - /** - * Helper method to create a "Statement of Account Message". - * - * @param Dialog $dialog - * @param SEPAAccount $account - * @param \DateTime $from - * @param \DateTime $to - * @param string|null $touchdown - * @return Message - * @throws \Exception - */ - protected function createStateOfAccountMessage( - Dialog $dialog, - SepaAccount $account, - \DateTime $from, - \DateTime $to, - $touchdown = null - ) { - // version 4, 5, 6, 7 - - // version 5 - /* - 1 Segmentkopf DEG M 1 - 2 Kontoverbindung Auftraggeber DEG ktv # M 1 - 3 Alle Konten DE jn # M 1 - 4 Von Datum DE dat # K 1 - 5 Bis Datum DE dat # K 1 - 6 Maximale Anzahl Einträge DE num ..4 K 1 >0 - 7 Aufsetzpunkt DE an ..35 K 1 - */ - - // version 6 - /* - 1 Segmentkopf 1 DEG M 1 - 2 Kontoverbindung Auftraggeber 2 DEG ktv # M 1 - 3 Alle Konten 1 DE jn # M 1 - 4 Von Datum 1 DE dat # O 1 - 5 Bis Datum 1 DE dat # O 1 - 6 Maximale Anzahl Einträge 1 DE num ..4 C 1 >0 - 7 Aufsetzpunkt 1 DE an ..35 C 1 - */ - - // version 7 - /* - 1 Segmentkopf 1 DEG M 1 - 2 Kontoverbindung international 1 DEG kti # M 1 - 3 Alle Konten 1 DE jn # M 1 - 4 Von Datum 1 DE dat # O 1 - 5 Bis Datum 1 DE dat # O 1 - 6 Maximale Anzahl Einträge 1 DE num ..4 C 1 >0 - 7 Aufsetzpunkt 1 DE an ..35 C 1 - */ - - switch ($dialog->getHkkazMaxVersion()) { - case 4: - case 5: - $konto = new Deg(); - $konto->addDataElement($account->getAccountNumber()); - $konto->addDataElement($account->getSubAccount()); - $konto->addDataElement(static::DEFAULT_COUNTRY_CODE); - $konto->addDataElement($account->getBlz()); - break; - case 6: - $konto = new Ktv( - $account->getAccountNumber(), - $account->getSubAccount(), - new Kik(280, $account->getBlz()) - ); - break; - case 7: - $konto = new Kti( - $account->getIban(), - $account->getBic(), - $account->getAccountNumber(), - $account->getSubAccount(), - new Kik(280, $account->getBlz()) - ); - break; - default: - throw new \Exception('Unsupported HKKAZ version: ' . $dialog->getHkkazMaxVersion()); - } - - $message = $this->getNewMessage( - $dialog, - array( - new HKKAZ( - $dialog->getHkkazMaxVersion(), - 3, - $konto, - HKKAZ::ALL_ACCOUNTS_N, - $from, - $to, - $touchdown - ) - ), - array(AbstractMessage::OPT_PINTAN_MECH => $dialog->getSupportedPinTanMechanisms()) - ); - - return $message; - } - - /** - * Gets the saldo of given SEPAAccount. - * - * @param SEPAAccount $account - * @return Model\Saldo|null - * @throws Adapter\Exception\AdapterException - * @throws Adapter\Exception\CurlException - * @throws \Exception - */ - public function getSaldo(SEPAAccount $account) - { - $dialog = $this->getDialog(); - $dialog->syncDialog(); - $dialog->initDialog(); - - switch ((int) $dialog->getHksalMaxVersion()) { - case 4: - case 5: - $hksalAccount = new Deg( - $account->getAccountNumber(), - $account->getSubAccount(), - static::DEFAULT_COUNTRY_CODE, $account->getBlz() - ); - $hksalAccount->addDataElement($account->getAccountNumber()); - $hksalAccount->addDataElement($account->getSubAccount()); - $hksalAccount->addDataElement(static::DEFAULT_COUNTRY_CODE); - $hksalAccount->addDataElement($account->getBlz()); - break; - case 6: - $hksalAccount = new Ktv( - $account->getAccountNumber(), - $account->getSubAccount(), - new Kik(280, $account->getBlz()) - ); - break; - case 7: - $hksalAccount = new Kti( - $account->getIban(), - $account->getBic(), - $account->getAccountNumber(), - $account->getSubAccount(), - new Kik(280, $account->getBlz()) - ); - break; - default: - throw new \Exception('Unsupported HKSAL version: ' . $dialog->getHksalMaxVersion()); - } - - $message = new Message( - $this->bankCode, - $this->username, - $this->pin, - $dialog->getSystemId(), - $dialog->getDialogId(), - $dialog->getMessageNumber(), - array( - new HKSAL($dialog->getHksalMaxVersion(), 3, $hksalAccount, HKSAL::ALL_ACCOUNTS_N) - ), - array( - AbstractMessage::OPT_PINTAN_MECH => $dialog->getSupportedPinTanMechanisms() - ) - ); - - $response = $dialog->sendMessage($message); - $response = new GetSaldo($response->rawResponse); - - return $response->getSaldoModel(); - } - - /** - * Helper method to retrieve a pre configured message object. - * Factory for poor people :) - * - * @param Dialog $dialog - * @param array $segments - * @param array $options - * @return Message - */ - protected function getNewMessage(Dialog $dialog, array $segments, array $options) - { - return new Message( - $this->bankCode, - $this->username, - $this->pin, - $dialog->getSystemId(), - $dialog->getDialogId(), - $dialog->getMessageNumber(), - $segments, - $options - ); - } - - /** - * Helper method to retrieve a pre configured dialog object. - * Factory for poor people :) - * - * @return Dialog - */ - protected function getDialog() - { - return new Dialog( - $this->connection, - $this->bankCode, - $this->username, - $this->pin, - $this->systemId - ); - } - - /** - * Needed for escaping userdata. - * HBCI escape char is "?" - * - * @param string $string - * @return string - */ - protected function escapeString($string) - { - return str_replace( - array('?', '@', ':', '+', '\''), - array('??', '?@', '?:', '?+', '?\''), - $string - ); - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Message/AbstractMessage.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Message/AbstractMessage.php deleted file mode 100644 index 96a6d8da..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Message/AbstractMessage.php +++ /dev/null @@ -1,134 +0,0 @@ -segments[] = $segment; - } - - /** - * Gets all segments of a message. - * - * @return array - */ - public function getSegments() - { - return $this->segments; - } - - /** - * Sets the dialog ID. - * - * @param $dialogId - */ - public function setDialogId($dialogId) - { - $this->dialogId = $dialogId; - } - - /** - * Gets the dialog ID. - * - * @return int - */ - public function getDialogId() - { - return $this->dialogId; - } - - /** - * Sets the message number. - * - * @param int $number - */ - public function setMessageNumber($number) - { - $this->messageNumber = (int) $number; - } - - /** - * Gets the message number. - * - * @return int - */ - public function getMessageNumber() - { - return $this->messageNumber; - } - - /** - * Transform message to HBCI string. - * - * @return string - */ - public function toString() - { - $string = (string) $this->buildMessageHeader(); - - foreach ($this->segments as $segment) { - $string .= (string) $segment; - } - - return $string; - } - - /** - * @return string - */ - public function __toString() - { - return $this->toString(); - } - - /** - * Builds the message header. - * - * @return HNHBK - */ - protected function buildMessageHeader() - { - $len = 0; - foreach ($this->segments as $segment) { - $len += strlen($segment); - } - - return new HNHBK($len, $this->dialogId, $this->messageNumber); - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Message/Message.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Message/Message.php deleted file mode 100644 index 21eacfec..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Message/Message.php +++ /dev/null @@ -1,196 +0,0 @@ -securityReference = rand(1000000, 9999999); - $this->dialogId = $dialogId; - $this->messageNumber = $messageNumber; - $this->bankCode = $bankCode; - $this->username = $username; - $this->pin = $pin; - $this->systemId = $systemId; - $this->options = $options; - $this->profileVersion = SecurityProfile::PROFILE_VERSION_1; - $this->securityFunction = HNSHK::SECURITY_FUNC_999; - - if (isset($options[static::OPT_PINTAN_MECH]) && !empty($this->options[static::OPT_PINTAN_MECH])) { - if (!in_array('999', $this->options[static::OPT_PINTAN_MECH])) { - $this->profileVersion = SecurityProfile::PROFILE_VERSION_2; - $this->securityFunction = $this->options[static::OPT_PINTAN_MECH][0]; - } - } - - $signatureHead = $this->buildSignatureHead(); - $hnvsk = $this->buildEncryptionHead(); - - $this->addSegment($hnvsk); - - $this->encryptionEnvelop = new HNVSD(999, ''); - $this->addSegment($this->encryptionEnvelop); - - $this->addEncryptedSegment($signatureHead); - - foreach ($encryptedSegments as $es) { - $this->addEncryptedSegment($es); - } - - $curCount = count($encryptedSegments) + 3; - - $signatureEnd = new HNSHA($curCount, $this->securityReference, $this->pin); - $this->addEncryptedSegment($signatureEnd); - $this->addSegment(new HNHBS($curCount + 1, $this->messageNumber)); - } - - /** - * @return HNVSK - * @codeCoverageIgnore - */ - protected function buildEncryptionHead() - { - return new HNVSK( - 998, - $this->bankCode, - $this->username, - $this->systemId, - HNVSK::SECURITY_SUPPLIER_ROLE_ISS, - HNVSK::DEFAULT_COUNTRY_CODE, - HNVSK::COMPRESSION_NONE, - $this->profileVersion - ); - } - - /** - * @return HNSHK - * @codeCoverageIgnore - */ - protected function buildSignatureHead() - { - return new HNSHK( - 2, - $this->securityReference, - 280, // country code - $this->bankCode, - $this->username, - $this->systemId, - $this->securityFunction, - HNSHK::SECURITY_BOUNDARY_SHM, - HNSHK::SECURITY_SUPPLIER_ROLE_ISS, - $this->profileVersion - ); - } - - /** - * Adds a encrypted segment to the message. - * - * @param SegmentInterface $segment - */ - protected function addEncryptedSegment(SegmentInterface $segment) - { - $this->encryptedSegmentsCount++; - $this->encryptedSegments[] = $segment; - $encodedData = $this->encryptionEnvelop->getEncodedData()->getData(); - $encodedData .= (string) $segment; - $this->encryptionEnvelop->setEncodedData($encodedData); - } - - /** - * Only for read-only access. - * @return AbstractSegment[] - */ - public function getEncryptedSegments() - { - return $this->encryptedSegments; - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Model/Account.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Model/Account.php deleted file mode 100644 index 822275f3..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Model/Account.php +++ /dev/null @@ -1,219 +0,0 @@ -id; - } - - /** - * Set id - * - * @param string $id - * - * @return $this - */ - public function setId($id) - { - $this->id = $id; - - return $this; - } - - /** - * Get accountNumber - * - * @return string - */ - public function getAccountNumber() - { - return $this->accountNumber; - } - - /** - * Set accountNumber - * - * @param string $accountNumber - * - * @return $this - */ - public function setAccountNumber($accountNumber) - { - $this->accountNumber = (string) $accountNumber; - - return $this; - } - - /** - * Get bankCode - * - * @return string - */ - public function getBankCode() - { - return $this->bankCode; - } - - /** - * Set bankCode - * - * @param string $bankCode - * - * @return $this - */ - public function setBankCode($bankCode) - { - $this->bankCode = (string) $bankCode; - - return $this; - } - - /** - * Get iban - * - * @return string - */ - public function getIban() - { - return $this->iban; - } - - /** - * Set iban - * - * @param string $iban - * - * @return $this - */ - public function setIban($iban) - { - $this->iban = (string) $iban; - - return $this; - } - - /** - * Get customerId - * - * @return string - */ - public function getCustomerId() - { - return $this->customerId; - } - - /** - * Set customerId - * - * @param string $customerId - * - * @return $this - */ - public function setCustomerId($customerId) - { - $this->customerId = (string) $customerId; - - return $this; - } - - /** - * Get currency - * - * @return string - */ - public function getCurrency() - { - return $this->currency; - } - - /** - * Set currency - * - * @param string $currency - * - * @return $this - */ - public function setCurrency($currency) - { - $this->currency = (string) $currency; - - return $this; - } - - /** - * Get accountOwnerName - * - * @return string - */ - public function getAccountOwnerName() - { - return $this->accountOwnerName; - } - - /** - * Set accountOwnerName - * - * @param string $accountOwnerName - * - * @return $this - */ - public function setAccountOwnerName($accountOwnerName) - { - $this->accountOwnerName = (string) $accountOwnerName; - - return $this; - } - - /** - * Get accountDescription - * - * @return string - */ - public function getAccountDescription() - { - return $this->accountDescription; - } - - /** - * Set accountDescription - * - * @param string $accountDescription - * - * @return $this - */ - public function setAccountDescription($accountDescription) - { - $this->accountDescription = (string) $accountDescription; - - return $this; - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Model/SEPAAccount.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Model/SEPAAccount.php deleted file mode 100644 index 918e167f..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Model/SEPAAccount.php +++ /dev/null @@ -1,141 +0,0 @@ -iban; - } - - /** - * Set iban - * - * @param string $iban - * - * @return $this - */ - public function setIban($iban) - { - $this->iban = (string) $iban; - - return $this; - } - - /** - * Get bic - * - * @return string - */ - public function getBic() - { - return $this->bic; - } - - /** - * Set bic - * - * @param string $bic - * - * @return $this - */ - public function setBic($bic) - { - $this->bic = (string) $bic; - - return $this; - } - - /** - * Get accountNumber - * - * @return string - */ - public function getAccountNumber() - { - return $this->accountNumber; - } - - /** - * Set accountNumber - * - * @param string $accountNumber - * - * @return $this - */ - public function setAccountNumber($accountNumber) - { - $this->accountNumber = (string) $accountNumber; - - return $this; - } - - /** - * Get subAccount - * - * @return string - */ - public function getSubAccount() - { - return $this->subAccount; - } - - /** - * Set subAccount - * - * @param string $subAccount - * - * @return $this - */ - public function setSubAccount($subAccount) - { - $this->subAccount = (string) $subAccount; - - return $this; - } - - /** - * Get blz - * - * @return string - */ - public function getBlz() - { - return $this->blz; - } - - /** - * Set blz - * - * @param string $blz - * - * @return $this - */ - public function setBlz($blz) - { - $this->blz = (string) $blz; - - return $this; - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Model/Saldo.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Model/Saldo.php deleted file mode 100644 index 8de1aedb..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Model/Saldo.php +++ /dev/null @@ -1,97 +0,0 @@ -currency; - } - - /** - * Set currency - * - * @param string $currency - * - * @return $this - */ - public function setCurrency($currency) - { - $this->currency = (string) $currency; - - return $this; - } - - /** - * Get amount - * - * @return float - */ - public function getAmount() - { - return $this->amount; - } - - /** - * Set amount - * - * @param float $amount - * - * @return $this - */ - public function setAmount($amount) - { - $this->amount = (float) $amount; - - return $this; - } - - /** - * Get valuta - * - * @return \DateTime - */ - public function getValuta() - { - return $this->valuta; - } - - /** - * Set valuta - * - * @param \DateTime $valuta - * - * @return $this - */ - public function setValuta(\DateTime $valuta) - { - $this->valuta = $valuta; - - return $this; - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Model/StatementOfAccount/Statement.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Model/StatementOfAccount/Statement.php deleted file mode 100644 index c3de6a4f..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Model/StatementOfAccount/Statement.php +++ /dev/null @@ -1,134 +0,0 @@ -transactions; - } - - /** - * Set transactions - * - * @param array $transactions - * - * @return $this - */ - public function setTransactions(array $transactions = null) - { - $this->transactions = $transactions; - - return $this; - } - - public function addTransaction(Transaction $transaction) - { - $this->transactions[] = $transaction; - } - - /** - * Get startBalance - * - * @return float - */ - public function getStartBalance() - { - return $this->startBalance; - } - - /** - * Set startBalance - * - * @param float $startBalance - * - * @return $this - */ - public function setStartBalance($startBalance) - { - $this->startBalance = (float) $startBalance; - - return $this; - } - - /** - * Get creditDebit - * - * @return string - */ - public function getCreditDebit() - { - return $this->creditDebit; - } - - /** - * Set creditDebit - * - * @param string|null $creditDebit - * - * @return $this - */ - public function setCreditDebit($creditDebit) - { - $this->creditDebit = $creditDebit; - - return $this; - } - - /** - * Get date - * - * @return \DateTime - */ - public function getDate() - { - return $this->date; - } - - /** - * Set date - * - * @param \DateTime $date - * - * @return $this - */ - public function setDate(\DateTime $date) - { - $this->date = $date; - - return $this; - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Model/StatementOfAccount/StatementOfAccount.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Model/StatementOfAccount/StatementOfAccount.php deleted file mode 100644 index 886abb49..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Model/StatementOfAccount/StatementOfAccount.php +++ /dev/null @@ -1,83 +0,0 @@ -statements; - } - - /** - * Set statements - * - * @param array $statements - * - * @return $this - */ - public function setStatements(array $statements = null) - { - $this->statements = null == $statements ? array() : $statements; - - return $this; - } - - /** - * @param Statement $statement - */ - public function addStatement(Statement $statement) - { - $this->statements[] = $statement; - } - - /** - * Gets statement for given date. - * - * @param string|\DateTime $date - * @return Statement|null - */ - public function getStatementForDate($date) - { - if (is_string($date)) { - $date = new \DateTime($date); - } - - foreach ($this->statements as $stmt) { - if ($stmt->getDate() == $date) { - return $stmt; - } - } - - return null; - } - - /** - * Checks if a statement with given date exists. - * - * @param string|\DateTime $date - * @return bool - */ - public function hasStatementForDate($date) - { - if (is_string($date)) { - $date = new \DateTime($date); - } - - return null !== $this->getStatementForDate($date); - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Model/StatementOfAccount/Transaction.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Model/StatementOfAccount/Transaction.php deleted file mode 100644 index 7a119893..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Model/StatementOfAccount/Transaction.php +++ /dev/null @@ -1,359 +0,0 @@ -getBookingDate(); - } - - /** - * Get booking date - * - * @return \DateTime|null - */ - public function getBookingDate() - { - return $this->bookingDate; - } - - /** - * Get date - * - * @return \DateTime|null - */ - public function getValutaDate() - { - return $this->valutaDate; - } - - /** - * Set booking date - * - * @param \DateTime|null $date - * - * @return $this - */ - public function setBookingDate(\DateTime $date = null) - { - $this->bookingDate = $date; - - return $this; - } - - /** - * Set valuta date - * - * @param \DateTime|null $date - * - * @return $this - */ - public function setValutaDate(\DateTime $date = null) - { - $this->valutaDate = $date; - - return $this; - } - - /** - * Get amount - * - * @return float - */ - public function getAmount() - { - return $this->amount; - } - - /** - * Set amount - * - * @param float $amount - * - * @return $this - */ - public function setAmount($amount) - { - $this->amount = (float) $amount; - - return $this; - } - - /** - * Get creditDebit - * - * @return string - */ - public function getCreditDebit() - { - return $this->creditDebit; - } - - /** - * Set creditDebit - * - * @param string $creditDebit - * - * @return $this - */ - public function setCreditDebit($creditDebit) - { - $this->creditDebit = $creditDebit; - - return $this; - } - - /** - * Get bookingText - * - * @return string - */ - public function getBookingText() - { - return $this->bookingText; - } - - /** - * Set bookingText - * - * @param string $bookingText - * - * @return $this - */ - public function setBookingText($bookingText) - { - $this->bookingText = (string) $bookingText; - - return $this; - } - - /** - * Get description1 - * - * @return string - */ - public function getDescription1() - { - return $this->description1; - } - - /** - * Set description1 - * - * @param string $description1 - * - * @return $this - */ - public function setDescription1($description1) - { - $this->description1 = (string) $description1; - - return $this; - } - - /** - * Get description2 - * - * @return string - */ - public function getDescription2() - { - return $this->description2; - } - - /** - * Set description2 - * - * @param string $description2 - * - * @return $this - */ - public function setDescription2($description2) - { - $this->description2 = (string) $description2; - - return $this; - } - - /** - * Get structuredDescription - * - * @return array - */ - public function getStructuredDescription() - { - return $this->structuredDescription; - } - - /** - * Set structuredDescription - * - * @param array $structuredDescription - * - * @return $this - */ - public function setStructuredDescription($structuredDescription) - { - $this->structuredDescription = $structuredDescription; - - return $this; - } - - /** - * Get the main description (SVWZ) - * - * @return string - */ - public function getMainDescription() - { - if (array_key_exists('SVWZ', $this->structuredDescription)) { - return $this->structuredDescription['SVWZ']; - } else { - return ""; - } - } - - /** - * Get bankCode - * - * @return string - */ - public function getBankCode() - { - return $this->bankCode; - } - - /** - * Set bankCode - * - * @param string $bankCode - * - * @return $this - */ - public function setBankCode($bankCode) - { - $this->bankCode = (string) $bankCode; - - return $this; - } - - /** - * Get accountNumber - * - * @return string - */ - public function getAccountNumber() - { - return $this->accountNumber; - } - - /** - * Set accountNumber - * - * @param string $accountNumber - * - * @return $this - */ - public function setAccountNumber($accountNumber) - { - $this->accountNumber = (string) $accountNumber; - - return $this; - } - - /** - * Get name - * - * @return string - */ - public function getName() - { - return $this->name; - } - - /** - * Set name - * - * @param string $name - * - * @return $this - */ - public function setName($name) - { - $this->name = (string) $name; - - return $this; - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Parser/Exception/MT940Exception.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Parser/Exception/MT940Exception.php deleted file mode 100644 index 493a81b6..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Parser/Exception/MT940Exception.php +++ /dev/null @@ -1,12 +0,0 @@ -rawData = (string) $rawData; - } - - /** - * @param string $target - * @return array - * @throws MT940Exception - */ - public function parse($target) - { - switch ($target) { - case static::TARGET_ARRAY: - return $this->parseToArray(); - break; - default: - throw new MT940Exception('Invalid parse type provided'); - } - } - - /** - * @return array - * @throws MT940Exception - */ - protected function parseToArray() - { - // The divider can be either \r\n or @@ - $divider = substr_count($this->rawData, "\r\n-") > substr_count($this->rawData, '@@-') ? "\r\n" : '@@'; - - $result = array(); - $days = preg_split('%' . $divider . '-$%', $this->rawData); - foreach ($days as &$day) { - $day = explode($divider . ':', $day); - for ($i = 0, $cnt = count($day); $i < $cnt; $i++) { - // handle start balance - // 60F:C160401EUR1234,56 - if (preg_match('/^60(F|M):/', $day[$i])) { - // remove 60(F|M): for better parsing - $day[$i] = substr($day[$i], 4); - $this->soaDate = $this->getDate(substr($day[$i], 1, 6)); - - if (!isset($result[$this->soaDate])) { - $result[$this->soaDate] = array('start_balance' => array()); - } - - $cdMark = substr($day[$i], 0, 1); - if ($cdMark == 'C') { - $result[$this->soaDate]['start_balance']['credit_debit'] = static::CD_CREDIT; - } elseif ($cdMark == 'D') { - $result[$this->soaDate]['start_balance']['credit_debit'] = static::CD_DEBIT; - } - - $amount = str_replace(',', '.', substr($day[$i], 10)); - $result[$this->soaDate]['start_balance']['amount'] = $amount; - } elseif ( - // found transaction - // trx:61:1603310331DR637,39N033NONREF - 0 === strpos($day[$i], '61:') - && isset($day[$i + 1]) - && 0 === strpos($day[$i + 1], '86:') - ) { - $transaction = substr($day[$i], 3); - $description = substr($day[$i + 1], 3); - - if (!isset($result[$this->soaDate]['transactions'])) { - $result[$this->soaDate]['transactions'] = array(); - } - - // short form for better handling - $trx = &$result[$this->soaDate]['transactions']; - - preg_match('/^\d{6}(\d{4})?(C|D|RC|RD)([A-Z]{1})?([^N]+)N/', $transaction, $trxMatch); - if ($trxMatch[2] == 'C') { - $trx[count($trx)]['credit_debit'] = static::CD_CREDIT; - } elseif ($trxMatch[2] == 'D') { - $trx[count($trx)]['credit_debit'] = static::CD_DEBIT; - } else { - throw new MT940Exception('cd mark not found in: ' . $transaction); - } - - $amount = $trxMatch[4]; - $amount = str_replace(',', '.', $amount); - $trx[count($trx) - 1]['amount'] = floatval($amount); - - $description = $this->parseDescription($description); - $trx[count($trx) - 1]['description'] = $description; - - // :61:1605110509D198,02NMSCNONREF - // 16 = year - // 0511 = valuta date - // 0509 = booking date - $year = substr($transaction, 0, 2); - $valutaDate = $this->getDate($year . substr($transaction, 2, 4)); - - $bookingDate = substr($transaction, 6, 4); - if (preg_match('/^\d{4}$/', $bookingDate)) { - // if valuta date is earlier than booking date, then it must be in the new year. - $year = substr($transaction, 2, 2) < substr($transaction, 6, 2) ? --$year : $year; - $bookingDate = $this->getDate($year . $bookingDate); - } else { - // if booking date not set in :61, then we have to take it from :60F - $bookingDate = $this->soaDate; - } - - $trx[count($trx) - 1]['booking_date'] = $bookingDate; - $trx[count($trx) - 1]['valuta_date'] = $valutaDate; - } - } - } - - return $result; - } - - /** - * @param string $descr - * @return array - */ - protected function parseDescription($descr) - { - $prepared = array(); - $result = array(); - - // prefill with empty values - for ($i = 0; $i <= 63; $i++) { - $prepared[$i] = null; - } - - $descr = str_replace("\r\n", '', $descr); - $descr = str_replace('? ', '?', $descr); - preg_match_all('/\?[\r\n]*(\d{2})([^\?]+)/', $descr, $matches, PREG_SET_ORDER); - - $descriptionLines = array(); - $description1 = ''; // Legacy, could be removed. - $description2 = ''; // Legacy, could be removed. - foreach ($matches as $m) { - $index = (int) $m[1]; - if ((20 <= $index && $index <= 29) || (60 <= $index && $index <= 63)) { - if (20 <= $index && $index <= 29) { - $description1 .= $m[2]; - } else { - $description2 .= $m[2]; - } - $m[2] = trim($m[2]); - if (!empty($m[2])) { - $descriptionLines[] = $m[2]; - } - } else { - $prepared[$index] = $m[2]; - } - } - - $description = array(); - if (empty($descriptionLines) || strlen($descriptionLines[0]) < 5 || $descriptionLines[0][4] !== '+') { - $description['SVWZ'] = implode('', $descriptionLines); - } else { - $lastType = null; - foreach ($descriptionLines as $line) { - if (strlen($line) > 5 && $line[4] === '+') { - if ($lastType != null) { - $description[$lastType] = trim($description[$lastType]); - } - $lastType = substr($line, 0, 4); - $description[$lastType] = substr($line, 5); - } else { - $description[$lastType] .= $line; - } - if (strlen($line) < 27) { - // Usually, lines are 27 characters long. In case characters are missing, then it's either the end - // of the current type or spaces have been trimmed from the end. We want to collapse multiple spaces - // into one and we don't want to leave trailing spaces behind. So add a single space here to make up - // for possibly missing spaces, and if it's the end of the type, it will be trimmed off later. - $description[$lastType] .= ' '; - } - } - $description[$lastType] = trim($description[$lastType]); - } - - $result['description'] = $description; - $result['booking_text'] = trim($prepared[0]); - $result['primanoten_nr'] = trim($prepared[10]); - $result['description_1'] = trim($description1); - $result['bank_code'] = trim($prepared[30]); - $result['account_number'] = trim($prepared[31]); - $result['name'] = trim($prepared[32] . $prepared[33]); - $result['text_key_addition'] = trim($prepared[34]); - $result['description_2'] = trim($description2); - - return $result; - } - - /** - * @param string $val - * @return string - */ - protected function getDate($val) - { - $val = '20' . $val; - preg_match('/(\d{4})(\d{2})(\d{2})/', $val, $m); - return $m[1] . '-' . $m[2] . '-' . $m[3]; - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Response/GetAccounts.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Response/GetAccounts.php deleted file mode 100644 index d92e96e7..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Response/GetAccounts.php +++ /dev/null @@ -1,60 +0,0 @@ -findSegments(static::SEG_ACCOUNT_INFORMATION); - - foreach ($accounts as $account) { - $accountParts = $this->splitSegment($account); - $account = $this->createModelFromArray($accountParts); - if ($account !== null) { - $this->accounts[] = $account; - } - } - - return $this->accounts; - } - - /** - * Creates a Account model from array. - * - * @param array $array - * @return Account - */ - protected function createModelFromArray(array $array) - { - if (!$array[1]) { - return null; - } - $account = new Account(); - list($accountNumber, $x, $countryCode, $bankCode) = explode(':', $array[1]); - $account->setId($array[1]); - $account->setAccountNumber($accountNumber); - $account->setBankCode($bankCode); - $account->setIban($array[2]); - $account->setCustomerId($array[3]); - $account->setCurrency($array[5]); - $account->setAccountOwnerName($array[6]); - $account->setAccountDescription($array[8]); - - return $account; - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Response/GetSEPAAccounts.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Response/GetSEPAAccounts.php deleted file mode 100644 index 5336df1c..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Response/GetSEPAAccounts.php +++ /dev/null @@ -1,56 +0,0 @@ -findSegment(static::SEG_ACCOUNT_INFORMATION); - - if (is_string($accounts)) { - $accounts = $this->splitSegment($accounts); - array_shift($accounts); - foreach ($accounts as $account) { - $array = $this->splitDeg($account); - $this->accounts[] = $this->createModelFromArray($array); - } - } - - return $this->accounts; - } - - /** - * Creates a SEPAAccount model from array. - * - * @param array $array - * @return SEPAAccount - */ - protected function createModelFromArray(array $array) - { - $account = new SEPAAccount(); - $account->setIban($array[1]); - $account->setBic($array[2]); - $account->setAccountNumber($array[3]); - $account->setSubAccount($array[4]); - $account->setBlz($array[6]); - - return $account; - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Response/GetSaldo.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Response/GetSaldo.php deleted file mode 100644 index d6fb5431..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Response/GetSaldo.php +++ /dev/null @@ -1,70 +0,0 @@ -findSegment(static::SEG_ACCOUNT_INFORMATION); - - if (is_string($saldoSec)) { - $saldoSec = $this->splitSegment($saldoSec); - array_shift($saldoSec); // get rid of header - $model = $this->createModelFromArray($saldoSec); - } - - return $model; - } - - /** - * Creates a Saldo model from array. - * - * @param array $array - * @return Saldo - * @throws \Exception - */ - protected function createModelFromArray(array $array) - { - $model = new Saldo(); - $saldoDeg = $this->splitDeg($array[3]); - - $amount = str_replace(',', '.', $saldoDeg[1]); - $creditDebit = trim($saldoDeg[0]); - - if (static::SALDO_DEBIT == $creditDebit) { - $amount = - (float) $amount; - } elseif (static::SALDO_CREDIT == $creditDebit) { - $amount = (float) $amount; - } else { - throw new \Exception('Invalid Soll-Haben-Kennzeichen: ' . $creditDebit); - } - - $model->setAmount($amount); - $model->setCurrency($saldoDeg[2]); - - $valutaDate = $saldoDeg[3]; - preg_match('/(\d{4})(\d{2})(\d{2})/', $valutaDate, $m); - $valutaDate = new \DateTime($m[1] . '-' . $m[2] . '-' . $m[3]); - $model->setValuta($valutaDate); - - return $model; - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Response/GetStatementOfAccount.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Response/GetStatementOfAccount.php deleted file mode 100644 index b1d720ad..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Response/GetStatementOfAccount.php +++ /dev/null @@ -1,102 +0,0 @@ -findSegment(static::SEG_ACCOUNT_INFORMATION); - if (is_string($seg)) { - if (preg_match('/@(\d+)@(.+)/ms', $seg, $m)) { - return $m[2]; - } - } - - return ''; - } - - /** - * Creates StatementOfAccount object from raw MT940 string. - * - * @param string $rawMt940 - * @return StatementOfAccount - */ - public static function createModelFromRawMt940($rawMt940) - { - $parser = new MT940($rawMt940); - - return static::createModelFromArray($parser->parse(MT940::TARGET_ARRAY)); - } - - /** - * Adds statements to an existing StatementOfAccount object. - * - * @param array $array - * @param StatementOfAccount $statementOfAccount - * @return StatementOfAccount - */ - protected static function addFromArray(array $array, StatementOfAccount $statementOfAccount) - { - foreach ($array as $date => $statement) { - if ($statementOfAccount->hasStatementForDate($date)) { - $statementModel = $statementOfAccount->getStatementForDate($date); - } else { - $statementModel = new Statement(); - $statementModel->setDate(new \DateTime($date)); - $statementModel->setStartBalance((float) $statement['start_balance']['amount']); - $statementModel->setCreditDebit($statement['start_balance']['credit_debit']); - $statementOfAccount->addStatement($statementModel); - } - - if (isset($statement['transactions'])) { - foreach ($statement['transactions'] as $trx) { - $transaction = new Transaction(); - $transaction->setBookingDate(new \DateTime($trx['booking_date'])); - $transaction->setValutaDate(new \DateTime($trx['valuta_date'])); - $transaction->setCreditDebit($trx['credit_debit']); - $transaction->setAmount($trx['amount']); - $transaction->setBookingText($trx['description']['booking_text']); - $transaction->setDescription1($trx['description']['description_1']); - $transaction->setDescription2($trx['description']['description_2']); - $transaction->setStructuredDescription($trx['description']['description']); - $transaction->setBankCode($trx['description']['bank_code']); - $transaction->setAccountNumber($trx['description']['account_number']); - $transaction->setName($trx['description']['name']); - $statementModel->addTransaction($transaction); - } - } - } - - return $statementOfAccount; - } - - /** - * Creates a StatementOfAccount model from array. - * - * @param array $array - * @return StatementOfAccount - */ - protected static function createModelFromArray(array $array) - { - $soa = static::addFromArray($array, new StatementOfAccount()); - - return $soa; - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Response/Initialization.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Response/Initialization.php deleted file mode 100644 index 63c05c97..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Response/Initialization.php +++ /dev/null @@ -1,12 +0,0 @@ -rawResponse; - } - - $this->rawResponse = $rawResponse; - $this->response = $this->unwrapEncryptedMsg($rawResponse); - $this->segments = preg_split("#'(?=[A-Z]{4,}:\d|')#", $rawResponse); - } - - /** - * Extracts dialog ID from response. - * - * @return string|null - * @throws \Exception - */ - public function getDialogId() - { - $segment = $this->findSegment('HNHBK'); - - if (null === $segment) { - throw new \Exception('Could not find element HNHBK. Invalid response?'); - } - - return $this->getSegmentIndex(4, $segment); - } - - /** - * Extracts bank name from response. - * - * @return string|null - */ - public function getBankName() - { - $bankName = null; - $segment = $this->findSegment('HIBPA'); - if (null != $segment) { - $split = $this->splitSegment($segment); - if (isset($split[3])) { - $bankName = $split[3]; - } - } - - return $bankName; - } - - /** - * Some kind of HBCI pagination. - * - * @param AbstractMessage $message - * - * @return array - */ - public function getTouchDowns(AbstractMessage $message) - { - $touchdown = array(); - $messageSegments = $message->getEncryptedSegments(); - /** @var AbstractSegment $msgSeg */ - foreach ($messageSegments as $msgSeg) { - $segment = $this->findSegmentForReference('HIRMS', $msgSeg); - if (null != $segment) { - $parts = $this->splitSegment($segment); - // remove header - array_shift($parts); - foreach ($parts as $p) { - $pSplit = $this->splitDeg($p); - if ($pSplit[0] == 3040) { - $td = $pSplit[3]; - $touchdown[$msgSeg->getName()] = $td; - } - } - } - } - - return $touchdown; - } - - /** - * Extracts supported TAN mechanisms from response. - * - * @return array - */ - public function getSupportedTanMechanisms() - { - $segments = $this->findSegments('HIRMS'); - // @todo create method to get reference element from request - foreach ($segments as $segment) { - $segment = $this->splitSegment($segment); - array_shift($segment); - foreach ($segment as $seg) { - list($id, $msg) = explode('::', $seg, 2); - if ("3920" == $id) { - if (preg_match_all('/\d{3}/', $msg, $matches)) { - return $matches[0]; - } - } - } - } - - return array(); - } - - /** - * @return int - */ - public function getHksalMaxVersion() - { - return $this->getSegmentMaxVersion('HISALS'); - } - - /** - * @return int - */ - public function getHkkazMaxVersion() - { - return $this->getSegmentMaxVersion('HIKAZS'); - } - - /** - * Checks if request / response was successful. - * - * @return bool - */ - public function isSuccess() - { - $summary = $this->getMessageSummary(); - - foreach ($summary as $code => $message) { - if ("9" == substr($code, 0, 1)) { - return false; - } - } - - return true; - } - - /** - * @return array - * @throws \Exception - */ - public function getMessageSummary() - { - return $this->getSummaryBySegment('HIRMG'); - } - - /** - * @return array - * @throws \Exception - */ - public function getSegmentSummary() - { - return $this->getSummaryBySegment('HIRMS'); - } - - /** - * @param string $name - * - * @return array - * @throws \Exception - */ - protected function getSummaryBySegment($name) - { - if (!in_array($name, array('HIRMS', 'HIRMG'))) { - throw new \Exception('Invalid segment for message summary. Only HIRMS and HIRMG supported'); - } - - $result = array(); - $segment = $this->findSegment($name); - $segment = $this->splitSegment($segment); - array_shift($segment); - foreach ($segment as $de) { - $de = $this->splitDeg($de); - $result[$de[0]] = $de[2]; - } - - return $result; - } - - /** - * @param string $segmentName - * - * @return int - */ - public function getSegmentMaxVersion($segmentName) - { - $version = 3; - $segments = $this->findSegments($segmentName); - foreach ($segments as $s) { - $parts = $this->splitSegment($s); - $segmentHeader = $this->splitDeg($parts[0]); - $curVersion = (int) $segmentHeader[2]; - if ($curVersion > $version) { - $version = $curVersion; - } - } - - return $version; - } - - /** - * @return string - * @throws \Exception - */ - public function getSystemId() - { - $segment = $this->findSegment('HISYN'); - - if (!preg_match('/HISYN:\d+:\d+:\d+\+(.+)/', $segment, $matches)) { - throw new \Exception('Could not determine system id.'); - } - - return $matches[1]; - } - - /** - * @param bool $translateCodes - * - * @return string - */ - public function humanReadable($translateCodes = false) - { - return str_replace( - array("'", '+'), - array(PHP_EOL, PHP_EOL . " "), - $translateCodes - ? NameMapping::translateResponse($this->rawResponse) - : $this->rawResponse - ); - } - - /** - * @param string $name - * @param AbstractSegment $reference - * - * @return string|null - */ - protected function findSegmentForReference($name, AbstractSegment $reference) - { - $segments = $this->findSegments($name); - foreach ($segments as $seg) { - $segSplit = $this->splitSegment($seg); - $segSplit = array_shift($segSplit); - $segSplit = $this->splitDeg($segSplit); - if ($segSplit[3] == $reference->getSegmentNumber()) { - return $seg; - } - } - - return null; - } - - /** - * @param string $name - * - * @return string|null - */ - protected function findSegment($name) - { - return $this->findSegments($name, true); - } - - /** - * @param string $name - * @param bool $one - * - * @return array|null|string - */ - protected function findSegments($name, $one = false) - { - $found = $one ? null : array(); - - foreach ($this->segments as $segment) { - $split = explode(':', $segment, 2); - - if ($split[0] == $name) { - if ($one) { - return $segment; - } - $found[] = $segment; - } - } - - return $found; - } - - /** - * @param $segment - * - * @return array - */ - protected function splitSegment($segment) - { - $parts = preg_split('/\+(?splitSegment($segment); - if (isset($segment[$idx - 1])) { - return $segment[$idx - 1]; - } - - return null; - } - - /** - * @param string $response - * - * @return string - */ - protected function unwrapEncryptedMsg($response) - { - if (preg_match('/HNVSD:\d+:\d+\+@\d+@(.+)\'\'/', $response, $matches)) { - return $matches[1]; - } - - return $response; - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/AbstractSegment.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/AbstractSegment.php deleted file mode 100644 index d4251305..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/AbstractSegment.php +++ /dev/null @@ -1,108 +0,0 @@ -type = strtoupper($type); - $this->version = $version; - $this->segmentNumber = $segmentNumber; - $this->dataElements = $dataElements; - } - - /** - * @param array $dataElements - */ - public function setDataElements(array $dataElements = array()) - { - $this->dataElements = $dataElements; - } - - /** - * @return array - */ - public function getDataElements() - { - return $this->dataElements; - } - - /** - * @return string - */ - public function toString() - { - $string = $this->type . ':' . $this->segmentNumber . ':' . $this->version; - - foreach ($this->dataElements as $de) { - $string .= '+' . (string) $de; - } - - return $string . static::SEGMENT_SEPARATOR; - } - - /** - * @return string - */ - public function __toString() - { - return $this->toString(); - } - - /** - * @param bool $translateCodes - * @return string - */ - public function humanReadable($translateCodes = false) - { - return str_replace( - array("'", '+'), - array(PHP_EOL, PHP_EOL . " "), - $translateCodes - ? NameMapping::translateResponse($this->toString()) - : $this->toString() - ); - } - - /** - * @return int - */ - public function getSegmentNumber() - { - return $this->segmentNumber; - } - - /** - * @return int - */ - public function getVersion() - { - return $this->version; - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/HKEND.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/HKEND.php deleted file mode 100644 index 231a2fe9..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/HKEND.php +++ /dev/null @@ -1,41 +0,0 @@ -getDataElements(); - - return $des[0]; - } - - /** - * @param string $data - */ - public function setEncodedData($data) - { - $this->setDataElements(array(new Bin($data))); - } - - /** - * @return string - */ - public function getName() - { - return static::NAME; - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/HNVSK.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/HNVSK.php deleted file mode 100644 index 4a453c1c..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/HNVSK.php +++ /dev/null @@ -1,84 +0,0 @@ - 'Dialogende', - 'HKIDN' => 'Identifikation', - 'HKSYN' => 'Synchronisation', - 'HKVVB' => 'Verarbeitungsvorbereitung', - 'HNHBK' => 'Nachrichtenkopf', - 'HNHBS' => 'Nachrichtenabschluss', - 'HNSHA' => 'Signaturabschluss', - 'HNSHK' => 'Signaturkopf', - 'HNVSD' => 'Verschlüsselte Daten', - 'HNVSK' => 'Verschlüsselungskopf', - 'HKISA' => 'Anforderung eines öffentlichen Schlüssels', - 'HIBPA' => 'Bankparameter allgemein', - 'HISSP' => 'Bestätigung der Schlüsselsperrung', - 'HIKPV' => 'Komprimierungsverfahren', - 'HIUPD' => 'Kontoinformation', - 'HIKIM' => 'Kreditinstitutsmeldung', - 'HKLIF' => 'Life-Indikator', - 'HIRMS' => 'Rückmeldung zu Segmenten', - 'HIRMG' => 'Rückmeldungen zur Gesamtnachricht', - 'HKSAK' => 'Schlüsseländerung', - 'HKSSP' => 'Schlüsselsperrung', - 'HISHV' => 'Sicherheitsverfahren', - 'HISYN' => 'Synchronisierungsantwort', - 'HIISA' => 'Übermittlung eines öffentlichen Schlüssels', - 'HIUPA' => 'Userparameter allgemein', - 'HIKOM' => 'Kommunikationszugang rückmelden', - // Geschäftsvorfälle - // http://www.hbci-zka.de/dokumente/spezifikation_deutsch/fintsv3/FinTS_3.0_Messages_Geschaeftsvorfaelle_2015-08-07_final_version.pdf - // Section: E.1 - 'HKADR' => 'Adressänderung', - 'HIADRS' => 'Adressänderung Parameter', - 'HITEA' => 'Änderung terminierter Einzellastschrift bestätigen', - 'HIDSA' => 'Änderung terminierter SEPA-Einzellastschriften bestätigen', - 'HIBSA' => 'Änderung terminierter SEPA-Firmeneinzellastschrift bestätigen', - 'HICSA' => 'Änderung terminierter SEPA-Überweisung bestätigen', - 'HITUA' => 'Änderung terminierter Überweisung bestätigen', - 'HICVE' => 'Anlage vorbereiteter SEPA-Überweisung bestätigen', - 'HIVUE' => 'Anlage vorbereiteter Überweisung bestätigen', - 'HKCTD' => 'Auftragsdetails für C-Transaktionen', - 'HICTDS' => 'Auftragsdetails für C-Transaktionen Parameter', - 'HICTD' => 'Auftragsdetails für C-Transaktionen rückmelden', - 'HKAUE' => 'Ausgeführte Überweisungen anfordern', - 'HIAUE' => 'Ausgeführte Überweisungen rückmelden', - 'HIAUES' => 'Ausgeführte Überweisungen Parameter', - 'HKAUB' => 'Auslandsüberweisung', - 'HKAOM' => 'Auslandsüberweisung ohne Meldeteil', - 'HIAOMS' => 'Auslandsüberweisung ohne Meldeteil Parameter', - 'HIAUBS' => 'Auslandsüberweisung Parameter', - 'HKCTA' => 'Auslösen von C-Transaktionen', - 'HICTAS' => 'Auslösen von C-Transaktionen Parameter', - 'HIAPN' => 'Auswahl Postfach-Nachrichtentypen rückmelden', - 'HKFDB' => 'Bearbeitungsstatus Dokument anfordern ', - 'HIFDBS' => 'Bearbeitungsstatus Dokument Parameter', - 'HIFDB' => 'Bearbeitungsstatus Dokument rückmelden', - 'HKPPB' => 'Bestand Daueraufträge Prepaidkarte laden anfordern', - 'HIPPBS' => 'Bestand Daueraufträge Prepaidkarte laden Parameter', - 'HIPPB' => 'Bestand Daueraufträge Prepaidkarte laden rückmelden', - 'HKCUB' => 'Bestand Empfängerkonten anfordern', - 'HKLWB' => 'Bestand Lastschriftwiderspruch', - 'HKSAL' => 'Saldenabfrage', - 'HISALS' => 'Saldenabfrage Parameter', - 'HISAL' => 'Saldenrückmeldung', - 'HIEKAS' => 'Kontoauszug Parameter', - 'HIKAZS' => 'Kontoumsätze/Zeitraum Parameter', - 'HIQTGS' => 'Empfangsquittung Parameter', - 'HICSBS' => 'Bestand terminierter SEPA-Überweisungen Parameter', - 'HICSLS' => 'Terminierte SEPA-Überweisung löschen Parameter', - 'HKSPA' => 'SEPA-Kontoverbindung anfordern', - // tbc - // PIN/TAN - // http://www.hbci-zka.de/dokumente/spezifikation_deutsch/fintsv3/FinTS_3.0_Security_Sicherheitsverfahren_PINTAN_Rel_20101027_final_version.pdf - // - 'HIPAES' => 'PIN ändern Parameter', - 'HIPSPS' => 'PIN sperren Parameter', - - ); - - /** - * @param string $code - * @return string - */ - public static function codeToName($code) - { - return isset(static::$mapping[$code]) ? static::$mapping[$code] : $code; - } - - /** - * @param string $name - * @return string - */ - public static function nameToCode($name) - { - $flipped = array_flip(static::$mapping); - return isset($flipped[$name]) ? $flipped[$name] : $name; - } - - /** - * @param string $text - * @return string - */ - public static function translateResponse($text) - { - return str_replace(array_flip(static::$mapping), static::$mapping, $text); - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/Segment.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/Segment.php deleted file mode 100644 index fe213815..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/Segment.php +++ /dev/null @@ -1,35 +0,0 @@ -type; - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/SegmentInterface.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/SegmentInterface.php deleted file mode 100644 index 078927f7..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Fhp/Segment/SegmentInterface.php +++ /dev/null @@ -1,24 +0,0 @@ -adapter = $this->getMockBuilder('\Fhp\Adapter\Curl') - ->disableOriginalConstructor() - ->setMethods(array('send')) - ->getMock(); - - $this->message = $this->getMockBuilder('\Fhp\Message\Message') - ->disableOriginalConstructor() - ->getMock(); - } - - public function test_can_set_and_get_adapter() - { - $conn = new Connection($this->adapter); - $this->assertEquals($this->adapter, $conn->getAdapter()); - } - - public function test_send_calls_adapter_send() - { - $this->adapter->expects($this->once()) - ->method('send') - ->with($this->message) - ->will($this->returnValue('response text')); - - $conn = new Connection($this->adapter); - $res = $conn->send($this->message); - - $this->assertInternalType('string', $res); - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataElementGroups/EncryptionAlgorithmTest.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataElementGroups/EncryptionAlgorithmTest.php deleted file mode 100644 index cfd09c1f..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataElementGroups/EncryptionAlgorithmTest.php +++ /dev/null @@ -1,28 +0,0 @@ -assertEquals('2:2:13:@8@00000000:5:1', (string) $e); - $this->assertEquals('2:2:13:@8@00000000:5:1', $e->toString()); - } - - public function test_custom_to_string() - { - $e = new EncryptionAlgorithm( - EncryptionAlgorithm::TYPE_OSY, - EncryptionAlgorithm::OPERATION_MODE_ISO_9796_1, - EncryptionAlgorithm::ALGORITHM_KEY_TYPE_SYM_PUB, - EncryptionAlgorithm::ALGORITHM_IV_DESCRIPTION_IVC - ); - - $this->assertEquals('2:16:6:1:5:1', (string) $e); - $this->assertEquals('2:16:6:1:5:1', $e->toString()); - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataElementGroups/HashAlgorithmTest.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataElementGroups/HashAlgorithmTest.php deleted file mode 100644 index fe8c9177..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataElementGroups/HashAlgorithmTest.php +++ /dev/null @@ -1,15 +0,0 @@ -assertEquals('1:999:1', (string) $e); - $this->assertEquals('1:999:1', $e->toString()); - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataElementGroups/KeyNameTest.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataElementGroups/KeyNameTest.php deleted file mode 100644 index 30a67b18..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataElementGroups/KeyNameTest.php +++ /dev/null @@ -1,16 +0,0 @@ -assertEquals('DE:72191600:username:V:0:0', (string) $e); - $this->assertEquals('DE:72191600:username:V:0:0', $e->toString()); - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataElementGroups/SecurityDateTimeTest.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataElementGroups/SecurityDateTimeTest.php deleted file mode 100644 index 18f8fc38..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataElementGroups/SecurityDateTimeTest.php +++ /dev/null @@ -1,15 +0,0 @@ -assertEquals('1:' . $dateTime->format('Ymd') . ':' . $dateTime->format('His'), (string) $e); - $this->assertEquals('1:' . $dateTime->format('Ymd') . ':' . $dateTime->format('His'), $e->toString()); - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataElementGroups/SecurityIdentificationDetailsTest.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataElementGroups/SecurityIdentificationDetailsTest.php deleted file mode 100644 index b9aadcca..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataElementGroups/SecurityIdentificationDetailsTest.php +++ /dev/null @@ -1,17 +0,0 @@ -assertEquals('1::0', (string) $e); - $this->assertEquals('1::0', $e->toString()); - - $e = new SecurityIdentificationDetails(SecurityIdentificationDetails::PARTY_MS, 123); - $this->assertEquals('1:1:123', (string) $e); - $this->assertEquals('1:1:123', $e->toString()); - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataElementGroups/SecurityProfileTest.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataElementGroups/SecurityProfileTest.php deleted file mode 100644 index 8d15cf11..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataElementGroups/SecurityProfileTest.php +++ /dev/null @@ -1,14 +0,0 @@ -assertEquals('PIN:2', (string) $e); - $this->assertEquals('PIN:2', $e->toString()); - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataElementGroups/SignatureAlgorithmTest.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataElementGroups/SignatureAlgorithmTest.php deleted file mode 100644 index ddd994d9..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataElementGroups/SignatureAlgorithmTest.php +++ /dev/null @@ -1,13 +0,0 @@ -assertEquals('6:10:16', (string) $e); - $this->assertEquals('6:10:16', $e->toString()); - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataTypes/BinTest.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataTypes/BinTest.php deleted file mode 100644 index d3adf8ca..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataTypes/BinTest.php +++ /dev/null @@ -1,22 +0,0 @@ -assertEquals('@32@' . $string, (string) $d); - $this->assertEquals('@32@' . $string, $d->toString()); - $this->assertEquals($string, $d->getData()); - - $d->setData($string2); - $this->assertEquals('@32@' . $string2, (string) $d); - $this->assertEquals('@32@' . $string2, $d->toString()); - $this->assertEquals($string2, $d->getData()); - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataTypes/DatTest.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataTypes/DatTest.php deleted file mode 100644 index 7a029117..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataTypes/DatTest.php +++ /dev/null @@ -1,23 +0,0 @@ -assertEquals($dateTime->format('Ymd'), (string) $d); - $this->assertEquals($dateTime->format('Ymd'), $d->toString()); - - $dateTime2 = new \DateTime(); - $dateTime2->modify('+1 month'); - - $d->setDate($dateTime2); - $this->assertEquals($dateTime2->format('Ymd'), (string) $d); - $this->assertEquals($dateTime2->format('Ymd'), $d->toString()); - - $this->assertEquals($dateTime2, $d->getDate()); - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataTypes/KikTest.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataTypes/KikTest.php deleted file mode 100644 index 2e0dca39..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataTypes/KikTest.php +++ /dev/null @@ -1,13 +0,0 @@ -assertEquals('DE:72191600', (string) $d); - $this->assertEquals('DE:72191600', $d->toString()); - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataTypes/KtiTest.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataTypes/KtiTest.php deleted file mode 100644 index 24b91009..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataTypes/KtiTest.php +++ /dev/null @@ -1,14 +0,0 @@ -assertEquals('someiban:somebic:someaccountNumber:sub:DE:72191600', (string) $d); - $this->assertEquals('someiban:somebic:someaccountNumber:sub:DE:72191600', $d->toString()); - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataTypes/KtvTest.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataTypes/KtvTest.php deleted file mode 100644 index 39306d23..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DataTypes/KtvTest.php +++ /dev/null @@ -1,14 +0,0 @@ -assertEquals('123123123:sub:DE:72191600', (string) $d); - $this->assertEquals('123123123:sub:DE:72191600', $d->toString()); - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DegTest.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DegTest.php deleted file mode 100644 index 5ab97df7..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/DegTest.php +++ /dev/null @@ -1,20 +0,0 @@ -addDataElement('foobar'); - - $this->assertEquals('foobar', $deg->toString()); - - $deg->addDataElement('baz'); - $this->assertEquals('foobar:baz', $deg->toString()); - $this->assertEquals('foobar:baz', (string) $deg); - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/FinTsTest.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/FinTsTest.php deleted file mode 100644 index 61980601..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/FinTsTest.php +++ /dev/null @@ -1,42 +0,0 @@ -getMockBuilder('\Fhp\FinTs') - ->disableOriginalConstructor() - ->getMock(); - - $reflMethod = new \ReflectionMethod('\Fhp\FinTs', 'escapeString'); - $reflMethod->setAccessible(true); - - $this->assertSame($expected, $reflMethod->invoke($fints, $value)); - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/Message/MessageTest.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/Message/MessageTest.php deleted file mode 100644 index acb3d000..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/Message/MessageTest.php +++ /dev/null @@ -1,91 +0,0 @@ -setDialogId(333); - $this->assertEquals(333, $message->getDialogId()); - - $message->setMessageNumber(10); - $this->assertEquals(10, $message->getMessageNumber()); - - $segments = $message->getSegments(); - - $this->assertInternalType('array', $segments); - $this->assertCount(3, $segments); - } - - public function test_basic_message_creation() - { - $message = new Message('12345678', 'username', '1234', '987654'); - $date = new \DateTime(); - $dateString = $date->format('Ymd'); - - $this->assertRegExp( - '/HNHBK:1:3\+000000000296\+300\+0\+0\'HNVSK:998:3\+PIN:1\+998\+1\+1::987654\+1:' . $dateString - . ':(\d+)\+2:2:13:@8@00000000:5:1\+280:12345678:username:V:0:0\+0\'HNVSD:999:1\+@130@HNSHK:2:4\+PIN:1' - . '\+999\+(\d+)\+1\+1\+1::987654\+1\+1:' . $dateString . ':(\d+)\+1:999:1\+6:10:16\+280:12345678:' - . 'username:S:0:0\'HNSHA:3:2\+(\d+)\+\+1234\'\'HNHBS:4:1\+0\'/', - (string) $message - ); - } - - public function test_message_creation_with_options_and_segments() - { - $kik = new Kik('290', '123123'); - $ktv = new Ktv('123123123', 'sub', $kik); - $hksal = new HKSAL(HKSAL::VERSION, 3, $ktv, true); - $options = array( - Message::OPT_PINTAN_MECH => array('998') - ); - - $message = new Message( - '12345678', - 'username', - '1234', - '987654', - 0, - 0, - array($hksal), - $options - ); - - $date = new \DateTime(); - $dateString = $date->format('Ymd'); - - $this->assertRegExp( - '/HNHBK:1:3\+000000000333\+300\+0\+0\'HNVSK:998:3\+PIN:2\+998\+1\+1::987654\+1:' . $dateString - . ':(\d+)\+2:2:13:@8@00000000:5:1\+280:12345678:username:V:0:0\+0\'HNVSD:999:1\+@167@HNSHK:2:4\+PIN:2\+' - . '998\+(\d+)\+1\+1\+1::987654\+1\+1:' . $dateString . ':(\d+)\+1:999:1\+6:10:16\+280:12345678:username:' - . 'S:0:0\'HKSAL:3:7\+123123123:sub:290:123123\+1\'HNSHA:4:2\+(\d+)\+\+1234\'\'HNHBS:5:1\+0\'/', - (string) $message - ); - } - - public function test_get_encrypted_segments() - { - $message = new Message('12345678', 'username', '1234', '987654'); - $segments = $message->getEncryptedSegments(); - - $this->assertInternalType('array', $segments); - - foreach ($segments as $segment) { - $this->assertInstanceOf('\Fhp\Segment\AbstractSegment', $segment); - } - } -} \ No newline at end of file diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/Model/AccountTest.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/Model/AccountTest.php deleted file mode 100644 index dd48b90b..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/Model/AccountTest.php +++ /dev/null @@ -1,53 +0,0 @@ -assertNull($obj->getId()); - $this->assertNull($obj->getAccountDescription()); - $this->assertNull($obj->getAccountNumber()); - $this->assertNull($obj->getAccountOwnerName()); - $this->assertNull($obj->getBankCode()); - $this->assertNull($obj->getCurrency()); - $this->assertNull($obj->getCustomerId()); - $this->assertNull($obj->getIban()); - - // test id - $obj->setId(10); - $this->assertSame(10, $obj->getId()); - - // test description - $obj->setAccountDescription('Description'); - $this->assertSame('Description', $obj->getAccountDescription()); - - // test account number - $obj->setAccountNumber('123123123'); - $this->assertSame('123123123', $obj->getAccountNumber()); - - // test account owner name - $obj->setAccountOwnerName('The Owner'); - $this->assertSame('The Owner', $obj->getAccountOwnerName()); - - // test bank code - $obj->setBankCode('123123123'); - $this->assertSame('123123123', $obj->getBankCode()); - - // test currency - $obj->setCurrency('EUR'); - $this->assertSame('EUR', $obj->getCurrency()); - - // test customer ID - $obj->setCustomerId('123123123'); - $this->assertSame('123123123', $obj->getCustomerId()); - - // test iban - $obj->setIban('DE123123123123'); - $this->assertSame('DE123123123123', $obj->getIban()); - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/Model/SEPAAccountTest.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/Model/SEPAAccountTest.php deleted file mode 100644 index 35d49900..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/Model/SEPAAccountTest.php +++ /dev/null @@ -1,25 +0,0 @@ -assertNull($obj->getAccountNumber()); - $this->assertNull($obj->getBic()); - $this->assertNull($obj->getBlz()); - $this->assertNull($obj->getIban()); - $this->assertNull($obj->getSubAccount()); - - $this->assertSame('123456789', $obj->setAccountNumber('123456789')->getAccountNumber()); - $this->assertSame('123456789', $obj->setBic('123456789')->getBic()); - $this->assertSame('123456789', $obj->setIban('123456789')->getIban()); - $this->assertSame('123456789', $obj->setBlz('123456789')->getBlz()); - $this->assertSame('123456789', $obj->setSubAccount('123456789')->getSubAccount()); - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/Model/SaldoTest.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/Model/SaldoTest.php deleted file mode 100644 index 63074710..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/Model/SaldoTest.php +++ /dev/null @@ -1,28 +0,0 @@ -assertNull($s->getCurrency()); - $this->assertNull($s->getAmount()); - $this->assertNull($s->getValuta()); - - // test currency - $s->setCurrency('EUR'); - $this->assertSame('EUR', $s->getCurrency()); - - // test amount - $s->setAmount(12.00); - $this->assertSame(12.00, $s->getAmount()); - - $d = new \DateTime(); - $s->setValuta($d); - $this->assertEquals($d, $s->getValuta()); - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/Model/StatementOfAccount/StatementOfAccountTest.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/Model/StatementOfAccount/StatementOfAccountTest.php deleted file mode 100644 index 5c3d897a..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/Model/StatementOfAccount/StatementOfAccountTest.php +++ /dev/null @@ -1,33 +0,0 @@ -assertInternalType('array', $obj->getStatements()); - - $s1 = new Statement(); - $s2 = new Statement(); - - $obj->addStatement($s1); - $this->assertInternalType('array', $obj->getStatements()); - $this->assertCount(1, $obj->getStatements()); - $result = $obj->getStatements(); - $this->assertSame($s1, $result[0]); - - $obj->setStatements(null); - $this->assertInternalType('array', $obj->getStatements()); - $this->assertEmpty($obj->getStatements()); - - $obj->setStatements(array($s1, $s2)); - $this->assertInternalType('array', $obj->getStatements()); - $this->assertCount(2, $obj->getStatements()); - $this->assertSame(array($s1, $s2), $obj->getStatements()); - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/Model/StatementOfAccount/StatementTest.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/Model/StatementOfAccount/StatementTest.php deleted file mode 100644 index aaebd627..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/Model/StatementOfAccount/StatementTest.php +++ /dev/null @@ -1,58 +0,0 @@ -assertInternalType('array', $obj->getTransactions()); - $this->assertEmpty($obj->getTransactions()); - $this->assertSame(0.0, $obj->getStartBalance()); - $this->assertNull($obj->getCreditDebit()); - $this->assertNull($obj->getDate()); - - $trx1 = new Transaction(); - $trx2 = new Transaction(); - - $obj->addTransaction($trx1); - $this->assertCount(1, $obj->getTransactions()); - - $obj->addTransaction($trx2); - $this->assertCount(2, $obj->getTransactions()); - - $obj->setTransactions(null); - $this->assertNull($obj->getTransactions()); - - $obj->setTransactions(array()); - $this->assertInternalType('array', $obj->getTransactions()); - $this->assertCount(0, $obj->getTransactions()); - - $trxArray = array($trx1, $trx2); - $obj->setTransactions($trxArray); - $this->assertInternalType('array', $obj->getTransactions()); - $this->assertCount(2, $obj->getTransactions()); - - $obj->setStartBalance(20.00); - $this->assertInternalType('float', $obj->getStartBalance()); - $this->assertSame(20.00, $obj->getStartBalance()); - - $obj->setStartBalance('string'); - $this->assertSame(0.0, $obj->getStartBalance()); - - $obj->setCreditDebit(Statement::CD_CREDIT); - $this->assertSame(Statement::CD_CREDIT, $obj->getCreditDebit()); - - $obj->setCreditDebit(Statement::CD_DEBIT); - $this->assertSame(Statement::CD_DEBIT, $obj->getCreditDebit()); - - $date = new \DateTime(); - $obj->setDate($date); - $this->assertSame($date, $obj->getDate()); - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/Model/StatementOfAccount/TransactionTest.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/Model/StatementOfAccount/TransactionTest.php deleted file mode 100644 index 9a446647..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/Model/StatementOfAccount/TransactionTest.php +++ /dev/null @@ -1,37 +0,0 @@ -assertNull($obj->getAccountNumber()); - $this->assertNull($obj->getAmount()); - $this->assertNull($obj->getBankCode()); - $this->assertNull($obj->getBookingDate()); - $this->assertNull($obj->getBookingText()); - $this->assertNull($obj->getCreditDebit()); - $this->assertNull($obj->getDescription1()); - $this->assertNull($obj->getDescription2()); - $this->assertNull($obj->getName()); - $this->assertNull($obj->getValutaDate()); - - $date = new \DateTime(); - $this->assertSame('123456789', $obj->setAccountNumber('123456789')->getAccountNumber()); - $this->assertSame(20.00, $obj->setAmount(20.00)->getAmount()); - $this->assertSame('123456789', $obj->setBankCode('123456789')->getBankCode()); - $this->assertSame($date, $obj->setBookingDate($date)->getBookingDate()); - $this->assertSame($date, $obj->setValutaDate($date)->getValutaDate()); - $this->assertSame('text', $obj->setBookingText('text')->getBookingText()); - $this->assertSame(Transaction::CD_DEBIT, $obj->setCreditDebit(Transaction::CD_DEBIT)->getCreditDebit()); - $this->assertSame(Transaction::CD_CREDIT, $obj->setCreditDebit(Transaction::CD_CREDIT)->getCreditDebit()); - $this->assertSame('desc1', $obj->setDescription1('desc1')->getDescription1()); - $this->assertSame('desc2', $obj->setDescription2('desc2')->getDescription2()); - $this->assertSame('name', $obj->setName('name')->getName()); - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/ResponseTest/ResponseTest.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/ResponseTest/ResponseTest.php deleted file mode 100644 index e8e70cab..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/Fhp/ResponseTest/ResponseTest.php +++ /dev/null @@ -1,51 +0,0 @@ -getMethod($name); - $method->setAccessible(TRUE); - - return $method; - } - - public function test_getter_and_setter() - { - $response = self::getMethod('Fhp\Response\Response', 'splitSegment'); - - $withoutEscape = new Response(''); - $escaped = clone $withoutEscape; - - $segments = $response->invokeArgs($withoutEscape, [ - 'HISAL:5:5:3+111111111::280:111111111+GiroBest+EUR+C:9999,99:EUR:20161018+C:0,:EUR:20161018+0,:EUR+9999,99:EUR', - ]); - - $segmentsEscaped = $response->invokeArgs($escaped, [ - 'HISAL:5:5:3+111111111::280:111111111+GiroBusiness?++EUR+C:9999,99:EUR:20161018+C:0,:EUR:20161018+0,:EUR+9999,99:EUR', - ]); - - $this->assertEquals('HISAL:5:5:3', $segments[0]); - $this->assertEquals('111111111::280:111111111', $segments[1]); - $this->assertEquals('GiroBest', $segments[2]); - $this->assertEquals('EUR', $segments[3]); - $this->assertEquals('C:9999,99:EUR:20161018', $segments[4]); - $this->assertEquals('C:0,:EUR:20161018', $segments[5]); - $this->assertEquals('0,:EUR', $segments[6]); - $this->assertEquals('9999,99:EUR', $segments[7]); - - $this->assertEquals('HISAL:5:5:3', $segmentsEscaped[0]); - $this->assertEquals('111111111::280:111111111', $segmentsEscaped[1]); - $this->assertEquals('GiroBusiness+', $segmentsEscaped[2]); - $this->assertEquals('EUR', $segmentsEscaped[3]); - $this->assertEquals('C:9999,99:EUR:20161018', $segmentsEscaped[4]); - $this->assertEquals('C:0,:EUR:20161018', $segmentsEscaped[5]); - $this->assertEquals('0,:EUR', $segmentsEscaped[6]); - $this->assertEquals('9999,99:EUR', $segmentsEscaped[7]); - } -} diff --git a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/TestInit.php b/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/TestInit.php deleted file mode 100644 index 7f02482b..00000000 --- a/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/lib/Tests/TestInit.php +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - ./lib/Tests/Fhp/ - - - - - ./lib/Fhp/ - - - diff --git a/www/plugins/fints-hbci-php/vendor/psr/log/LICENSE b/www/plugins/fints-hbci-php/vendor/psr/log/LICENSE deleted file mode 100644 index 474c952b..00000000 --- a/www/plugins/fints-hbci-php/vendor/psr/log/LICENSE +++ /dev/null @@ -1,19 +0,0 @@ -Copyright (c) 2012 PHP Framework Interoperability Group - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. diff --git a/www/plugins/fints-hbci-php/vendor/psr/log/Psr/Log/AbstractLogger.php b/www/plugins/fints-hbci-php/vendor/psr/log/Psr/Log/AbstractLogger.php deleted file mode 100644 index 90e721af..00000000 --- a/www/plugins/fints-hbci-php/vendor/psr/log/Psr/Log/AbstractLogger.php +++ /dev/null @@ -1,128 +0,0 @@ -log(LogLevel::EMERGENCY, $message, $context); - } - - /** - * Action must be taken immediately. - * - * Example: Entire website down, database unavailable, etc. This should - * trigger the SMS alerts and wake you up. - * - * @param string $message - * @param array $context - * - * @return void - */ - public function alert($message, array $context = array()) - { - $this->log(LogLevel::ALERT, $message, $context); - } - - /** - * Critical conditions. - * - * Example: Application component unavailable, unexpected exception. - * - * @param string $message - * @param array $context - * - * @return void - */ - public function critical($message, array $context = array()) - { - $this->log(LogLevel::CRITICAL, $message, $context); - } - - /** - * Runtime errors that do not require immediate action but should typically - * be logged and monitored. - * - * @param string $message - * @param array $context - * - * @return void - */ - public function error($message, array $context = array()) - { - $this->log(LogLevel::ERROR, $message, $context); - } - - /** - * Exceptional occurrences that are not errors. - * - * Example: Use of deprecated APIs, poor use of an API, undesirable things - * that are not necessarily wrong. - * - * @param string $message - * @param array $context - * - * @return void - */ - public function warning($message, array $context = array()) - { - $this->log(LogLevel::WARNING, $message, $context); - } - - /** - * Normal but significant events. - * - * @param string $message - * @param array $context - * - * @return void - */ - public function notice($message, array $context = array()) - { - $this->log(LogLevel::NOTICE, $message, $context); - } - - /** - * Interesting events. - * - * Example: User logs in, SQL logs. - * - * @param string $message - * @param array $context - * - * @return void - */ - public function info($message, array $context = array()) - { - $this->log(LogLevel::INFO, $message, $context); - } - - /** - * Detailed debug information. - * - * @param string $message - * @param array $context - * - * @return void - */ - public function debug($message, array $context = array()) - { - $this->log(LogLevel::DEBUG, $message, $context); - } -} diff --git a/www/plugins/fints-hbci-php/vendor/psr/log/Psr/Log/InvalidArgumentException.php b/www/plugins/fints-hbci-php/vendor/psr/log/Psr/Log/InvalidArgumentException.php deleted file mode 100644 index 67f852d1..00000000 --- a/www/plugins/fints-hbci-php/vendor/psr/log/Psr/Log/InvalidArgumentException.php +++ /dev/null @@ -1,7 +0,0 @@ -logger = $logger; - } -} diff --git a/www/plugins/fints-hbci-php/vendor/psr/log/Psr/Log/LoggerInterface.php b/www/plugins/fints-hbci-php/vendor/psr/log/Psr/Log/LoggerInterface.php deleted file mode 100644 index 5ea72438..00000000 --- a/www/plugins/fints-hbci-php/vendor/psr/log/Psr/Log/LoggerInterface.php +++ /dev/null @@ -1,123 +0,0 @@ -log(LogLevel::EMERGENCY, $message, $context); - } - - /** - * Action must be taken immediately. - * - * Example: Entire website down, database unavailable, etc. This should - * trigger the SMS alerts and wake you up. - * - * @param string $message - * @param array $context - * - * @return void - */ - public function alert($message, array $context = array()) - { - $this->log(LogLevel::ALERT, $message, $context); - } - - /** - * Critical conditions. - * - * Example: Application component unavailable, unexpected exception. - * - * @param string $message - * @param array $context - * - * @return void - */ - public function critical($message, array $context = array()) - { - $this->log(LogLevel::CRITICAL, $message, $context); - } - - /** - * Runtime errors that do not require immediate action but should typically - * be logged and monitored. - * - * @param string $message - * @param array $context - * - * @return void - */ - public function error($message, array $context = array()) - { - $this->log(LogLevel::ERROR, $message, $context); - } - - /** - * Exceptional occurrences that are not errors. - * - * Example: Use of deprecated APIs, poor use of an API, undesirable things - * that are not necessarily wrong. - * - * @param string $message - * @param array $context - * - * @return void - */ - public function warning($message, array $context = array()) - { - $this->log(LogLevel::WARNING, $message, $context); - } - - /** - * Normal but significant events. - * - * @param string $message - * @param array $context - * - * @return void - */ - public function notice($message, array $context = array()) - { - $this->log(LogLevel::NOTICE, $message, $context); - } - - /** - * Interesting events. - * - * Example: User logs in, SQL logs. - * - * @param string $message - * @param array $context - * - * @return void - */ - public function info($message, array $context = array()) - { - $this->log(LogLevel::INFO, $message, $context); - } - - /** - * Detailed debug information. - * - * @param string $message - * @param array $context - * - * @return void - */ - public function debug($message, array $context = array()) - { - $this->log(LogLevel::DEBUG, $message, $context); - } - - /** - * Logs with an arbitrary level. - * - * @param mixed $level - * @param string $message - * @param array $context - * - * @return void - */ - abstract public function log($level, $message, array $context = array()); -} diff --git a/www/plugins/fints-hbci-php/vendor/psr/log/Psr/Log/NullLogger.php b/www/plugins/fints-hbci-php/vendor/psr/log/Psr/Log/NullLogger.php deleted file mode 100644 index d8cd682c..00000000 --- a/www/plugins/fints-hbci-php/vendor/psr/log/Psr/Log/NullLogger.php +++ /dev/null @@ -1,28 +0,0 @@ -logger) { }` - * blocks. - */ -class NullLogger extends AbstractLogger -{ - /** - * Logs with an arbitrary level. - * - * @param mixed $level - * @param string $message - * @param array $context - * - * @return void - */ - public function log($level, $message, array $context = array()) - { - // noop - } -} diff --git a/www/plugins/fints-hbci-php/vendor/psr/log/Psr/Log/Test/LoggerInterfaceTest.php b/www/plugins/fints-hbci-php/vendor/psr/log/Psr/Log/Test/LoggerInterfaceTest.php deleted file mode 100644 index a0391a52..00000000 --- a/www/plugins/fints-hbci-php/vendor/psr/log/Psr/Log/Test/LoggerInterfaceTest.php +++ /dev/null @@ -1,140 +0,0 @@ - ". - * - * Example ->error('Foo') would yield "error Foo". - * - * @return string[] - */ - abstract public function getLogs(); - - public function testImplements() - { - $this->assertInstanceOf('Psr\Log\LoggerInterface', $this->getLogger()); - } - - /** - * @dataProvider provideLevelsAndMessages - */ - public function testLogsAtAllLevels($level, $message) - { - $logger = $this->getLogger(); - $logger->{$level}($message, array('user' => 'Bob')); - $logger->log($level, $message, array('user' => 'Bob')); - - $expected = array( - $level.' message of level '.$level.' with context: Bob', - $level.' message of level '.$level.' with context: Bob', - ); - $this->assertEquals($expected, $this->getLogs()); - } - - public function provideLevelsAndMessages() - { - return array( - LogLevel::EMERGENCY => array(LogLevel::EMERGENCY, 'message of level emergency with context: {user}'), - LogLevel::ALERT => array(LogLevel::ALERT, 'message of level alert with context: {user}'), - LogLevel::CRITICAL => array(LogLevel::CRITICAL, 'message of level critical with context: {user}'), - LogLevel::ERROR => array(LogLevel::ERROR, 'message of level error with context: {user}'), - LogLevel::WARNING => array(LogLevel::WARNING, 'message of level warning with context: {user}'), - LogLevel::NOTICE => array(LogLevel::NOTICE, 'message of level notice with context: {user}'), - LogLevel::INFO => array(LogLevel::INFO, 'message of level info with context: {user}'), - LogLevel::DEBUG => array(LogLevel::DEBUG, 'message of level debug with context: {user}'), - ); - } - - /** - * @expectedException \Psr\Log\InvalidArgumentException - */ - public function testThrowsOnInvalidLevel() - { - $logger = $this->getLogger(); - $logger->log('invalid level', 'Foo'); - } - - public function testContextReplacement() - { - $logger = $this->getLogger(); - $logger->info('{Message {nothing} {user} {foo.bar} a}', array('user' => 'Bob', 'foo.bar' => 'Bar')); - - $expected = array('info {Message {nothing} Bob Bar a}'); - $this->assertEquals($expected, $this->getLogs()); - } - - public function testObjectCastToString() - { - if (method_exists($this, 'createPartialMock')) { - $dummy = $this->createPartialMock('Psr\Log\Test\DummyTest', array('__toString')); - } else { - $dummy = $this->getMock('Psr\Log\Test\DummyTest', array('__toString')); - } - $dummy->expects($this->once()) - ->method('__toString') - ->will($this->returnValue('DUMMY')); - - $this->getLogger()->warning($dummy); - - $expected = array('warning DUMMY'); - $this->assertEquals($expected, $this->getLogs()); - } - - public function testContextCanContainAnything() - { - $context = array( - 'bool' => true, - 'null' => null, - 'string' => 'Foo', - 'int' => 0, - 'float' => 0.5, - 'nested' => array('with object' => new DummyTest), - 'object' => new \DateTime, - 'resource' => fopen('php://memory', 'r'), - ); - - $this->getLogger()->warning('Crazy context data', $context); - - $expected = array('warning Crazy context data'); - $this->assertEquals($expected, $this->getLogs()); - } - - public function testContextExceptionKeyCanBeExceptionOrOtherValues() - { - $logger = $this->getLogger(); - $logger->warning('Random message', array('exception' => 'oops')); - $logger->critical('Uncaught Exception!', array('exception' => new \LogicException('Fail'))); - - $expected = array( - 'warning Random message', - 'critical Uncaught Exception!' - ); - $this->assertEquals($expected, $this->getLogs()); - } -} - -class DummyTest -{ - public function __toString() - { - } -} diff --git a/www/plugins/fints-hbci-php/vendor/psr/log/README.md b/www/plugins/fints-hbci-php/vendor/psr/log/README.md deleted file mode 100644 index 574bc1cb..00000000 --- a/www/plugins/fints-hbci-php/vendor/psr/log/README.md +++ /dev/null @@ -1,45 +0,0 @@ -PSR Log -======= - -This repository holds all interfaces/classes/traits related to -[PSR-3](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-3-logger-interface.md). - -Note that this is not a logger of its own. It is merely an interface that -describes a logger. See the specification for more details. - -Usage ------ - -If you need a logger, you can use the interface like this: - -```php -logger = $logger; - } - - public function doSomething() - { - if ($this->logger) { - $this->logger->info('Doing work'); - } - - // do something useful - } -} -``` - -You can then pick one of the implementations of the interface to get a logger. - -If you want to implement the interface, you can require this package and -implement `Psr\Log\LoggerInterface` in your code. Please read the -[specification text](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-3-logger-interface.md) -for details. diff --git a/www/themes/new/templates/white-cup-filled-by-coffee.jpg b/www/themes/new/templates/white-cup-filled-by-coffee.jpg deleted file mode 100644 index d95f84893215a32e6e3a0131523220f37494d3fc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 145455 zcmbrl30PC-7B0M#kN}Y=;6@=%3wVv~_Fp&ux{G;=lSRoGg+jrE@E`WqfX4z+QqspVMS8MGB7iqA%tI(4m#?6D zVp#t2)vFXKiT(=~s{CEAVpPl>V_*>&mYH3+QmRbOz~G-qkmO$oJE86W{Cj-^gCk*> zJya<3_y5o9|3_P1*(+DA#xRNu_KsSTQ(5{t&sv7IsV-=H6`UY! z`=afo@3!A_?(=S&kG7ZOFJA)tpmSciB!3CoJ`da5*A(TzHcbNCrEAEXwXp4g?a7}M z<&&`eD{SNWIhlnR=Hh`~U!9Yk2ixJW?XfCDkp$Z_FwD(k>3?l!{nz&DoON)X7?!kR z<@#0R(!ACF+-$->V*2!0e__trPjXhT4wYqQFUwrD#6M|8{>sed>oM%zHKR{q-e_(8 zVUc4ZrpLsDMux%i|NGzn_RW9q^}pXh_x9Z$FXYa9Mj7+%e_s2~XaDos3L}QazJj$W z|Ice#wHS7MD~9>@|L3*I1`Hcjf?>z5{nz!3LGhBediBb<_upT;c5N7$lO2W@^xyyf zKX>@|p8xBO|N6c#^nL$cJO4R3xtT?utoBEXn!Vza6-BH33s+`l=lF;Izk~Sy`h)*< zTK{z(?Q_Rv}z67hMYjZ=ok|lh2fYVHW3TLxL7C_iA}@eF+L{1#8^6(fi1*7!m_bE zEFW8it;IgYim_5`CsvN_#q`*I%!IXKhp;cO~{b%R|<ig7KY63NtnnC@Lx|CW#-9Rm&?xxmI zjnsqGW7Myy-%zhp?^1uFzM^5Y5wtP109q(5mX<_Ir>SVUv{kgvXj)n|%}6^$J4w4p zv(xU<9@BnvVYrNT@plPziFXmY%yr3jDRBABrOZX|(&BQ=<-CjCS3lROt}|WJT{B%*yOz4vx*l}>yQ|Ihf$OhsBitsrMY<)ssoa*kZFZ}6YjgX` z&F1#d?RR%icaD3Ud%F7)_x0|3+)eH$-LJVnaQ~g@#hk*N$;@D?nZ?W+<{@S`^EUIv zh!G+sL0sxsT$EN*MLgs12j4M;#q?ZPa5= zch6wYB+pFG&phiqyF9=1eC0LTE5a+?E8nZktIg}O*CTIN?_h6%_Y&_C?LEF&6--Vka?bVy!EUC6bm)TuF3$*B!f z``)9!H~qck?-}3wF4QA5A#_b>d+3j0W5Oh1o5PNW{rvvq_f_v#ynpfiKf|NLKM6O5 ze;?r;A&%G_aWdkU$dJhF$ht^J6e}t@>TgjeqMq}n@^W~MyqnRZqovW?qR&SEGiF-M zs+dDDL(?WtTRg3P+IO*dtSq)H_R@6v^u+0Zn|^BgZ*ehktK+_idm0}azbw8j{?Uvn zGje8_X55<@I5TtRfthz_`OjKB%P{Ni?10&svyHO{_(A+7d^7)H0+FCjIGFHrVtC@J z#LmPwNpVS=lFrPb%}JS~opV*-Eto6N3+^NbCNE8HPkxpXow70IjF2u&6;=qp6HO3h zi&{m`#M8u^#OG5zQkALt)B#C|WR>KklqwZVtE9KnIBCn%j;CYkqV%ftA7oQx1+p*Y z47p5RCm&QqC_YtORE}1DtZY-h&PdGIlkxpr?%bleXXlNYw`gALyf^db%&(k(cftD$ zHZAyOA$uXY@Px`$HBV($z4}1#!QKxZEQ(%Ky6DD-Q$Aex;pLCmAAR!C>5oT!ocZz5 z#q`DV7q>0`BQrhInE5J8lvSVgEITQCU-nN+_)Bz4hH_@+ROUR)otayi`)KLRrBzFZ z@@D5%=RGEqNIm&nEmZGUzgd>P%(CpSPv(E}dA?iz;{2}V-piLQKfhw)ighdcR!&`6 zy7F#8T*2OgXRA_InF}d}9~PcijRTqbwuoD_wdlt+v)0tD`E~8QwMW-^ty{kC+w~#q zcdUQ7A$dddMwgA*8_#|k@M-a^bWovus$kJ7%-))QEwtu_Jc5?gG9Z@@Kcl@bcqP?;+d}sB} zKgzPpuI!4~RkQ1_-MPE3?upscSk5S4UVfuuc1262SLKGvdsWh^V>*AGR`+u6$9peV z^Q!mnW9}>3ceh4TbE0-~ZF%h<`aJ#hy2QHA>&MscsDIP2q`}t6Z#=Yr!v3B6-x^56 z%>yY1jv0fE)lH11HBE!2d8UiavCXY!wt1)dpO)p8yDf^A^R3fbTieFB?P;gB7qt%^ zTy(IvV@}73L!pNbd_Ly$orkf*MTduvEIxAMi_|a99*sSE$jY(ScaHAV9-|yvf9%=u zyyJIIEIiTICGI+VGX7-emtkL8P6eE*JMD9N&sWT^O1}E*?;HO9>deYBkH22}^}Vwn zpZ)&af^&}Z^7B`_Q@bx+NWO6HV#3A0Uz&O8)aAI#T~}hS9RDWfn`7Tbf7{s;-P3tB z=IXI))2^N9o!)!0Z${r&w%N9??Q`rG93saz*VC@|-I#mh=68#}yL)rV%}2LBx%Iq% zP5iF%-z#J&iV1%0p-B=_pm{?~hBLcs;5AnftT#DgWuW&lWs;@O;(tzkVru;rGJw zlK1lLE7_|%uk&C3{zm(&->)sd#r}5j?fkb7e_#8D>mN1$B>s8w&(uF}|CRsOUw?g% zm0(mFjpjmgq0?QUbTJriZmzCwZY*~u{Kp#YG13G6H`)vL8U;TSeSLg`PzrCekw0D>D?<@MR>+yo?p}N3ra7EWcp{_+2 z>*YcZh+udp$XzoFMh8X~yWxoy2abI09u%c`=99Imk2z*C??=vabV<%D`aip%&HqIv zypSN9c*FcK;+DyhrC}CvVv9_aR6!^f8mCq9@nNxCnAIl;ji85dn@v<@OLr(1(;!Oa zmspr$)#A`lTo&GJ)VhS?3Y%}kBj=V?i5azAPkE|{KSF?8H7c&TH^O1n$*4A)qL(7T zm7a0|u2G2>$@z3#XT_}Y9vo9B`m~rzCFW8{0UWdkM{gRn7-mrvCKxic+-8GIpq9v^ z&_k)!8j9e3o=y{i9B_8o~NP@&Os#bHMqb@ zQrw7@M1cU~z@g7>Nflt>Hrs%fzSv}u^Do$xt;F_xxEy~|GtW9gP7oLB-~{9nx~bV% zPWLnP@mWngs}4>!RpJ7#6|*b~xMrQsDhsf}SJQosT1F@*jO2PMl&zyw7@ZS}V>)?? z8iSQHP_-&C#)a$oA3tIh*WhB*5*k7DS?l}Im_G2qlnHGDVuU%@<=VLraa*bd8W?In9kf?Ot z)ey?WGsH`#YREs{vAI@TuJk+s_setSA7qM3yoox2&)Zy2Xoibu%{Vq(H0`G}Tq932 zK|H=RY8T0P4A&< z=~yTVTt%M%-OnQ0IFvCQKlpCCQLAFWotHs`;>`IJBG2;fcKOQr#$qNBAqWlF3SmWq z&+9OSP0n}4tq|&*&?!9U@o>2y+`IbSDZ!^r-Tq7>&ydK@kJqO;&WH)=G~5j?&8!(G z2=z4w5G3J%z-WHLcZam0LNJ|&BhZ+TNS+FL566E@rB;Q-8nt3fC5BMpcB4}ZTMuGGMCIe)z01#WdsX)i1$g$37E8UwH8B}ki%4Hr1@ z_Zh-EEXKqT(VqPT$@NvBL*v%|#T@(;q>Zsb#Aor))BhurA&F#=x+%X1s(DO(ttv z)lqyeeVJCbTOF4a$g?ZhWm>Gvk!y;c5OAQhrZ7FQMlBAE_G*>R$)g5!C#Ok;>cCB{ z9^2s%j%3r4WaDgA#Sz&+xtlsltd1mE%flPhLFwiVHb1YH9&v%pM!OZ;BgD)U1#>ux zxzdEc<>TfuW$SkFI@TfrHWF8R1@C6$sd+}k%Drw*@O=>@ZtQ>fRRRR z1iu@?gzDV@VS>w3`E;(qru2k`5zxjI3pms<5M6W#dALWgh;rv%0(9fe;mxKAWPvbI z0ZYC(uClta9AT;lpUeY1gjjRo#6fBkdB&Q})pe=-v(=T=5a75hf+XoE$`!KkpWxj1 z?x}o;W&nPE0K__lI|xyckjihuvBH!MToXmFN+a`pA$-mtw4$4g+QleB0M=!c6o`NL zRs{v#GXE=h;D`vKS#Z)W9DJCCO}kOO+hGMHJ7q%{I;f@WfD?5SLm;BVUiPl8)G|;O zB^C+*7)vV~M38N&w3lb#l1(UZF>_s-2`*|MM5qXs0Hq!MfBIoVqE=RGm;{lB0R(H{ znAL!gaDn_1NY>s6c*8)g)DqjpVx>ru1ptkpR0LNqz}+Bp8O6H*Hp~=0EOkB#btUQ0 zx#e@>DvNg+wJbo-{U`1rTTXsq1vWUHY5S>D|o+#cggpT6XvP&WeM`1ObB#GvD zjn4=+N4p!ADRaHFi}5?_OjGF z*0*M}uX|Y;ZYw=JcfZypuDY_3j``znCCVd`L|d^ajaoh;4cGn1 z-v%+MN*WJXL3*fEuz1bR#jDmPGF1>IsER|)kJCUgAvI9o_$4StNGQ39HaqFSP*}vv z^;{EeE9A9CtReu7V@;NKND_*#HEPD{(N~P*BFx+kv6-lBrS`5c7t;5Ug39CjjW>EaRB-J0Kn2 zmC|zTpO=U_h06b7Eyf5AKma-qy!2>A_DJHKUa5uCK@k)RNK`m` zs&~1~CX3)U^8n^i96}5!p=LXv!s~|fA-W;_P=!8ka=u|52B<@rD~5x(!_Gy9Y?6@T zSbtKQ$%OWlBuP2(xXvS=hu~7Dy9Y=Ktaq@O#XF~9=VOtT`+t)1uq&jcLSo2PM}~;= zF~JsrP!LmGQAw1Vx+BXk4V5-WPr@mzaEI9lCEd&}cNB2~-&3+?Xi2=3uMP~!ma`d& z>L7)_0v?6fqV+$L?u;yBL2iN!l8#V6K^NqHVNq^|g%DVZ(I%E|=o?QEJI3lPGMxT+d;M z8%C_cP7ai_x^b&4%xK>l(*UduR+&kxcLu69qy&njkPgtm#>7ROPz18XHombMzz2et zs%25D%bf*qu(~eIOzi_Sfg7tK9B|K4`3NZhoz6g1xB&bLsk>h)dVykEWiu1^>C>Pr zu7iO0wH6={*RtTV$&e&Xt~aX7dc)zQbZ{^LQ)hH>5P}1%1VnjvUlSnI#N6&!CLd=m zQVi@gj1#4qEGvN?6B^*8LWI(2hcJlBW^*sZCr}bO3N{2gbPhz64uuQUd$@SND4?asKQP)ytR7>M`?Z8*%k<>|(X@<HK8U*fpfF{ePd zq{toWy*hagNu-fohP>B*k}qqUpM01LRFELI69XFfty*Vht}`Tksd$mX>kPt`NB9=d zGQbZ1164Q%CEp_R=UEFNG!QLo2FU^C+Dy@^2ol}7h>^|aKK@8!RUlL* zRLTbG(u~CmoRks*lmZJ))p#mfnxS+8PM|t^+x9=Gmcj-+AXgg!pkq}iC=Q4fCPV@Y z{?q||06}1*0J&0Oqj(hH^>Nx2YL$~D_{spC(H%txg?N9Trvbd{_V+GRwixfmR5m1Y zPk1ypqo^YgRRFP4AarUO_d8V`apiLXy_}$iekqTL1ZR>&Y2BRo?OY>Vv|PX)k}&#G zg>)(t#nupG#XP>zh!4Zqw^}O^sB1yM1 z{WRnH>wdMjmTJ5a^+-x1t$$$`YPF2;!MZ#9r3RN*Ex)xArNw1t_NK_uW z`Jh)fAE;=MkGl`ivP(3Falrrj7Wu@zK|+n4{O6EKK}_rqkxTKnKTl6lXjkw6Cs&aq zDTrX<&y$HWGFt1o4u6ZIj2>61Q&4_rLG?ph#8b9n5Fa0LDJP(eJo3~i`qB(pSsEe_ zm^~~eVm{~bAEixrNoW`-MvacC0?+_BNbD1(LXmVd05U-F3% zyRjIUpRwjV@VrEtfNQqR~6hxf?Bq6mBd4QXbpsNOW0^*0L%2(Em5T)Qy zJo1C{E~-o=p^UQJGA1Veh$u*&ZoCU{rVR^-HSXgT2pN51a(dfXnQ5T97=S6R5;zT@ z9>fC_RuusXWD_UcyK=t>_Dt&zMv!bmX=I?Hq;(@kiB%C0VcK|VBOqw&H1uh8aXZZzN0fg{o zJWNJg&gZ1J#u^Ec5epb1$s`mTOQG6g@$D zr&j9{Sv~*}%CM6!?feVb`lK}TLp`<>zp^Qq>o*};tuC|q`Gh-k=YW5PJ3zl9#Upgm z(PXt!u1`XmC=LELj+S+%sTtk;D^FzlddFlLkAK_2dfCpJ+ix&3T2z+U!2^M&yb_1> zyXG`?7Z6uH**#mIX;REQuWX@epH8Pkp+~j;FN~>5NHayGs30nz^S9+TNb%0!{mpY&o7g0R`09z>ZSSWL2v|{i;`VbV#-}y^fOqICkoy8Fk z%VeV3pm@79H{(jI*#K4&S}X)g{s7A502^A24%$8f^p65EUj;HiwMdawepah0!u)~4 z@6$3M?x5bDe$*36gD3-L$EL#cJ0l+s4SrKAKo=_eaum402T+I_E6aM} zEJR=n@xXE!)aHXDL0Dz9qau+=kFCjTxoqm;O|8t;F6MQaX)Wg5eGof}+_K(K*IaEb z=@^wTurGQ-7>PZ$DGLShZksq9KLg!ZzP8zr0JmMm@I}}KH3L7B?`u)W0=N*m<5GCT zi@-)899d4;Z(x9NrNWj&&6d%)7F4GC#cK#IB?3MNY!)=Q4)`~y@jTcSR+KQ?-a&x} zdJ|oVrw++b4z4>7E9N8ux-*C{X9MI|5qENfzYchaXM(b10nReOSVBYt7!`oODoK(l zwJ7r-ecj^0?v62i&VS$m6?g!A8OP@R{MBQ}E4Oll5z3Vqy7T@Rs+^f=X8TqU z=tKdC(X8s?5lBd*a@rd~=0U+j_!z$V#NW6d(s&an63m`9S{E^4=;DW`7 zAxOR*0pALo4kR&FPUjClGQV8xy9b2rJ-_LpJ9Za(CtkO?(s7NP)w>wCUr{+_}lLH zNt%1cQf|dI_e2Gk*&RtQlF5483yJICKHj(NMQp4nj6A`6EF0_HAhO!F^4t`8J-)nr zo<~%wNV|yb;@8|WjZubNU=JJ6V8nZ^h<%(wu_;P3YWxIo)fzvocoRe8hyM1i0)|d2 zNG8ZUN-1FW9TaL1>QKCrq%kHF#8zb^dHRtv3K6kDy35~bT)|?F06n1e)HSp^`qAsO zQ5`YW<-Pt!5e{IzK*quG2B(8}3P2j* z8mb6-i=7{*T^tE&qn8G0$H902WC)LM+r0Q5_-*BoS>wCj%>In9G-JtRX(MSZ4R-`L z^Uev4L6YbIvzO3q7a+4STexHiIIhuN1~8+dr)H!KiORMQ9#Gd07^7)ZqxsjDTwl|g zJ+(7Yo%>YAuG}u=7b@8$jxQ?4t!~*RERBVQX{2&8uGe zsw?e(4-LM{{nDpmfgsJx(S5OF+PAoRCS!fZ(=h!K{2x4}gBScucl_eE3#t`$f|@+l zP3tEr%R|L_>q70LFFVQa=N<+8`TW|HF1A1Y7v!AGPI z?4O=Y;97Rj*`*~LS<~_tjx;xP<$XCKu+c8sGJl;ZgnME^v*3eU5+d#X&Cdnmd3DEX zJdFE5bUFR6(!MmaZA39(H1!_$T`OYOKGwdkV_5if08Q!&qIzGB|UBjXnxcgnY9aq$9zpsRRJZ zkF|p@*8?I)D@F_k>MQuZ!z(r{4#2NM1Yvdv3NB@{cC9*z@9|VR*a#IxXHWN6g8SQF z0Eq-H1@GJ|NQ4@75e#^Orz}PrNn44?~ra14KA^%lMxkWF&{P`@tl zJ4NXL7A;SO;4^4rO$OIKk$^e|`I*4C8-_dp<~7V%NH`ZuF03uk^hX1l2~uNqF?1wu z13^gz@7QU&VWG^S$b^7Hb zC7A3okCygeGXVahgizb86SU)-X172?N*co<(`z~3JpMez-EeSsOslC|1`Z~OI zj^+mAp2D3qHQ@H6X*7{$nXg2B_L}(XRlkY%3yXlsh`~SvuGEA>YMe0JhY0Kn6rSunbPrMVgXnVT zp!M=DU#KWw&}|P5A15G;#XAr;<#2$;!J&YTfnb2YIKYl_frRRyp#(w))gS>h>xyE~ z{z4$LrI4B)O2p|wgg~LOBS)OqUldGe`txU1YW(zYG-_PFNE)c|C8sx=2Q_T6)P&T5 z-2Ot!^T=$e>qzZRCOx)mwU+3K^nePbI!RmRDBG?r)7Ch0H388hG6oGitv~SpOQ;2s zQz$#!&NvVq6mqylx&&mNt082IK~6`xt@hVddQ!R<*kH9 z+1?ksO}RB@ztA;n9~fUYU#5(Jm{05z#6gIXNEbPPF45!4Az0H4wlxriPGiqjsg2@~ z#E16;BO?VQ04OvAwOT7tdRh%OXyJiNy|EW{l@WpQNcny3kHn1C}0ONArQ$Lp{M&d4;1eda6+;7)!Zha;$Y%JYa~j9l0l1X zmfN=6@{2Y_Zmk|G3YPNp%kv)5hHA}&bwbzND&Dv7?#LdLFoT*&5SF#39t>5T!75&9 zJnyy*DDZC}Ak|mSOWE5GQCe?AE=%x#-QMntpSdbj51*%}mxn~Y#GbVgsg${?4$iK4 zO5W+jC2bE{YugSV5`WYbD(&G!3VJxfWRwJZW#R!T)YTe*UJTYDJ0y1>o&~%p9?!l5 ztqY4Bf$nU)23Z=;fbs>xJ_;OB>S$b^%%#NJpki;{$3qvHV18pVxJRY+B`}y0I0%opGPNeK*PSWN({zJx{xRw>q`!$vTUTS+usk zxCh!QhXMrgJdN@>ADj>9y{yDfpr%O=I5^Onc5DW{;A{bcP<{&>ADAafZ>$OW&u(C{ zg40JpM)eZJdV{M%@w(Z71hEQJ3h>jd8W4A;0AOce7+3GZ=_N)e6H$nOq4u!VgCI{2 z-2$Y7FQl$<+M2+)&p-t-g(LZARVcTD0!D>L3XMv_WGn_xTM8*MJe!%2D$HUN?%h1S zOQ@fDu)LA$J52JvwHHE8=%v#j?tKSPN>uSQYu^2TX;@xQOcjqcvWGK`SKE5x;$USt zRc)Ii8cLVv&Byd#9IjG%ef?zqX09bmEW%#4AHWsWRO9;+_nj2kK1c_X{jm3#mdm{U ze3=IFY@NAEQc)o4hii&gl0URsvHiQC4nr;^6TcdZJxmwzKOh-$>A}RyEa=_s*8;pzkX#0MZ^(ecCv0smUzwpJp>t7#Q8NE;> zY+gK#sV(c6Cpro*HMe+rNxDDq&k&He-H1*C|5oXFmN)^dym$i7QDe4E&ViON*zRDC zR)T^jVw-rfa7Z8UmLLuOWrwP=#sPvwkjOeyWL0mGfLDqb8w>1HR5i|O38D<8I<(M$ zkOe?!aeZr?ZKMcj90B1&rdA~+9GJ*rzO(Ld!e3bi^e|cgNy(_XQJ3}#{0nyJ3}}2h1&g`7&kJ>kR+oYTd?9V6MoEIS<#rY=AkY|SiETN;@1qRK z^oP~d5Z6`SA!FJZVAfCdf|9YlMVjQdK)a`NL9`#Wyl(+Yjaxor?sRf|+<3R=mMPs@ z-&cNj?~|73=s7z(`K`;W4<_h8dI{Fd@LF|#9O__O-H4a{MYJ*Xgw@bX8zPB9G$et$ zsfzp|qG7c#V7#cY@>GCLfVUlPi{#oU0L55^@+jX8{LeMuF>6&>!%lU+BZa3>dV;)% z-Vr$GiCJ0|w0pt3*13Vfh(@9o0Rsjn&!rh^4P-)3s6U8)E~QXR!0)rWU!uCLP_|&; z_Cu*ax6BH{1jv%rMn-khnNT~@FVyK>;-MAXg;M0Py-?B&0BkElaMk*)W2#y*-ui z*{@&8qnxbD?I>k*ow?9qGARy^qbIaz?cOr=g@oo7pY3M$7vISDww>@&c!|Mu+OCyk zlqmBi@797HL?dgPv*mLSjA}MBVXgwO3si{Kb)~U#3*TK&Se1zr1VFj76bh(xR3t$N z#G0WT(mZYKcXj{`WlS+d4k#MnbcjhvvLRY@SZQ544@_9`S~W-&_>BKJry&4ZU&6=& zw}J1$(^>6&O3TncQE90}ZtDg+`LF~0lm4aA0r)xo1vY8Xlcx9z_HJ{uU#s5;W{y}L zBxGddns|2prCm|@FVM%jw7tbGdiI8F1+)W}Mn^!;^veB=C3CfVpy3L2W?`UlrWzcq zsCjPYf%3i&@&#pc4}!e8X}z`(klp7-p~eC(uO=!Tzp~OvqUyPnJQSp9Peo|}Qc&`l z#5#oY%pzxl30W*)s+xc!P{(tPI^afHI*x%S2jZR?g_zVV4Ims$VSqUkRHeba({Yu5ML~fLj zdE~-^8>eJh9Tz=)A{K|(CiB~jO-o<4EWF$@V(x;ZTWu3=nH#O0D!1t-U}UxCse3@v z)SRRrjHPeXB&=^fn_cTZ_$^_tOI_z7eTAb#rC(zJuBw@YWDHfVs#=<_B-~G{U z^(BUhp^4+HR7-LXS0+vsaTt3wH66)<1($d>>msH#!=#Lm%vqvTOB8Guz91?;O%T&? z`N+fw!K})LGf+s-JeZhJCquc{VKq&V0njx8$4ttJEAORxiNLvpZVimt>;`6bwyKk% zg}w_DxI0Kt4x^JmpU>jbn)45SWp)txkKQzY`_2K1z+ ze<|-zM?dTf+!u@^07rA(jRvSDc8SH#3f$fUrdF+Drf@h)!Oj7H*ZMX;pkjPRal{m)g@L2x`sx}%KslTAiD-F7f_f)gM|JYFNdYrSQ-lz|TK%JCk*2?+a&^85yjq;!md|4_?jQk4W4=Lde7O9&&4Y1u4 z1`4WcMj{SGhwM+Zw^|{Xb=J+r+i+`5v)LaFGJ)#Wxv8Lu)amckBieV~s)pu#9bg6Y zG#6%3>rP?PV9(lnqjVV9@W7T{=6z+n@)}6|Xgel%SlqEwO{xsFppp zM@f68MF&lk#vlz2_CKf##fffk!-xWfEMvGtUm3e2x)b+T3g=Jlc5UgH%Qx-|5M->6 znwuNAw6b+y%QqS8+lAHLll2n#Z1kMli)yHkqS-Xv;i%)yRre;M!iirgyQ|J7|R9H zL!K}&vcUY8V&U4{5aZpOr5hT@gXK-2VAzmF$yyG6V6 zg79Kb(2OCg=+IKG$TG}SUvAlsmu}F&z5Ons{KqtNZX*ODc&v1M7=}x!_FXXzdN6^a zpq~@UiPMZd9U9ZnkEAv5OK7{h6#)T6v`C@Nnk3S4am_mX&dVPqh6!7d#s)u8ep1K=$l8H2yL&5;Al{Wkq@D5pm95#pzSjA*`cmcx zZ9ih^9w{6+9<-g?CLA{oPe>6r)PzRdr!~u#Mw8y+Yx;w#8fna-^S29(broPIo6JCf z9Xja6*=$T0;eneEePlRs0bDdLV?o*5jAma|`8f7A3Os>xdiu0k4(pk7-Eblfv*=1dO+Ddk!$6dT+c~#MG&~SMM5OWNy5;yb!_?$$pn?X5TnwhF z4O(p!s0c8v10z^k7;%9{t@C9T2oA^wKCtQLz&h>X6e0N%Q4TZ(3qCi+zm?KL7V^i= zeXbG(FY{zKd;kT(Gr{cB7V(WL0(!xM3!rdH~}7J{d%*V z0-WDA*DXH=40#N$95q!G|FW7OLY=eeFbV-XqD~bZ^#Cu(ffIPc7&F(mv>e8y7vudZ z(nLX}0y7zUA?BeCKqH8kR}ez>V<0Eli(~W&Fda^%iF$;Ba2kKB+5TJvLSZEF(q0cF z?eAM*Dh)dejXmgX96&8R)Z6F@w+}~>9y#IqYA_~~`5+|hT$e<3l(ydPW?16e@?2Tb z6Rzd+$r31ZtbhuArq7fO)Mb!EaY%q!FPI;YLj#Kjtq6z=FiN)? zwGunUp@6O#^4hGrQ!scBA{k~@xyYZuK^bTl!+lbqh=P0oIcAd~PC=Lc1~6Z#w^Rh zx#se1Mmm0r<2z9E%Z9lObzeZt^!?F(yuO6!IU__sZQz_Bu={|h!G%MF+w*{OK`sXD zOcep)w<_}tuDO)}>m!oMu6GEp8B+{FJ|fMmJSy~rfiJgi=vM>D1{N>x{OOXeA41Do4D z4nh3as@s|5j*2Y3U{<+(av4fD&nx+}>Lf|%A&m@b7AydSKJ<;CAqo?p;E{uy3bdy# zy=7?ENF$6zcbj;~Ap}|gy=-V}pxy@1eL*o%V-dU$VSAT+qmHa{438&XcRo+T*mX6SUY0?J{Oy+)fk zUXeX>Og+~!??Ps}8P43+mxjo8vxx%pyfD@WgW%3s$LO(2XpWMOdYc^uX)zESJ{@K* z!QdGd7lGt)T5vERsfv?>S!#mu3m`4Q=vZ*Fxm8R#l+by9n751MKrHShd6 za~&|FP+l)}5ZVcV_u%*tEZ{cbuyszD1^u-Q35gA;XY@*w5x*ymdeUQ2pD3MLe%`{2 zNcZu_=9S5F>+tn6r;?r!@yzXb#_~UPyI;xcqK$Ko(c1#^Og(Zqd}S36VpOL)1Kk%G z^jHghB)~K_G}0l@F6P3Zg+{f=jxLsj`2uIwHV;(7bj2wftsB(c7;RDt7-oxXTeEEk zJ5Fu;9H)H1>ogv_5~tt)$+DZWc)!dAFMZ<91++J2X-lrgE01Dh{xmoGC){ZF>)|h* zWqsVentW2W#*!N`w7{JGljOywp=-Fex# z_VoCcu+`NNMDjA< z^rxw>H^=u~`F(4T5__zUqRm~>b?GPNPHm`vZ|1IT>axutj~b+@Uqz*U^!0(gB2{T@ z|AD-jtg#7MyEu}**e9~P*S(>X<6r`zel!F!^ber-hsX|TMx*R9nj17KtYGCpg+Zmq zITWnThZY0s$H{@B3R%LC6Vd)W%3}7HFq1B60C{vW2$HSEAP-i2y z#-Dy?(ZHi(Fr4Sx54zjgOQE3WL>8mwd%1f*GP0ok0n$jAXDoMaxk1+eT?cS1^auzL zu5&{2HpmPX7*rs-S$Jvj4ylDrf}Mx*=^nnVH`C0ntW!h=X^9J!??&?`PB$!Bvf9k9 zuF3No12i;3YVdN$uk82nGr7!xKH_<6 zi@|UJ%zjx4rBE|$Ocf?UC~kdMb-=;~$(lw0UV(--YQ^yQ95Q>w;wb(IAp!nPE23Hf zywW;}>u6|q3!!#{@k+z>B(D|gKV*+9Up-(T+e1y!3r*4Dz^)eiB-O#3HwOp)eC59H&Y??n`e5<) z%M0_P=aai4*k)Bp&(j4@BHB8poo0L7j>`CKQ(@1{`O_x8{BY#ALy|kMMx+&h=X$%W zsD*X&RqJ5VgQe1k`&BM~zPdcF^Uqh4KAG4# zCO%lY_$U^4y*Rqyr3nBw-JPyECxSZ;zFagfF7y4IN#drlco(#lIaCndCPTKfx@xgK&~-Qg zC6(w5!24ZLf>F*m3=X`@kYl*ne&q7gg&IejuSw3u)u#Cokk4?urG55Ou&Qt+y|WiR5sD+!Sggw z5m8f4gAfRwg5+6Ckw3r*caF~@sRYW&X{CXDHiHj=rr4(8Z!--58&G#gc>AZga95gjk3Jp#(jGlp((r=0>zXWyI z{6zlBB1sQC3MN5Jl;FZg!72s?sz7Ao4K!&Z&O35- zj@;tyg>v?K-Z}BzY5Js8eZKH4IN3>Kw25Stg4VX~yI`YC`bpB*PB-@-_xR*|Poq}U zaN8u;jftQ5wS~Yii;-HXheDX=RA11Li~|Y?Ul;{XC8VgirtoH7EgF+ay;E7wBd(aOtC|iSb1reW3s1!;AvHC+Fn*Q>v8veCE;`UbP@hL*ci&kCIv`TLFR)TeXx1#`2Ot9g4rY@XP;`^CM}OE0h6(yllu zn0)J$ZI7zWzDITcfuonU#rDM%#{$aLnV;<~X-^n;q3j(Rqdbgch|9Hbd*PVcuDT`K~9KQPGRqS*9m3{K8S@R}|A4ILZ9RB^K zN$+>Tkm+6CrRa*!o)G6#>+4^=J|xPTQuLK&N%-NTYgKE9H~jvOBl2rgUi$0}Zu*A) zNyW|ik^Xg0R!lyc6&X4Dt4+htO8pkT_KaIPLDV`}7pmBNTruRh&)Ty*L|GI>d$IV2 zm~t*3W4F1+R0^(iG?bcw%86y3A_SZeMs z!r#v?UQ%^??#2&>w%U1Rn`6$DE$wtK2r!)@>x>rSQGREc<@jouR*Y&1d_1<^N52o*p`Ek!Z6)|hshczdcRSy5K zd+Un2amObXYO7~v+?)Jt>ds}Yhv;X2lWd7k8YS)+wfFwPf+HMhYJ2q2N!RZ_UA>`X zL-pNRwH-tYUL5BIlu}{W7IPRVb0zJ7zFqRoA6KzraOmP z95H%<2$)g|Gy?%$^MLWV($abaViqlw=y1D#uw0$<$z1Q%*k+Jqfc_Lcy$>^D5PA!)3G`njR z`b?bSWp?OF3i#JAkt~tCLYU3sZ2`SOo%PDE6$UJqu1GiA+gAaU3gXJkmEBHQwIP=U zv~sTyelr;`TUvzCI^wE2abWJ?z(PY?=$ zZV^O`G7W0QNyu2G0H^Que}bIB{^~j~QaQMc#)>)(W*tufk03&K6#6#+so|sbX*Yg9QB?iPbG^VUin7uVL3fgOT!$|&BqI1pUp1_l1GWP^`UcfWt z8e`Mip1cayt~G7H8SI7g_zEy#`_VaaeINHB!Hsk_tp(gLklqbLFhNXmo9baCg^abx zBES_Z?}lN9;_bw*!Ogpa3%i$H^iKJ%O2{nuVD#qO%--KT3*@IdMW!~9_R-;A=1!?> zKebn6@@Y%XuV#x|ewmwFUYIda{pILY--|A)jKADieO%Zz*!4k2M%eTV%ciGA{Gd;+ zZ|)tQe1g_`P}GSp(k!cL+_+6qSiEJwda&d>Z{e!M?&E$xOAD@k`Djm~@AAiwEe=l5 z?!U0+!fD5!bk17Uwb*rh<))C5v8hp4TI*ZBzBXI@?N_?~KmWp>)@!1^cYHVAGNt3{ zuX630W0th7sa{ocf4)~Pnbh+e^_QuQr@spCKYfMppEBW#P3`Xs965itX3b|t`c7OH zeB+0!HTF+W{V@7y{D=hnQf}hN4U1o0eAz1gc}@Af_pnP7_m;J;t~}f7xuD?E&;>Y&_y@Dez<-`Q0W<( zIsMmpR~t4)Uu~?6%&!*2XFOln9#Z#Z^AX!`|Ez9Z_)THf;FGAM>m~=p`dr!3_(9?C zmWkOcPDHPuv^UhCJT!#mL!vR}U@Aevb?}B&2z4xbD|+<+n`t{!x-Y&CQ|PdVc!s zcHil#k$mY>(tTYZw}uJ{l`t^!#B3$(o3&XD-|y~ z_bl49d3+1D_%CdKN5RRQyL%r7dl#oan!2!aYHp?PmIpV-W3yG?oY?&2!=RnI<>QWt zhNX+DTVF?(_T+E+{C+{zuUBo-h57rAT-dbCmep0s|9b53x3Par?b-Kr_22uctL}#! z`^ELs`I*r_91R>>IB9m^Qu>ia&x&ULyllk*yMp&|pt-UC?Y<^$Uy{$6{F}KKm1+84 zyaKkzJe*o_k=oYOvSc39^h@%pW$BlGc4t-bo;9;NOYoRBKCRnr!0=jvx42V9JPlz4J!U7YuaqeQz4e^QY#%QkBt?(Y2D=hDod4n;}s zuRNY~LbUyI2HaM_Kz*0tZd2N*_(`vgJW+}MmS_|GK)&)v5&pyA>-I2vRAf_k<7>_GxV+J zbNW5cbv^&M(z%So<$UhX{l4$lyZnXzb{;sp`0dd4Vf?ol8scN^7MB$G8c7gRL**3x znj>iX%GVX+_+)^0lG+2JyhxV_>`V{`M3fBe{$0&AZPln#2L!>baQt2Zm>yw8Ep>zn zFPR{S%c~J4z==WEDO(3?0O$Y@4R{39|MJ1uU`pO8Ca4U^UeE~xzS|5;{{{@`dx*36 zOl;`G;7_;=x?muR(`lgn0&67p%Vz$gkAN3nvU|W)RMLR1=BjZS(3i~&l}+Qy!Yhf( zkgE6Ck?=|~$p|*=O(2534BKG_b$kj#hD0z?0dAzKA<;A5-t1V*#mMzs*m^!RP77S( z4Q~TS7~B9r7x*5$HycEGu`zdPQ06Mb0S8>g6X1XWXaY8q18fp}Yy!Op+{{bvVFfnm z**e=}kFBU!aJ6?X#-3Gj)1b}`{Kg&-q6aNps2WI$Xla4bxS?X zwUHo^Hm(knM!rTu;PNw2K&H?foYEQR)Eoo@bv`R*@a0pzU9`BAps0!z+{)fuehpTV z)*`xXmx_TjWFboP85o#50_#%@R5uLizN&%7kP0|Cd9YCuaAIl$gMi2YIsjMG?4P7I z1kp%;W-ZwnI2&T(hZP_>O4AawbSy|DfImcGk=WV))Y&;fb8Dr0x~~Cwt6^zc7{5-v!~C) zI)JO7wW&E>4Nfgd9#r8@QzAgAqM%Tn+!Ek3We}@{3AnE(&`(3C=+PNo>ahF z@@GM-wRuRs!TaN_48?9VYm^3~*a!K1OEQ|ICHrQ|u^x8?4eHB6(JEF55B&r`^jS)j zG3njj+TSIKVW}KssHrh)4L8af_nSeT5Dk~LGY^X0EB+cS$e|J)ZkLK*)^@asvOf8a z`}^qUI~(~#kN0R93kgz_XE1GhCj)~0F3qw(_EM`jWh@lV6mHZx&h5KxMj6JA=j<>> z9Guqv8atmK?sTUcW$B~o|0UHIFrQ8=v^mOyWA?z8eC}I-f0TL2>y{r$dh_Tgcd7XU zcG+5z=auEutAkPb%vO>OKhzj$y{kWLZl2TZkLVP8Sxc=joz@ZMf9+r2D+**HBul#7 zwW$sb@hDjA;aFkMA-&+9ou}RsFP}g;z1L=@u~%z%Nk^gDmscf)rc$aH=V4 zpi!I83!ZlIs}KAbFE5UM(D{w8=I20|DUrJ}_iA(fU_kwit{4m4-qKOtK9(0WTH=8l zBx|?z*jdmh!78P!#9Cp6Mw9cmA?oQW<`o>IJ3kdqSNGx7{NW$O&>e3Ir*~Y^SIK7`A{p0~a_?)* z3i{pHLWW)s^NB3|=5I01q4AgZ)}$$P_2Ecghi;hIdCIJjloA%x?50br+DT#t%eVAr z4I4s`QoLFRZpHQLn6ty*V}-`}34t89wARo|T?~TiE9H(Sv=E+e3j9-f95IHg-bGao z31{n=!#4pTo--fmr(%o~`16X9F|mg`CN!|w0C&E@5-U}Ll|jtL1f(}*=DS6Dd)F9p z#_Bcs^2t4Buhn)k+#9Sj>oIOsdoPH)s7*7n;O;m9k0ur;_)VJRjVJD-EBd|DR`_;TWj;=T!)HUqImHL zAey1o{Np2LmcHU!QROTaE`RO`=8_7sHIB9=Hiuu$1vWC5#?T@@p3+RZh)$MSjSOk0 zKZg+EwpDV>`3VZC=~Qy#|Aj=Wre&K3G!Miw4a=3(x#l436|kT~JdIU? zlY8n!e;g);dw9r>J&NpMI(F?KHs1PWVk3sBB5N(1i`!G@gYjBdG$&-hgj0X7(6&fa zpJzZJD?{`WImsjQdjTS&P6`l~)CM({v)LBHFcVvihXl`iUZ za~-bo)U<@;il^CfOgnwd^83Axtm<_`UC~gnBkY_}v0%)U#SX)^WCo^# z2$&c_gg=o9N@h~x8RF^31{RRftu}oas=4i|#a+f>VXIGJdToqv{Nf=O_U2Zg3UAtT zGk-yyx~HmX@4ODIXsquh5)THM5vgFlCJcr;O4wTznEwJU4ww+AD!mlP0Q(NyzCaWL z1R$_kIR-eGplRY41M?Ugc>wMmPw9FlY1tp~D@Wc43LUn5O=nzLtbebC1%%;rP6w1T zcmzY>Wyv50h3f?pKQKHx=W#(Pa0%;|qTYa2@;sHyQIm{#=m;u2uzrZTnrJCo@t}B& za3r?$#sGc#esl>WFbAb_C+!P={VG~1G#~<5b1A*`+H2a;5u73r7OJy~Jo7zw#_2>iw zJR1Fai0QI{fIT-#z^lf7wJ4y_h4EGpnW1BeW0fA4H#nVhq64aQe^un^1k~(ueYfOr z(BnW)EI%T6cDTXJm$vmwje{la!}4-ET{ci=u7Y-i1ZAaxAwv)seW|X`pM6Et?2a+e)MtuU}z5pyy^k zt)_#D<>6c^D}3i;d@XqN5C_WP(1OxkflYUvE*Tjhq{3tqR-%>Ou~{>v4DC#}6F*0k zv*OCIPd7Tm-GSd2kPXrQlyW9?2*IUV+O@G=kGDDhsJ2=7!5tQyTVhDB=#@Mh9&grV zbyu9@!>yt`m`;k9zyFDNIZtKT#<+V7%Zng|m7>O{4Wj08q}OJ~yXXw=QkAtDB~_MB zw2GN5X%pXC%oYr-6~;m&b8Z!sqf@BNwp|~#Gv6^-tYh*!tD3niG9JLi85U0xM0NE= z+(0<3Nj(p^GCC9-+o8Otf0uu9b+8VNJN-uuZnJy15l_g@j|iD>nq(rL@H%D-90w0ensPb>M-aR0Xh!6~YZy6ezNes^z- zP}%hIq#JWv0+0HfoiLdT%!``pA!6jF7-eN*CwL9kdpKwNUKHeKXFieZx~d%Cv1%(@7%26f0;U;-6x3)alP~iUfiOBbaU!`3MtC;bdlI%K%0>OB* z`9_v8YU)qbaC+!}yWAXClxt<+HUHh0@8YHqT+dZoS0wZOrh=@vl;r%^tQeYz9c1R9 z@AXN~UgYHDLxji1H-V#IS5Y$^mDRXc&M|M{o*}KSb9Ag)_Q*c^a8+fp#W^wy= z&8=n)UAfunrrH`ZHR$IR>ru6oan+ow|M*Q!<2UT{gaZ#lt2$GlJ;Y)52}Iw2nS{hk zj|v#Ma}1E*X1X;{Z5VJY_L85&tMko;-bmIrm}x8xErRXgP=(YTCPMo^G~V-HpCVm- z@uBp??w=(}Nxd~4q@N|=vHUrc6+N>IVyYTLFuuwotLUT*8agd|#26$n{V-)TI{YPh z@eB>h-d^6-TZlt+t8r3!pKo7smDtEr`V9765^ZMmwF-OZ2S(7*W ztadS)Cyk}%O|7j6i`2obq8xsfHM5*weWq>AYB9Vd=>t}+L^G>p-da+jB<1v4MX^(j zgBR?5(v?c+4NOOOp8b5uU}>RDWpBavMfD z9+G=X%j{{K)>P`{2|*S1-E2}y*0Xi@&P7%nkkW-bMe2RR^3g2$mPPxc6#}k&0?zM6 zafT%{G+X8o=W7!q-oK>^P^UBN*Vc`7U(UEsq|2+DbD_`c-5x2(2H4xeaS*~A_*;v4 zS^NCzoTCR057zjz-3-`T@;n+EqMzex2xtVilz&05v}+Mg4>FyfiF4Jt?s3ywbinI{ zQ2uTxW`x3`Jo)De@#+QS9MgdEa^Tt71Fd?Fq)~B-G@+Z6go-wD$f=Gdgtm9G=IxXO z+3Cg(`0uEnTL!MCM?U#|H`noP^^b2|#LJD39TQsf#d#d$yHtBs?w$w7qf-+s4IfN6 z&-ux@;!g4q0sS3u%d*$H*$rJh`cS_?nMq**$J<@qH&RJym_S2hw$qk;pL{s#8Q@m}OSyitY(2_4T+Iv^RHA+C#%haQCX*Rb*_(K6L5*xs>&(_bY$WxTa)PyKQTw~? z)*+_}8C2#b>eNXNMqBzaK|`xJb|FDOP=e``)3)XP+M@a_s8;Z_2_@$}>OC!d08bK6 zCHt3J0qI5_95SFLz>R+fo2?a&O(+##)(0gZPEI_|aSL^}Dw0%&LdN7~HHB!$fwMAl z0HtZG*z>2M!EcZSQFV~*0V6y={oY5HebjgzOi(z}uxrhKZj5 zf*B|SmjRLlwn-nEoD5?t85E!9!K*7REve%0EH_dU#AC*?8NlV6r$C9<8JidB+U1@7 z2nb(5-8dIvo3!A$fD!#YAZ?rh&kmc9!KUP}aS?U!XBEnp3We4)iI2rvf32s}1+vVpdyKk4+8VbPsuBx>Xdl8!wz zt*`6rx+sbUy3eQ-T@X}HCXrR+s*?N)U+N^P)M2qlDHg|yyc~#ncOe>Ol(;%vQs5*S zKgBwF{HH%(8De+KCvSBQjCbBEl$ER%)0oIJ4oIlnmRVCj%HS+g3P2{bXU$R0vhEwA*diq&r{+vCm0azBctYd$uA2Rp-6W zZU`-oYv{%qfHI4mRirL<+G-r(-45LJGWgD*gG|rja9+9@5qt~|&8$+(aX5)(1wpY* zftQ}uL80Oi=gj;yvkrtm2`ZO3n#Z5p_NnE&wl4=aUYP>Fl0eiRS8_o2Ed?6*1;ebq z9us+3kSv5(&dMf^RyOR&q_WtL<^wuM{VUXv`mEo}l0&r5jtv! z&Pl4YvP^z@t^SJB-a2;&66bK?!qWVdzm#)3bJxjiwwOiPky!Un9|m#0ZalN{yWf=C zC9f0NxvB%_KU%}p_SGkH8GIMy7$y9bF?UI64et}uGO9Td9itKctl@))L~qlG%wT10 z6tuUQ#;1o{J|}pAd{o>#3g=&kQ{ky<=ga@qw+#;{i(9^h1s2h zj}%(_^=W2y(^S7&c`Tl90?)_mU5wYTLU&%;PP@gVj5uj3N#rrV6k_2wxFtJ@9vvR+&0_FU>^CZ|dNgTl`+=E1!Dj^&r>qb%Ai zIc6}Xa8@T)N^;t(1sTq<>AiX@4#BMwHH^(_gcUQg$ZB+5f0@=g*GLdtwYRen!8Uuz5xDO{jCpFWQufH-MeHrLB@>PW#o9 zf`;E;^tAN6xS#InqZ4FIwkX|=zPuYO4Vrx2l&!tXHhlR*D`fx{aIET?p^Z+LHVJy{ zV?2@lbmwi>=iI_!!6n7MPsYQ%>f;P5x}xo2>GF=FJ;&qWjAPgK@r}{aD+i}_aN$dX zhRXt+&!I$JYRoHX!(ufx^<~QXa{1p4OK$p5zs4iJB3F<@j@*tjDSA)klEw$Cb!tf; zVE&eUEomAZb8(mF?sRJ%Szpzlmq5xZ3@x3)&AVEs0Zry%lMI`wn2UGV3YPo7rv>pS&t&nG9jj!wa#x;TG1OL_;TK#Sw7y#HTFrvmj4 zLRS~=p2Ud9^wPWif$v{;J_>d6bUXNT2TxRUh3MTyd7#rrsf-Mr6pfQ-1h2p0d{Zo| zk2ep|H9nlkvfT?23Ny~A{5E5O8Ls5)>nV-sZDTq-XPHY|zfZ1Kp#**Y#7}|0F%M(G zM#{vV{Na>k?p3wTlCndxoCu{?zU^vNiR~yqinMa1TwccEuu0}GgxvWY6P7nj8e^aL z{*%ee=2#gAyK>GKBHVEaa~<{ssInZAA(i(s+z35elj3@^z+DF#C9Ofx#m6jDy1IY0TP-+Q!ql(m6q)zo^T`a_ z?pn{p=UyQ-j8iPxs~hKVybBu>Zq0WQ&i@c*T6nSh_8#0=-Cp0bfn!n$M&D#W z?$GOqUjbkUh!=q(qc~P6@U9n^ztFi!0?ZLGm>-cO6NTC9GbHP(;Txwa!JAHCY*B>M zPk^ZT1Qbj^VFe)w?qK;@{|`>hTmkO;{~}EQf`>%|ii7Dc2n2vg6XZOFoeP&bRb0?qXyOMmrNP})hzMM5>a_<2(iQvm&r)8(o328BM2a*P|s*O zJT&q$T+dQsHW30H?m0UaU={4Cl7vdWPy(n)fRP4j#m4!cL4r-p8iDvPMoj4zkS}0} zk=pc;x+x2b>aT1%ghw!F{cobd2_PSa2CM%Er5yPJrAEHBKRrV*D3sx0IWv zGXOD8kc#@3aR-AAo|01#gilchx(Ep(?c0&B0U;Y&F#(4RR6xs-5wq`T#Z$+o9ZStzyxJ5AaaCdpl3@APY zU~HlLPx)Yh<)Ebj@^283Syw6%1{|hx|4Pv3An~N%RT`{HXC+yQ6=ArZ)qhCg9XzwL zTLL)%Vkc6UJGPL0yGe7zkm1N;Vgnh{<4~~)o4~Y8{xw&0RJ)SaAl9TV|dsB-Do&FhgcF0s>YryTw<;c~Ra`m>CRZw)~ z=IL*~`0iJ5*KS`Ox%=V4an&$;?ldl@9Cs!=L>F58BB*QOX;|53H4~lOF$g`A!@Pr& zSk65=U9oR`8u7+Cyd~%Hrn5I-sbu4Ar1as4UxPQLh2jpTQE`Tpgkz+TBk1MTmC38F5zYNVHtXjf{aBhF-Ap@YYfOJs zGRjsj;OR9$RO+;hs_%f3vO61H_Xbn#9zBvH780b?930t=9wZ`cfFU_>MXPYv3gl1r z;17B#j%xplA2PsETUtsnK@&e>!(}U||G@oeLA?EiS^#s|cFn_oujiM;8-`_fj+GHEu$ zK39r!}}9b~kEEv==#w3#p2EP7sxsKAv;i$<`3=dEQ{=ypwFa zlW@05!%LcvA~bOL8^7;Z02`~&Ah-0T+45{j&7gmd<(Z5g`R+n`dNo)@wdXCj7IMAt zSO7)pEy9{4N^Q~*zZJD_g~#2ZH69cor%ok6s~{Wdf-o@U93Cqi<*AAq@J$G0lf{{fHG*3jWh-3yI|3O+ef>UND$ks3Q6BFbACF@*I)>-7#q)Vq@{&ZOU8Bci>E~82Ek2JFd{gW` zLoclPd|sVj`4(svCvQ~q*@m;Ls&+ZP55)Kss%NH-@`g`c!0?<=M$?7Tkh29v<$QQn_>oD(5L0Lb_1Wq%HO|AL29k+|<|1G~S(r?oU|j5!Bh{ zNx>_9#`IkvP5Z@bR{CYQxn_f&zkZrhfskj*N#`#A3$e-K@8c7Af~b{YH7zT4brsBh z6?RLSCF-4D>SS?|6AJuIv(I{7QK*+xZYbbLe1!U;6ylSb)GX*D!({q{ zNmJT6R1CV7BC6!(2ER6UxH}pCUNE)XN23#Tx1Tnf3i4eh6tIz(T+Jy+_~AKjANbe% zv@Fm#!bDd?Emsc7cZ)B3E7t5weFeQZid5_d?z-&Ev{gdCJVr3W)i_c6OMfBk+u;FBlG4Ozdj&)44;x|%~Hv6+LLwo3(>l`&uj7c+4D*{pTQ0DIu}PSUi0R$ zJ2x*h!avTF#2H_v?-+fY^}S?n3zcB^&0*tRVI>=8!aF;s9%~u5Q)BD zFO1SZai_5yA4GZOgpi!R=j0gJ_ZpgP2_7NIZqTPO^weAnna;7&omhQpgfN6vFBMMo zm^tW4-HNNq6Ncl9Xvlb^iX8|22Qz7FYMJ#g{K|dFwt;EbnyTZTeZHMdL0+Y&FJ~s% z#U2`7=Eup>(2T4OBh2o#{ONG=7Ppl|`mW^$I^I%SW?}d(>wnwTVlG#KUFp=`oa|3d z=}yb~$cFP)aVgcgLw0_dp}og_;Is=qfkIX?wb=^da$SmNdBi!nZIGnkg+h#t11a+4 zM$JZ6uRH%l;5o`TZ9R?MMqPFRCNn~MQZ*fSzI^^RXb|OhTMv1x&ENS0=HGncyWLe~ zVx;+_Y6hP7hB^&RT@c3rq*|oaPw3I3;j)A~NXL??02&pvy=Na`)i{d`^~^V@7LY-) z4uD4VzeLJCY>cu3*fmX8S`aslSYVA%0Eh_4Qi`U(P{U>6d*Xs)h-Vxz{ibTmft|uq z>oavEF+7d8qJl%q4XdiMb;U6Sz(E2ZjV-Q=U>l{BaX#7_E`jg## z7VThENdVy#pNZ!Ls4egbs4;$$fR2J4QUNgOKa?;|CsxA&ivBc(4xvAwH-k<-b0u7+ zfDrjq6RyAmnv-l`(*yp2PPrii#OKPd zl+zidGX{7Xr(_bF7+@{NWWuR^PeB3K1aV*d3WUq?D#Wuu{4oa`9D)C{o3LZ4SwjGt zFDG%M{)pwnVng2l5Luv)i;YBLS)Ok}4GqFcox1-C7j!dORlxETTxM7?lHgu67++yi zlORKy$}|n(0x56M?>97L0BI99Fv9|zYY^Ah0j0I=q-h2v;n{~XZ?+4$lE^q_33Ff? zhKAs0YAZo-6E;o=XjOtd-wn2FKDJ4)!h6yx_0?Nx*qK1Zhu%hgxL*|}kF;DIQU%Zx z?qGcCuRs%nw%ItSNdh+zK#>30X%TmFl}anHxF(1l+U+aewuB{di)4st8!IUZp#-vk zD|OC-5$&9ulSS3-@}f%yQ-8=!T(XT;w`xGI48`k7?6gqPZxV&6>4kbvSk2J9xITOB zMz5GQXz14AtH39YFykHT<>ny!EPp+ND)ILZFj)?{rByBWdx)McLt6SkZLTwllI?+r zQS8p*(afJ4Qw~}sN06N)zCa<{laHa~GFN7qzxKqrZq|dW_&)k3QF{|b zaaszV03mO=Z*I3T56|#mmc$CPP!Y#cW^7KP4S(!og~KsIDkdI04<-+LOuOKNJLj(W z4TOPL;MFM;M2AKqMdXH}Dh zIx(-k7#mAaJVM)9fADS4sUJOQWAvE{OCz1)KW#Dgqk^8W-ueK1>E8MxTk%1X9(VR* zl)3Ssdzm`D%}rA#WXW*F2V50R+tG~#xFiLvIcfA-lk;`8TH0m=$Yhr}_hI@e23g&i zqn-Bxs8u=ZO4=yXn*$blZ(?HY*lYhFk9+j%V1r+v}IR{H`ci zqYMG()`=8}HV#71qqjJ3#l1ZK#~6D`f~WMM%aUfrjA+G^YJ^;h_VHak(dZhVdwEbA z(uqY=yaI(rXn+?J1&m)t&Md!g`t>0fOkva9Vw=RA_e_C6B6(-3-ZzTdZ?s}F?!34x zH}=}{qP}$l%%{P=!Y#do$NL267b`2c38N3om8X9HPPPb9Qlh50@GF`sG zc1uV?nt6CH1vm+T5dTxuvoR}6nwmPBwK4gk zs=9Yl7q9nRYL_1RKeg+jO3v>L-P;r%WMYjLsUULK^WO_Yzj6yIh4HpPQ}^W~yi$&g zubydrci6YNv8|P$e=5yhP>@1OfSb-IHYuYJ?aUKsj>o!tinnX9t>)>KSAOyhQu*%i z$wv#;H#(dp{v4Z|aTgL~jUsJu>hya*%*ng^76VWgH9Jt{Rh;BTZW-x6-%t{-St-ogfkp=eGY{H^mrx$}ARu_~M`o$Q2Z=SOXz5u$2qy!cyyF^VWg-(b$liUFZj=SMd{ z$+fwWa#~$vpnxfQhf!A=2t2DO9kF?MGmh!2=Jz8Tvuf9?9Lx0&q#^c()g2zIlkW>^ zv!EJb=hC*Y@y}MSd%#rQzzd=^O8_nk-+me%W0XB7Ql-DdK7ze1>|@ z@!IOz?n}rKd5G?aq zC28so72HgJcB64?^Z2!%(V^=%;=(w~?C13+dRbRtGBsWI)u)?Aaom%)3^Z)QMO}LJ z1V^MD_-{WU{IY)c>m!laSnW`9%M_oSypfB2$GwbC7K^OrEiWRn)*y1T!UG46TnPdQ zLZY&e|6EJ+_=7HP+@{9o+YIwVv9qF=NTT(HACNppb)9~DI!=vfZkb(U4-A`sn9M_5 z5F?KmoX)G@@Deyc8&lps4lC=NUecHk|H_5fT;67BcU$MldH{7&JC$r!gQ)jGj$D)l-yroL6>}bpU=WPyU&!|o3QiUV371Cd*@7= zqwVNzY35g@7VXj7l$kjdzCB5KFEA+jZ>Y=kI}bbF#A(@&J|pi#5V$KesYsYGzLU+{ zZu|B^!@d3u@ulS9x1b}_XSExCH*eA!f6dI-s%=kNa7&;Zm@!GQNE#YrA7#pWc|JJZ z9+Fj9PZvNZ?^G=!p22XQ>k-HnByz9!^tu29y$rOeFKDl$3L;1=-FN2ep`69tWyjvB zDTs!a(g}Y(uFvjVR!=Q932cq#y3yGzrJS`%++6}=bh%Zs`C5Bu-g`~PZK=2;!sSdS zzpF{Er2XDX_n7MMM9JA#N{E`a>sdX6-;|T#9$BqHO#HCn&@Fs-DFEHrwW3-Yvvh}`8#n&4d~Bv z<1(0oj{B_>*~af$o@!)zuydqLkU3)hE7P9KnD}od#i2|wWV9&VX-X7crTT|qx8dB^()=7U+{z70^PrXFtA{DrKsbh|&~RQGy>ivQ** zQ^y4_hU>R*f(ITg@- zBPLY!YsO_W_20apRwN%X2wR7^>6lJ{@|*4mkhZMncx^lvyvQm$ZzM#{TV%mZSA@ut z!Ul)%rEsx67+6~b0zs)Dc}Ir#&=-S9iiNzT26&iHxW-v!hBFkx68@4^xMiw3WHxj3 zg}Q2l2r4?@V`x{tu*0{`p>Si*lD9bny+A+eRj|84&<1mJ7X7S6?HZpCMSf`mAM zg-+Zq5Z=sU6d@p{mgQ-Jc8?FNUpDCsKwGFcbU+>pKs&SurKqO~h96*TfQ}uppP*zE zcqkRrf@6VX1wH#%UhIC3f6V>=Z^4D7n`|VJ7SM`V;6w~Jc83N5@EIY%!~;?m>%Rfm z1dv*!s!%O>6M)0>^3WN<1jR2(L;zpr*o6{KY^wm?ZWnN+*lU8-cv|qRinb?k-f|QT zD`B>B$v9im+6{?1TvG>ou9kIcL5gLaCcc{Zl+()0HOIog z>iB7!D!N4Rv_|Wm~~F8W0`4n^Y&( zns4!ES%0a&6%QvQKltGEI@6uBl4`T?GV%Rv*zhJb>_^mX!OhbUgt><0;}V$ z7jVj5gJ1q(MG(dbXf9LANY|Ofs)e5gLMZjRB&{B zYZGEiUh8+`_xY2Ym(siWTIpw&))fQ0E0`6z+?AYqYCj=uAv`I&Py$uvPT^tk!X=>| zyUOvWp>)wtG9bc2A00M68TTEq7{9WAKBn?wQ155yjKP({cxI-+#G`ku+zCEMChm2p zg4gttWxoklX6GIAY5qb!msn-t*y;NF;(ZE6#%}ixY@2U%*d}?u$?Kbc+x_UlZ3F9h z54FYWiY8$Ulz(KhD=k49M??7$$)iDqIK$}c5y?%zNnL(jE9a7EwqsS^>z)}Momcp^ zb3G7JoYSK52T4BM)F{;Gl(Y#6;Wm4U_2K(aiS(Qk^@t(j9tF{m{8EoH^0AD#Mtl*JGwo{LB0Biv@f;S^k}F zk8D0FxNAh!&1I~j(BwwXACqITU-?!E|CI%e#x*`;!q@ktzGY;MW|sE$=|DHieH%dO z!S|=3r-}nlHCS=-)I(kQe$|>vPma$<4oja^1#|9X+cHh78}Ya9RB|;7{;`8fyO+ng zv82s=T9kitSW@QGrbpWM=4Z6o&$r|~TdIQ-Loi$?p? zAi5k${)&bGFu$658NgIm=2F-k?Z8+cjgPa0Y~;Ey)iz=`NH`BsaeGQ9xU__J!>|+E zQwl#5g0OUrKYgF~c1u0edhK8X?~`e#K>fh``>bIqNXuo$X^gvfW1!3YhB2)>9gQ^8 z*&y1ts{RPvZFodpeBZTR56t^;Wcits^O7m}ie#bfrON7#cziN-_yIdp5kV2*_;rcjPnTkbtS4cSS91DI1pS4gxvbmWxH4OQ~a{tJ3!1S zL0Eyn<;ISyTGG2mzobuTPQu^%SyiBC**08wm}q->&e)2)4HC^hRT=nHx|S|HW}ofk z!K6lg-F}lUya@Z!f5<;=3V&Ep-L#pLb4s(-j9gwYvgmUa_ZC_n>p8W=SpBDZ&~m%~ zwh2YXG=E&nrGM&0+##mxFgIL zq`sbYpl2|TRFvq%B)4VcPixyp)(1}S#m7a{<&H1rYmMZvWxHHtsJoe#U<~|S7#^|7 zeB~LtVd`&aqG!sTIAp5wx@n1*x%s8O_A`2c!CKzoiaxFyTM9`t_Av!Ll&|9u^e(F# zw%^I?c>m zD-Ac3Zs0{I@Mt^~qkCf_&82>NR%1`cUplwvtL5iVw3=>nR5-MUEKS8EF0Rr(XR&&x z7}dckY-vfrM?n!F^&IC@2y%#l8P&gUW-ytgDIb34K`C7PJb;!~vL;SN$lHC@XIet76y{Xrq} z51Kr;Vs~aq$88~8hde5wxxE!t440!_?B42&D9`sXaHp3?fQIgea8ThbiGv&y@JdKD- zj*Ug~Uet{Ym&;cplX4;J=s(7*4sLIkFm0b}o|Se|(YFX2L{GYGr!r_^8vS^h4{JKn zvR$J8ISBM5Ck%9nPHalktcSxBDB>V=XUvmmzu?fHq=do#RmCPBNSOAtG@5K~0G)1LPhqE7*!C6^E2VLF z{^4W1n+5DHBP?DKOJXPk^hWryp}t5eR$7XR0?MWawpg95bc=?yqS26~;J*5tOJma7 z+z+tJk4#GZoO;9|8Yn4TK7bD{B%;m&SU?gjKk-i@W!R(}$i)NbHa395m|;}MW^LHI^`y>vGF!J;Mpl=0b)DoBbS!2mKMd@k$`dOzh!2T z(fa4zT@1G35%7w5X=EHyNgbvH-<(x1Oiwbpv7UjJ zLP1pw9bdpI8StQL(%vrW&Pr_(t;Mm0?wRx`A;`E(ayGx#N>vxXH;mIg&ITBXP#tBE z>Ho*AYKj1%yhz|`0$*`Y89>TFB_8{I%BXL|Dp^Fy=gbePT~yd9RU6&s<}N5P9dehf z4RuviuNGB=ISnl{O!Exr)E-!u75d($KrXgrvQb%+#%36~!G$%XsWzhJ3YIkTj#6la z1-iYx*2)vNRL0_qsqbj=gyec;`=R4_RX!W^9dG)i# z#7590lV8n}h1-)khi3i#{hN&~%6Xqr(oU^X*Y?Wiem2EzHM#Mq`@P%oTg#H^N9?uA z8_v`VEvE0ryn`OrJwDt)S*ERLNwzz6-$L2Ri$1c-e9DPKw8iXoq?0x?y!W^^+z$SO|YAm6<`xgw-0(ruxrUNo6n_rC&6<%$a z*+tQ%9vDoPE1O@W--S0jhpkKZNd}WZp@N44APNSWOBocMnZ%y@x&JBEKGvQ3Gb*rD z%Z!2Fm@M}uc$@-D{{oA}%-biao9DscJ;plsKHO(`J`r|s2lF+A+o|}=rd3DWGtKk* zFN4g{K}=t6?dR=lJ$+Kzpmbz|ewOh^Cpt$?`M|;YcYnAglfB?vuLL*I z;mFE_C2!MqAZpq==;8B-4e4FvLK=Qap`Dadq>V;NV7PVSV^J7`fL2M=E$*4vbLmfm zj6=UB$VCPSq-7+k>P^_`(4#_b4@68w*_5*DQ}Tj(YC1Mg3PfT)&m3Mnu>7QH7b~84 zSB{s%eJ9UV^Wio{Qb)vB4LZDc)hl$|aPAAb_b#zK8>_||43rjE2!$#uH`ANn4Aum> zbeG8?lPEQr#uvJx)@jO7ba}z~+b*u!jDg_p%3>+!u~F@m2a^bSVX)QR@_y(&UH-5? zw-2sY9uD~VoACRq#b;fPQd)zI#Y#`B6ve~J%=6qM>;G1|HZwj6cr_{1R zlHqLpA|VoII#fB~9d^>uAn*QwZdn_ZiO&uXt&&Sb1(WqOw`FDt;v7d@W_oq}g`kWJ ze@q}f;%79Ptv4eA@mAa4qHocWXfmggH?5U=1bxx3lz!x`h7y=0T9CIbw_3IC5&DqK z_7`GY9HBJH^`5Mo>$%$OnPBkx1N2B$#=HT=IZn9M{?oaDC=o2z3IWF_l@f9etJ}{cD&rz zd>XXr4Kj|;NZmc^O2euyjXDrDvi7@wAq#cGb)Q+N69&yvHBRWM?;I|B5`&bw|$gp&hshCigWh3k=MtbYc<>Ln^3tE!A{0Ai@DhUzW&}T&AIJ-eq1Cb zT6D*0@a~`YTC*qjj75poY*nc+b*Of2w|d1VJ;%Y%S75&0)vK7iaPc;`0Q>PyxpiU* zxwg-&$4mHx>_3L<)TY;vw5i%6N%bR%%10Jg9I2)%%x^uM=qHXg`O9avXE|SYeY|JogO7Jz zgpwKAoIWO(%zb7jm~wAVdTqgvzQ_3k!K<;4 zQ~+3IJ+Y8d%sxFD*59Qo?w38&_#Px&b4Aun=aX#7=MQ&T={)5A$ysdz@phB09JQB?JAK+l@Ix2d$r z1nx!bz1-5a&xd;H%@^s_q@{e1_Ls3Kx$M4grO+crK5Nlqk_ZjegnTVuzTtEMPjbC3 z)ots{l62?Zs`sO(1+qFMOlxPqL(Hh>TVze=uP33?N0EbtbvjY*1ke9M+}e2+AGb^6 zcG>H-lSWXD2YjvS%G$82cel#8^8|QAH$R1p}xMCxC}xQN&=SU03C7>MO6*X&_4>PdTxI5x$}V?~z{RdL zc!Skf_+SeFcpvbXl>qqpJ4jAW{a>)D(oJBL0vbOruw4Px9gNBe!A8Z@2w*#w;Z?pu z{a+YsDr5?}nx1G0fdgi5y!a^)yfCoa+mWZ-Fra|&qNHCQ5QhRwOV?u|PesAj&VL)| z>tX$P^f2*1KnD+XfV?80v*LpHe;bjpO6_`S^7dx-=El0iXTfevu%dy;_aD3z^f9or zad<>qQLI5MpdJD?64;~$N*Y*N0d_wD7;pbmq!4Os1?8Vq1j_Xvih&S-3e~_yV(?sJ z0cZ%U0Yr)^^_NXgQ)%LXU8~dBg(<)%hQK%hB#G2bG-r;Y1dmJwrWI`BFCIzCjZ%k$ zoTlR_SoAtGoz#nj!*5jZc+fa<4p*(fT&(KYqFco*XdwpdPwe7*Oa!+w7jz8b@?Px1 z3FuLzy#Q!;yQ#G(0+ceE0D~CI#QUeZ1wmUCkQ;dcxzX~@&kG4P97o)ib^U5!ni(=} z&>1XrvFBFDdI#8>FgL)&-=whG_d98=;kt~Xy|1DN2&ZP}yGRY)GFvh@mlNg&4iIuN z&U0@cFureBs5;4VNUCwW2)p=YLNs@WALL6{+Wi#gCeEBni9f>^vkGIhy%S%Yc%o$m zqK*081(!fyFbbIhos47REYjsYD2c?~e-8`Hc<#LS*oK$jh?4$_n9S zN_XtCO%kPPUOYKgfA5rT#4!>e$Kt$Daq6mWyl{4-=AcN#%ENo@bcp3lsI+2~C4GUE zMFVp~Z7t;+e@X7a@0OLQ6(z3Lx7p?CUz}5gzFrJ^lyWcFL@SpSAMRfq`rWL00e9)P z5f2>S5gtF_u+$ZOwgZT6is;~Cc9>* zS7;2^Tv?~Sw$LJb`8pc*^M^a=Nz1X`d#unU4U-am!j-Vt{{E-34rE5QHEa4fzB^IT z_WwZUHW9~QovP+}y1yU9gc341T%XJR2(I6;8##B2j?QT>|9X;b{K79e)V)<4y`vCk z+*Qo=Q9pPYY^B=LIYa)47e=*ny~n=|^3uARz*>LXLJlHhs%w%+-{D`%&wYe^h>Sjw zG>p7g5`3JV(bm$_>y@%DjCPh9)UCnyO1%B`#ez;dwy9d^zE2;jDXsg4BGn6hZ1$rm zuspM-cH$6Go!Op?+tx2<9m7ZM9-4|6=#XWbi4SfLKs!=yG(Q}r4Ih8k8kxe*;&}(s zY)eQxqIEDRMJyqDh!+z{`CxR%k+!I}Ym&{nQFX%0)N-CeJY<86*t(A zXpF8D>7$EU5vogQ5$$0btI%q8S~65%=Zk0R44x~sn^&>E0xCSC+1xWpciKPpK5kMN z1vS3;FvQqBL5iu9tkzJKZ2m!))ud05wzRhN!2v~! z@AODfrH#`!6oM?c#90G3!HqNEHix98XvJ0lc!LpmIdwvYlo@*-f_wEdh8Q+%vaOb7-SJ~kh1MwKSzMwBP>c* zZ#%P)-dk6suX`{!0U1Ru-|0&zPmPu^r@>lADffQ%Ddt#(lh@5nx#JhViM@>sLUy>9 zONvQNI>-mvV#~>aj<&{CHUu1*Xb;jPudOZ`f16{lS+pW{FFr(S|8E3Bd{37i>&xWa z!w<@Yolvqi^yjXBMJ{dgP1AennAks{2q4ScYEBCEWQ<+#(!iwIP0Hm(IEQxY`rwAY zd90Z<_rGKj!i3?j@y>zy>ZEgh+j*Su$N+RDd`Um>GgjIh7D+|Y3TtbBE{&yNktLs| z>hr(yyC`MULtZ|J8vZg#(=C4$DVglnr!(N9R=PZ6x;Ui2_@k#1v7qab!NqC?Brc^~ zkSt_}bQ?Gjc{Nl`aXI$AAI!BR4{o$PeDvYDyOhNF9w^O!r< zA{Dqz%i(I!GhFma$Jr9CAA~vZxR65jxlCLM;rrn z-W@p%&f}nkl+i4?VP*xz>wT>JlX}&7;F9jHUCQ!-@WJ#j(-KdA7BF;aIl0{)LbM+7 z2{GZL4)2jMg*w^0>8pV%R;SIyS%!zJ>ot|@o8*K~!r`#aFoNPSG0rp!PTZcr({ptt zwG_MAM(#?bcUdXbg##-%wLIMsvLrw55vowG@v=8`}f%g70x|h;;03W&+xta~hK^eU>U>Da?6*WU@GH9s_j)=Cv3nu$3}t z%~`}lun_4jeHRS+jjR8bdcmnUcZ2ll5%V@Ptqme=8)q@_hr{1i-eI1mTJ&Qn_i{lc zp89*Sa&iY0K7_})@U+A9NZwC;HweN%f!`h)$@ILVOj5AjaQ%IZ2eV>SGW0jW=G!84GfTf{(Hbglw;j)j*~hjahpb=}r4 zp))=OaPz?AXmGuHJZ6H7ulq`jq5~-ix!a%fgt=<^jEH7=f=ssR zG(t9bYhhU#)V$8Me*F_>~+7iN|^ODSD+QikSUuO zqZj}~0{Z-VaD8>Ofo!P?0q8qGFn?{zsE_di-C`j8*e^t!>NNvji2TEaOJzspPgE4( z$ogeRU#pkNSRAZG#uOnjttb$cq6(malYRjBGCgxXK%5C^3gkW$1H?vRbD*vZ07QN@ z0Nc%8VE+l&+7$tb7;pjw*6USJXY6>mw; z2=F4LG_1{lfJXxmo51s)ioHFT5i3@A1Ps!zg`pz#(iD)Fs@NDH0H1!%4D=R3Tt7{| zCy^av1T2@>3S0o8#mbxmaK*rN0Gt%AhF->Ex1wOBTrM(s1>op=tyGW?kc405G_UoS z000^aAd7)S!6bYj@U&c@1~unbawyXOg_8YW8wAj1dhIR0f=n8KmkrR(fCvOY*92Zo zI^L223=w#C20{Q^4w!}-)Btl`7)(`G3_zOzCu6Y2m+7GrMM`3uHsTaW#VmpZF7V>T zO^9C=H$TZj3i2{k)M&-W?7DMVO}{|7CmDL8TJm&aVdW*IE7PE=)Y{+`hC;5?FUSB< z?FcAZ=c)l+By=Q7oU|yV{~1^&*{uoym%_QMtdc4;AouMXmvg;vAy#Re0O$=qmuXOc z@#rsFK@B+F6OU4ZompO+S!y(4InF_R*(&5CwVfR0xn@_!iB;tGeHCcx2Mev=MmCnz zc`0l*)fv0HQZVJQ6UKh3`cX*<$NMp70i(S7FgL`&enFs*q6hYMn`a7xuMN!3PK8+K z*QXYP392epKS=C4{K4?+2zBl!iI$4BjeFNT)^Z2rL+2FrkSf2_)uHyn8HQyXZ z`i&nFr+?=ii(}H$o`eaFNOdaA=~QfnZ0~dM$R5dZMcNXz#7PZTcrJC#wHNouR`RD- z%l`+eps@^$ThT5u2nW^k(Yv916={ri=W*Cgg;wuH&FdA`wiDRm*1E9B7^i%MRtU0U zN$ZC}<5rlnL&L=lHKwbRsrZo8lLWS)6j(=zN67obQix=MkrQ%5jjql*rB1Tt1r^yH z6Ji?@xCmCHdo|zMa0EHox+_D;J8$z@Q=-CsLSl1~Ca$YfpCwDd*dC$p$Ju{SI6E(wj}g35uU;m;15Y1RCByi{0o= z_D%K|9FV+NyH1`ik#!W}NgXdU33ld>-9k4eFg>Ido0}VIuKw_m@d{FC2_G+?o|ro+ zBvPvPU={;t4~+{w?wEwF(K(!`U;Qos zMA!B&Np6)qJn1sM0jkY0U%S_Z`OH{lwMG)exhwC<_*M`JJs|s+*alM^lCLIyv;eg% zH5$IK$Iy9H*c)rgh|r}H4Hwdv#*&bCEq{1C?*^JH!Ke(9w0ZKTqvcwfbUUldw#`RY zdeWrm)EXP6IqDjAd4XF=pWvx2J?RnS_S*XurS9MR>mDUO&>aYOiSt zG^5ILs|WJTcvV?xJr28$?P*P3U=v{`U!i`=AhQQ?bi9jPt=uqXwE=!hO02v14o|z# z&E4s0h^`%e%R>I4Ax~qej-GJ)^n1(IMolkgIS!xnB$-l4fwX8R{{l4 zu^2nk1boRCn9-%I|3s`aktv#wmJg4#eK5masO2bX~;6r;EmVg|58iLP9}7^mD!D z{L8G`GKW`3pH33o)&kn6P}c>tH1RCm)|=5X6s_x>y~Y(q5E_utXZeqm*25!bf- z+Fs|9&JFYNh({&wD&^I-;n?8~{`kQQecddZ8Nnt1TIMGU7mu2sYshIn3|lk^@|Y;@ za1g<|@H*sJ@k|P5`3rLGK2g-%A8&vy)k>;ySK2ss-or9 zF}eI>qqV^-6)~dAgW>2;O>w(i8be7aHfZ=GP0ksRl`zgQOX9%2H+5H?C%ZgU3Xw$r zuGB)0kR&{&CuOi?KmQF4J47-BBL;f#{#e6~2J<)$Md4<}S0t#6dIb7GR3OMmP1$e6 zU?P(B7Oi1VUUqm`Kg}qALA7oHM@iO@`IZMla82WuZ1tv50~1*g@;v>o=v@A=iJ*4q zsp*GjiGUHu4hxc|3C}GZAYItDukrll14pHM2gxK zVE!jpvDxL$M@|CZI+Zr^anw2AzIC zlJ)!1C_kM!Nmu&4VT%`@eTnt>KI1s-g)_yv2^%e8&hsYrZD(h?Y;Jbwzjh`7%x$hISA%EH81+l=DJc{ zVa6V*C7{Av$qe0bey+{2csVV!km6|8a{{Og`a0R2f8L<^mA|+4$QGu@Q!Y|;`A!mw zLW2S7+5$sbe^||9FY7HA4fw*?ccUr9jZ&$f4{Lm?dXolfDhhted-R@t-jd+0dHMKF zZlY!8KTum?li^5ul3~OL)G~SO-@-^bR-1&8s*b-+C;e}ahqynN4{Z@*n0!VX5Uw>U zwZq{@rHTo$6aHIJ=yr3&FD}JCD_DM@f2~UBX~W@#ypiKo73p-((Wb!T06NXSkw-+| z+q|m6C895$^qQ?nZ0uTlA;ox_B|3=I(oVKRKLy2L%2vZ)F0J?-hc9q;A11HN*Xt~E zXHuDthA!;Jf77{M6BoKJsIiNq9i%a%=&#Q-*aR=_-4qXL9U4-HTo^e2M58mAXvr$^ z0txuhwY52Z%&u#f-y8b9AF5aE=u9JEI)U!#A%V?4eNp{(@|NV`b}Z~P0)@2=__>(F z5gqb&Ax=fUkuZe_8smAQJzL zOc~ZN5R=9(YM`^~$=oMR5=~_bUR}*LEVik$sbA@1VZrx6m}}aaHfad{F7wWAl^XX^ zTkEc7DPbxgmyvbgx`L3bP>Pz3bmx2ns|WgE+gS~T?PRTJ<`;$PB(2m^iPHl&XqCq4 zOagWjrfX$k%Iu${?&yL3VuwVt(f4G@Av2)_K71^RBzLG{Zi@r2DRq?q#yrP>%KJ7= zP^1)G)i?=MYc^W41|u*V!0TJ8TJJPzHhm>=80W7-Pds*WSGT*XJ9RFsN$4F3&h`|( zHiBAyGE+AqLe2UbV~G-zqjzIScMO7`Z6YsbshAMORXW(+VL&p< z1t>)@%xQskeW(zzxsW>iFe!1X5|~SKCKnm77~LV~m2n&a=9ISriB@sRcxN{$aAd3~ zM8JOg0N4!I^a9L)qQFR*|1G@V;;Fp=y-e*wJHBfv~1IqBg)Bw0XUhxEP;YlEjfI$Z3`F8D5i}*R9?(%{S zttlxrGs|QpyeZ{VLu6_OJhe-OM8Jkr0E9dw5y;k(0V?sU2r@7l2$=xNR3MFl-eCv* zzExrhIbfXxy`|$j)3*bu{)G*?mEh5{LaM3FOXO9OnYqnJH#L&AGw0d;=}COS>WEe2 zdS^$pmX_b5M&BUxx^JYNc$w7Sl5vfEIR6nkD2SpSwH!r9D;p?<3}@Fgv^VN6z?F7#D#K9XzqN5~OmU0Y!_(NwWcUvxG)Fe{ z&5~kqB8@Nxw_ozRxHnZo{uhZ4@i{Y38eVxzZqsKR+;44UScp9nawk?%k`E0;;wyBH zaR>Wn?3FZsn8BSI+O?V5dluIXyGhSGllmf=c{u+GR*w3-e~#gV%m-iZ^E}cR7x6?Z zr?hr^BTxXg{>2ivfEeWEY(%pC4=jIim+D{ILc1Apfkksi5$m10$*#u`$Kg(%A3w0v z#qMu?YCZj>wkEKqZdBo?vSCMLm4T+FTu5OdOc3%#Eo+a-0FRk7_(wbtu2)bp0o)JCCmI^dc$6)lQ-Ax#=`#QZy90tYKDUiPXt!@ z1rb~sL#yLxm1$u}SwxXY;@#sYbL9);_kaeB0wGZkU@29Kr)6TbHHx@{B(LGb?~wjc_lOUyu;%=QEO48i7e22hY?@+)IF3 z3)E*!UcbD&w2GQNVoM>^@x^P7i)SR?x>@bL=TF)iZ_7p-;SF{Ab{n)&^ZXo-;v1%r>~V@bwOQe1ElB>ETvgU1Bvu zy*~0Si9Vbw<(mpyI#w>v`A@YLDLY9vsjE3li5n~uP3&<6Gjp{|hZoTrf)PUZG!V9j zw5Z-iCt<_o2c1<}+pXv^7J+R?(j;(XSdYB^@~LE1#yvt{j?y1krNMd&dW%?FPqlN7 zfu?RX?Uk-6gOexgB<5b&T&Q%0@r3k&%cEt4=}$$@)WsS2RZjgmc>h{znIpp?Awc`( zYRgj87)Q`QiQw2>Nn)vmDG&di$}JlYb6s7VqNTd&ghQQK z4C!uD6*w|Z(-Dl~&sc!}LJP8LP@$ujdvO8ze{B$Mlxz`0dP1l778a>9dwiHn` zYt}JdJls&w7cHrqVI6c!;BZH13Ik=te3LM^l~uS=NLI2>w+M0we!r8nCzux*&xq%f zpGI>t#vn^THyY0JU?Py|hVSN#>KqH$dt#z(dy*1!#TGDW1;hQbgt9P!Oq+a6Tef(0eVp}Pan4St^ff%Dp!Zd(dz-XLi`zT^_z z2JSzb*@o}5LqfMS*Aq2&RsQO;`ORr-bWN7l0L3-%wvye6z+B>wGseC!vtT)-Wk}K* zS~O2!Pc5bE)FJKP-|2U0A7S6O{Tbs4-vLCX^B*XnTBCki*Y&+y3TaTc`+kR$5#5FM zUCOUt=_97=(26pqr0}+U=#=C#OOzL*(&KJ$2TO)%O5!Q zSjGRu=^w?7^N)a(TNfM>)Hm!QX_2N2cYsT*LR4k`4hnd3Dx?HGseQ(Nci&bN z7ahRfd-GO3W|{xgMc|rSG^Jm&KVVkvMk5r$962^9gwWYvoOKrt7gwz|IjLv_zEd_Rq0Qf#*@^DDtBfoo_rB$1Xd`-Av<{wbhu9MGAA#X- zzrJB6l_t&_@4g+l<;GcX^vc|gNv2A7`9P!Gs;tJ$tTt;}7ioqH<0=k729X!FQWZCj zMmo||2mR0)09nrEf5WX+B~B#yT1$%IWm)OW*Qsy3=UOVA!Bf5ZT|&W0H(wxIY6FXA z4o8-?4{DXS;3Q_Tfqqao_7Mc)6P4>rB3-aaaSLLCl=1Rh)Z1nOH%w3Mzo|Do}Y9alsSYisDTJ&@ezoqB;p2&2NT3qr38? zs1q@i*Fy4`T)14|m*bd9%Y7v^ZLA_e+;p$33bAA|h%HJXPf##d3UKl-EP_QLHn8|F-ZV|F#wLDC<^$*C13#$dzQnCM0cjLl`BS+W-_k&C?CU)l zigY6ok|(Y!lE0r>OP)Kyp+AqG4r6>b%6Msv50TkfB9z&0F0HhLNP4VlDtODX9^Q~Q zDi&$k4m;`A-rPM-f35mzbjWkhDNdbc&#*(fVfi>~$g{1Mt^(CfVPW5pK0gE3`1UUb zY?FyJ?zJN4ll_Q z>TAa?RD`7YWDW4)PYV71Av0JZ8Vr4$acaUJivR1ZTmNNI>S&Rzvc1{xKM;@OB>HgF z-j=*~s8xolhYBAHk|VKYL?cP1g}h0iDPp!X_klocPG*VFzVQ!&0e_n@S$Pe620js8 z*ZIl1zSuOGKlnp{!|c#FdA%X9Iqh057!0oyg3h;drRbLd)+UZ^NcacA*-}6@U6k~5 zeExP-<@dqEh6wpT&|1~)5sEPLpRu1F`tC{6GY*fc15(Q7Xd`FROU9U|VL$VAySqKD zZ3$(5k64nXRU6gKWXqgsPe|J?NE$gFup4A$1vO@7%bi#%*grGB@9`rR@SQp5UWtJ{ zcLzA2%+Ji%B5tG7G&IKNlx(YMn(dw&-8G(hyS!`7)f@pp;rjuM1jsQ2G#{N`xIO8T zDB%p=aY%7EE^{Lcu#`!OtvKe0AM4d8+DXMdE#4*kl9~o^>QQr{Fg4B=22!AyrlIHU z5uX+iJc;|_HIMc7v`5z2j@nhlBNfV`UnN>7S6B0(-<3Fdtmm7S|3-iK4V$#zteqeU z1M9ah2xvXQ%lO+O43~GwxuZsByWe6>1Pd(Sq(n2gcb44yZ4oqEni^|nOd(sFL6Uf; z&b6l9s?TGLN}1}(*0gP0p-eDYDb_pr(Z|j`RLf8^$mX!rQ&2V0fVlqkFl_N%(gQ0c zhyY<1Ac6nI_O}wnI(%X7nEF`6D8%V0*-!jQ`m40D*JHEPyvsk;Jo6uNA>oAlkC;r> zGa*}F&qoa%dhBK!mFP;yrhopCJYG@_C_SVB(m%lDKg*-On)rQhuq|+Pyi^0>&YQ zaWLICE6PMHwN8J82@>xWK>Gi7}TxQ;$}+TMJ+P$}vnlQ_X$yZQjmu;gL;wNkq`wqq4GL zQ4T93XKJBv5|A6=5`eP<+ZD0&A1n9n+JH&H?xV(A$A zA$2XrTW}fi-`Y@(4z0W`sh$aK9+ZpXD6duh>Ae2X><%D?GoWD9)PvMiMw{6$AS zsn#T7e8&DE`2=4+ZGEtM)PP7+Z5`SwYZ*(8;x z@fbD&-4n$Tq5NCizs6~gW%VAJ*%3mlrq8CUi$Le#eXMBGp8(zk-7POh)YiUGgUXJwM+Czwt-S z#*}x8=nYl{LxQB7&Cc<14;20DZwoJOPm=qqX)}hT5CYF{s#p8#<4@S~@IUUt)y6sa zzV+d}yaSV9Aq?R?eHkB4%yW1{F8c_lZ~7@A7LBh>_{`BfBi3{4u;1t^S+%)ZeIpA& z^)e@%s%iGb!ae*6%JRwEr1R!4_(?2Fji1$SL!+G@?O*`Py`O{N0=0W)WM~g1SSTlq zX50J9_wn@9z%uFu{bF8AtZElFQu9$h*8(`Jix!w$%v`39{lO5$Dlt$MIh6KLJho05iTM)*I+&W zr*$;M5I6Kk)0Ok`vC;Nr`at|9aM_Jkx%*)=s)D`>CK|EVv0kN?jpO=Zy1^fJyQ{u@ zdSE(lzE7BVX`=K&accr=6-+L0$$5;6s;v|;MDyu+6b45|l4+^KeWvJI`eEez|Gug*`?#u8~p#=Z0x+A#Ay}xD20#1$nmcS66k{-StK1^A} zZNBPIe{0UK*%Wd7s5-s-gm+aj18IExi`KR*jyqQ+*8*&c*Un()KR1j&dvh>EMm4CK zH#wj6nb$kvek$rqK&SV_ismHBInsQrUMBBco4xk<=uINKd?NTrp`YP*&ejJmZZc>(WGh~Vu*DWx^EfM% z43zSp$IHosOI)LMPrI+w`Dt8BD{jjL7ipVG;`;arkF)ohSsIR+zcJ|4jEjr3+&|7Q zJDq}^?nHT!mDJrP*Uyc(}~m; zyN@Tet35&+xvyeC+ohUkzGL65gON8#Q&L@5&wXR1UVai1Dl< za@#P?#h*_$|^+>;k* z;by$Lt4=xSZ-CxjjiFT}n*++pm{7mLx8RDTR?GmXNfXtTA_Xpt131iQP8%*X3z;3VFcV1r57BsEYH!`p_?91EE&N#DfsIRDbKpV;_fb3VqfYR+BZ6(N^ zz~Snn>-S@>$z|QtTjVXUHz*0P0<)iKM68vVGz^zIdM`wO0pqG&R z^=g2|01$xyXYkWZ${zqItpWV`wh%7`{WC4lCJvPmm`0G49#P>dHKB=;MM9;mRqo&; z{&p-@#_?q)EKpu%@*6Op6u~=-6>_Cu0P|J~1~9ZR5UMKX1prLGS6cNej!*>LX*Hm z7_l2;1F9`8Bk<|6OHn9#Aof?&7Elv@y%hWWy9frc1^gY^z#M66{Z^DzodKRx5~cD} zqS#oiJOml&0T)LBQ8o!1WZ-2l#o>YEh}#$ z-KRiE*q0Rrq-KQjQr zQGi(h(;>9v&>GdVfbOS^B0`HLEWt^V3z9~amMgO!@C_`*J~PWjsH&}u{m;gW7@s6b z(Q?@4+NA=zjIL-CLte3GZyAHzvVqB*IAfLsc1m=84wd!fTa$O0&>OXUYcoL-+p#dy zTrNmOLi4$3$>2*A*-Wz*u=Odr4mr^1M~~Ub_R?YvV0q)T6Nk28Qi%3JNZgE)fZmFf zqEc>Q@n{hb);ny%v5~hE@X7P80!kUi9eH=U7?hg{m%W!e%XOG&N7vwxEcXM`^Vz1a z0o`^hYPY#XMK^LcqF@X^N$Ee(2Ql7NrtARAYI{9reZtw0aKG*8>1DjXJ3r(eV#PpT zlPBhKTjDHtYTvA*AnvcjYAnK3n`38%PJfyDriWgB z_-L-WwL}74eLd|vH-+jmO$%Me_F{L~Hc$}e@$$;Zk|dB^iZWvaJ6= z;Ze^~9W!6&MHqlIGzN^syMAwcplW)Myr)a`S!RgfCyQB|t#icRXz|AF49 zoykTRC{r2^WY(S@f%mRuu3O(7>{a#*Z-)44A|U&d>DPF1`%@{1G5VN!}Ifi!(*L@OMaBf8BRH@SZckIqW>H zC&SXws$VkJxi*4+W(K>pW+6^D#jM_isKhidPmASq(m-H05pZ2M4Si!FE!YEc*I2_s znHE0I>U0JBv&))vZ(su8=Z#KEtH;%236_Vo?bT zD{tzqHqB-)|Gesx;MiAezPJ;G@3JD(H*C4gx^c&qyBMHbP#66WcpwbkT}HiK$g(@_ z>y=<{Q3xqo&qsfW2Udn5*=VyY2`h_I8%evFUvt#JsnEaX8*S10U^r_Mwy~o?hg{5X zgqtx_Vpl*tv+k>`rc=f$HI)Qb1bkKxi)njWZiyMu$(hMR^qt^4^*g;}?Rbfnjy6wX zdRLuhCmGdek;d!)Kz+u6@2oEk)~zi^zc_b@ZJ1UGmv{cfx+E~>d?J46Wr%?1crJi@ z7S-EJ)pM*wZ3KUJ`-7$C0jzf08}`l;ABW1VwH`CEGYm=*0tEJ9?bUrR)XHx>ypDEL z2v2`~_@sXhI5uy(PQm)V{Cf@~c-H-1z(6ryJ!ZUwVkBRUwdBe6WY)s6*>>4o99L1Q znwj2bi>XkLc}WP-*!5HL79D-K|C3EP-%00D<{fdfb6w@?9qcB!q>ooi;{tH#;W4D9zjPbQ@h zo0p@G`GTLGoYS1z(fGDrkv4X6}0(_r!3CPhP=$ zQs?QY#V2&me9wYZQZ|oA$X+$u8bOloX%Zg*R*PYZiy%LZOT+dK)}AE zX@W5Ln)5F5Vmw{okE@O8d$=Snl74;RRB1I|FF51eCFsj~{ij9x)Y^NF$A92$hOd_ztOlWEjgzREjmz-kKv<8YX z4@TbixtRdq)SYCF1lc@)^PRZ$%LCsC{nWx^J5vvhmHz6T3~So_`_tYY2{uB4ruW`( zao>&IkfNI?(Y4$>3@OR`@aK3!X5D8BLG5YBr-6%VD$P_IuH0$GA?fDPM@jjkTSt6% z8`81!+Q-$6RUA>QzZS!=xmg)W4LBg7Tkx2pck9h+shsBCth>#@IHWp>eQZ#{+k9#G z+5S#ts(CHB#NZA;-Evdk`>loi6epjPjDjWPNv2Ask2Y`edCpcNWtU&X+DP`??I|m3 z^ipqGa6>Rj2A$u;7v-wD?>thk=-0M?9 z>^r^8$D))|Y7AAeezDt|>ZneT$4A|HA6>S}Pi|o!`epTL2G7q|?zyjj3=LP&;cfk! zZ8g*vnPADk^}#n#NK&)DYKARYANd9Q@VC`9$hhcxr2c9aYkNE&P#b`bdG|xVCx5x@ zV_U(;`D&KnA1YQb^-P<8=nM@cGD}YTZWbV#2CkZAokD&l?03TVYC=&1uN5n)=H)Y6 z`Bd6Wrcr0}&Kr8wUnXyfKp@6_@)S(E$cHNR1VYY}zRc4vA~uY4q4~g%--)CSOi-W0 zI{vxhe(wkgtFXVX-N-d|%ehdRsQ4ItUk{Bh{4Cu%hb@A`kZHDVM`U$GwQ4`%k8&p{ zv+w@l4=C~Hjh)peedm*|u-4GH$c-#w5<@{W4rGTvX{#&$z(=bVFyGHI`X29b zI8YelQ%o}{>}|GusJ?-b6AKHEX<&r!;?rA*=nn+7D~f6njbuig^HR`2Ju)3teP>&g(qgfQ;8uil?BVsKieB}vl_ z2G>6iq|q1pWv?1ZI?_y5p-X*QapnH|`$_I^{F8KV&B0tb)VBL${5g4mH~KXvKH(<6 zz4_$5leK2~kAAmV<}P`1?L6Jpv5ThLbhnutfBFEFzw>Jp^?U6fZ&Frz7;LF@o*RW_ z&-@y%+sP?fCtt9X>U(-uN}Su8&Rc~K*XvoI`l{BKI88o4S$@im^UT0IC zy~Mu;D$}LWQEA#AmpLzurur*O9ix#!W7tD(2WU5?l#Y%}HBQHwW-i;%QdgO6eOWy& zxEdK@4qt2GKp!n%C3W>nqeQSnLPOi2P|1Fdv!QQTA=sPH+;?p)^`fYdv*G#6X8Ro5 z>bS5lk}vMX-JHy6NSKyea#F!XzzzO@RDCHwo4(G?@#Zh3sC1s@#(1}u>@^J+j)3U< z%enj~8f;y*Pqpzs_F;9qQCun@Q2oy3eLTP8`}%`Dt4Q{sWbDe6gNOt1bAX&^<=C)omGgsMqwq$U9?t z#0>2!%x37fY+uLJEYUDFByJ4s*B|_YVkFLl&<$lqQ{GSuka-81inb!Kc=_QE9=(ut zw9c^7M;#{d#gC#rtu?OvOEn3oONf#F80U{(?REa^=Z>o0+VL3|{X2o?OKjb{gg%6p zt5n&iT-Qg4n--rKVgNsj*Ne!lmNvG}Mtz&-a~|2S3g7B% zw{Y@~_MS`_msY^)=LBxeo0fd)8tn5}MqDmKWKI|B{*twj9WiID@#Busq=|m`cw1DF zwA|wZGfROVAY+aWR-LUrJ!@}q6Ud}C&FQI6sVr(fu_iP&WXZ1jH-4ndoz_i6s)Q?uGri%8)@Fqbw%2RlzEilwcB5g7 zA-6d^lp6KL=s#9OE^r(Z*D%pR&QfKSVPM5P104AxvrdU7VfU1C~L@MT_d2P@@g zMZAWr!x%XwK&%6xJE@8QvXXf2J9Ir;LExG&r6C1F0=R$!(t})pY&i&U4+Bym#yr3Y z4I~8Nf6B{PgF@7;Z(xi8OGwB7aJ>QeTPc6!Wq|sAOR+_ABZzBKK)tq)BLMvy-jOYc zRE_vmB@K}j_$l_bpx7iSFm{X!25?VNC*!AQzL8^0*|2(xGF>L1 z2TICPz$*es?m(JQV(JyYBrp4#*vpGTW(6{Zpax*F0~|wpF*iW&Q0%o)lnZ+YJi0m@ z@XqTEqV-!!bl`Rst_Vmf0(>qtHNvnc0Aea-RYZ(Tix-wKiC`U;Z6g2(qKWlv5vaL| zO5aM%f+EHwY^1p1Di-t589AkF zDn8JmPHOAx#=I^^W7y3DgPXX5Z#U38#@bS+>2y!?+dv7tt^Ven5-IZaJsB@Kd=#r4 zY-^?_jb|rG@*Ats{ui2!>}X9>EWP%m@qS&^&t#ccYJ!mAi@AKB!s7Q(qSgMX`OB)& zGTGilJGD>9{6Ly~F#cqjO(=yOwGM6o@d-|syJ{~HoHRH01eqTA{wvVDf0W6RR2vDS z6>=0)1+UNaoZkpG5E!J?r1vydauBvo3vnLV9%8E*vlcQ@FW-M$_oR8YBpO;8qkoD+^(TV6bG z%g`y37d7x@T(q@CELc{0d||mVepk4yYa}&A!Kf10aJ4r3w{fFX$HyEF1^M*%&;Ua9 zrg58Ivi|zw@C6V4yq$N>MfLA^BE6x_oTy3~IZdR=ugajEYa=BN=9RQV&ZD{vIn`=K zs}-!3&m}91%X+kpHHiz)y%-x_=(imAxHQsKGDg~MxJTaTm;ZrKY?`hP?&jYz)h6O4 z&nGWv*CS#P2dwk&JfYv@mv!8W*c2r-vz2zpzRZ&9D8!VEWY1a|efjlc2ahC9z&a*v5chZLZ^6DKjywl=x)p=$&TJToq49RBM057gsn_p#UZ4L)nY>H0;rT0AZj z!9%n2bl{;833x-zE+lNHL6&YySv@$@m$}9tTVg5v?&~0p?TVn5N=o{Gc~!WgoXfJ& z_}TE4-~;Q|G!!+V?q0i_?o)$b1iV;G{ThQ^Y%~21!oaT&0$E$D$>&{fcA+HyLZ>DX zvY_!T&wNka!igFLK$&7ld{|sM40UbK{z)XTA7*>za!7^!0r2&*Cx9>3`}8zAG5&_s zGj5;4byLR{+*hxImm}3^qB!8}(1Zhyqn?BR>!vRKtiMgUi3WyQva> zQBOes?HBq?cj=lF!&Tad?}@XGC?axVd3ofY>W6v6v$UcvZZ4$wKKn~VfvMXI=Zly2 z>3^W#h6E#jj4W|6`upgw!*UzL%;m$8rHJh9#SM64xODf2&*4{9!Vv$R zF=y9Z(nnNr|BNt0qN0tetCFBRQ?B%!?=_}avd+evu{YwVLt@vDBw?i{562%+EBt85 zd;mnTV1=LG9sg#Q9bN`sQpAw+PJa#Vd(32SVXABXoDDt!V7*>FFxbB4j2(QQ6h3dx z=vL>Ksb}u0ziC@{SD$1s#%PKITdo7ojRG&O`_%vXJ)SEK%;YV(;9 zT(N33Re;T+RTbKtd=0f%7B}<@$IP%Vk;F)gvU~sc-%C+P>3p>=tF|KjqrQ@H? zL)q3y#lH1a;eX1>U7ON>gZqd_TjL|xbaA9tcS@hi|E=8N-{*w-h~`^qH328dK1BAa zg?#a#{Wc1{BR1O+eMN-b_jY^fxf9K>deJR?TYIFHf|NKR>iukw!(&6f@3aDFjc#jK z_Uaf$BAx$-rn8P}`hUFt00AXM0qO3J(IJS$=$vtGs9Q8Z zB6qQEm=yAgbb|eM>G6@+yGnEV!D{tTL^Vsh2`*~Ii1~Y^L7d}mb|dAB5bl4VuYW~i zIF)RO@?cNS>jj5IEKP47jKhfO%eQltjt2#fVR}=g=}?^+w;(e@jT<>9`SzoBcc;Vw zZ+3k8p(agVaw!oSb+H~di&w0|%e<&d%HllITRG~cJze)ii=26p&#!9^kxMM75mFRe zr>)HZlN;okrQ_*it~rX3c&Ad6tS(|qLw3ZczM3b7U{75mE%ml;$E7*SRjgos^V_E= z&-vF|ffEHjNg|&t+e5qunEaC!ne6Ux%2x0-3|gjGd@H?6&(F_PL@Y0=p4{-RwF7H$ zYh6dy1XPdb!NeCEvpM@8U;d@MQOk#OHf=UZF@8CI|B(PQP>3T^cX!H7e{+7je>#tC zy6O#hAu+A4Q6)>~CiJ%a;K)XIRWleKo2c7fiGup6S4vfnS(O{Yk-j$g9JM;H5Nsm^{fE}A*z4>jKi zV%)7p+QC;Grb`A()!2TSX(-+#deUU9n4mIM2At96%LRzObiV#t9`}Vl>t*(xqu`&Y}KAGFRgAOCvokpuu7<-c};i54kq};w49E+DMaR6{r*a(&joq z=5YL76j`917iQxtZT{x+kAtk}l>#pJv^XtV`-UrIU zCFLrHL+?G}6Dh~y#=1$QKep16r97?AdDJ!2b=inO|9%sVZ|8vo;c2CFw|D>|JT-#B zL^A3`s+0mEoY0K4V;Ak!2`JvLU~XuRg5WJ%GNQGt`1>Q^cY~<4xwW|XR?2E$(d$Z; zH#J$xsNi^oOU#)0`XV!6UuO$KuKHU2dtZgNAJcUWz7WgggcNyg>b8|Q>PjOc_TeaYJt&<9>*AHaW5b52(_<;??Zm6#@ zha9En4Qt7#ig{{ZF{eplQde^{Y)X8qW~#=Z25wYj%-bWXuI?9=M>c7K8?jOC6kbH# z!y%@P5X?SkxjMYy_WMwdpiDe(6y!s1c~L=gy%CL6|O%%sU@7hNT)MO z>?u^|YxiVQo~h?+Y%=InZ*`i1SG+Wt=mbI%og%bwp>W;Cm3-GAV-s)7(SsgxP6d?6 ziz6}dObY!^^;pqo$hSfnMi-;b6Zf?ZA@0ms8Ls5`vrb|{VJ%gRKJx<=RnGj!T#Ak_ z+{az-aQsBi2iEN$2FlYWTqS=q4yvN1pFu9lRGf-`U1wk$uVm#+6f{b;LV!GM%Y|r< zZ)Ui_A&4s0_`+t_{EEgPRN9egbg&<{^so#(y3ubEuwb;RM-p6Xvsg0&a8tAzt<%=aJC!e2+J06Y&O05oMp@bgPRfX;)UyAXgz z(GDUnoQxK!$DmYW$WS|!>7CS2b}byo>I9ri98LS@6rSM8&TNq9zc~nMb@Wt?|JBiC z!t>f$!EFGj?HaHTN#O|gDLe@j3W$^bucZd$Wr1%^LV+b&w!C%_aT3y9<{3b_K*$jP zk22f?NLEZhIsyeYIRI>-tc=ACEZ)b_BPZ2azT1fl9vCbpM z%RsGB$->78S|5)G&QVFd?4JM${udi2llD_ardcUJYcLK`Fz_OHQW+rn3dks>OlbAft<#NXE(+hcavvuakl6qZI>V?L3yAbLc`Hp zLC0jeeHhCbG_i%h{I{Qmq_nOh5++DR;_x{67Znb&dK(qGwYx*q7);AAY~RjDhl%WC zC`f%lqUI_w);<{7tJfLbn`y$Gda52IvMh)QQ`8jIc@1Y$wX9J-3sk5l?5?^ z*5Vow??|&3a_69JiL?$4<6DP%8o^f-t_EQ=RjtzJ*y>_ISUz9#OVx!7Q!fSV1?GG> zxW#)#DBtUX0t&h=cgHDi-Ftr!3LTnsHlBzu8c*HR)X6$I3pm!XvF7Mm8nfF!8XH_cY-3)n zb01*KT5#R?o3~6{l2uyTVj4PWx;7E?HsuXHEiT?^@sP5^ejPZlw3m6beW60#o0W6p zTIXU+C;eW`i?zDQ-dt+Zlf5vM&B&a8*rNOQPSM@$=EG~G_dNG{W7A}qD~M04`H6Q) z`CnoC76Hi_Qtcs^l|!BdJ;;%NqH>{-PP%@i@NCo0W-`ZQqDxZYW}ceKR#2W#oyqti z(zjrW2lG1)-gj6NMn?0cbn?x_DPzxFR!o~xnIk24xliN_(e5OZU*_fP4nlF7iErxC197(|ns`y)YLANX%5^KTqbVwFZbyx-ALMA!bSikDS9+TB+9Q{>ar&gY+ZX4xSsx(0dU{!p@Jlmp)(#6+`tm8D|pcrK13%3|sk33|B6a=*HB!j-CC-3S|0J&U#8nm}Ln1=HX9ySKB(CS6Vyr0mQbI98b& z$~PEmSqEnnMgY901r^(7;@l#SX>(ArO_;Te0UIT09(>~DXA5x{j#U3tWsUlqbV6+G(p8eggI za}qb$I;uL2U5n|6m}k#qb`OQ`$O-#fyPF_@zXhpdg2|AdIc9tvXTLWe&G#b*hb^6w zAqwIG&ZFgi4>xgLUP)U9@XQ{OUsCbD9|5IiH zTvb0JKz{gcIPR=ee0}BzL`W3j6Zw>A!&IPT8+&S+vI0lq%Xi3AC=-Z(|JL82!Z-{0 zO>u11l^|Ma#3^=*V&80rtHQPhvFMB+D-!pMc5Gkmq&<43s#MX5yAS~pAYvrvSqfpz zz7)EjU5gE)c{R1Et0unK7Bk^& zLaToM-JShxS${&R!)_Fa$o_ru+h})uptz6ftb@s8)WBtju$bg(cOo~Ej^$lLd=Wpx zYsdwxQvD%|%S_IZ^tF;pj1>+5;4tLOfVTZvA4 zEAs~6`(zvLVc|yb3{b&pi8|>{qYSoqyZ_7$>HU~CK307jrHcFAAHV|!4KjHh*DI(` zd_r1@UYD@cA(g&=X$;7QQ6*+sIIt?bT-0?norB+i!iqGq1H`N+NoI+$%3Z-BUsKiUYBQLw_p2KwNrGgn?>%_g6ck@^zd$r+=DmMs{6Xi*gkM8whA>|(o7_cK0lT?lojRyrNE zD-bU!aiUL<9~ADR!>bu(UyP_fu$8r9GSE>zKRPGuFUlHh9(Z6%aL7GTl3jeZ&NQ3D zCi$Y7gTLuc|H)nX+8M6>TEB~Thaa%%!TaaUI!B6EpwNXl2E#8hY)RmDD|=c1U1H4N z`cy9UI^VMU;Z?6I^ulz(?&f#RPN2QO(o{slr=r&A=R?Tm`)r)kN9{n@`d0fDxy_ew zny}fb?rMfo_-$yS(HIxwrqW603zJIhn<+EvLtZZLnh zZq(A_fK~_{7OJ6zIK!<5&Y(+{`~+Q`Sf-!omoj3`8eN5^ArWZ3psn2p>FMo=}?iuoNF&yJk zXo@c^`<=hOIm7#(j1Ow;tc%}8_m7h3qYbfNOV}~p&u0FSD-*5-7?fO65;(hhmv5(x zjARI6=UrOeFJMwwxhpI}T!9s6l5Ld({gXdo(&9)AI0U4t;gullgz zU*s#m@)dmKd&;hP1b!=c>=il5FhU&2&lzaYJW0K*eDm@gXE)Ee#c?U7C}Jofh9lfT zNwmCfrZJ|EX(o@Y$h&YY^?TB(YQa{jQUXBq%PjZ;O}exBm)qP*mB9l@+LM5=GiHZ| z&{c@~8V^@ICB!N;A))Ra6rX{Tl<_JL9XY^z-4-#W^F)j8G{KTUmkEOYCMJD2paj1IkZ+(Y2u!{_$uH9J2XrGq2GK?VlhA-7WCu+mly&6!D3$$y0wL!A z#Yh22$`kOs`IHVCa^4F7o+Kqvz|ct(faSw~Rw5X*d;t)*=?f8n{6hyG7KoPuiB$?H za(yOE=BXd*eIy&%yydQj)Gi<)C!vtSaX}OCkraD#ZpaIr9tHLbP+o-u@r3#ah+6_E zM?Sw(#zYUM{^u@|0Zt}BD+Kt8;y{xSfE)txQ~+B7BxYga!8n2{kVp(!ATA38PZ8|@ ztjGj_8v+Lyi~#+c?tge+hwyXs6zJ*^)U96!Sif1{ElvKw zqOIOz9b7QBKi%=)(N#>)X21i?{(thRR;2|2I(V50^F}Qwyzv&vI7(ZucP%N z^kGX9CdY#1K!<|U*5AkAIy%B?F$ml!{9=&G^6gvDQm}_^1!miZiuG+#9}MqWPKzy#9tZa5L(C z$>PFtg&z-;Pe6lMGxD2n4e=wfWmQbL(TtBR+D=}73BpCyXRs(a#ZfQv_zclxaGu!$ zr_$3uzee03AEtXc&Kt?;V*MUxV>KGQVH>1NaVA;cXNjtAY`YwN8U1zB=)dx!+7{Jc z&KI$D7!!=pX+3G#dfyy?--yDB9J{q9>Kr!*NZtyb}d zL``vSplj*++q$*bxid3Wq3JYkWa~HlA3Ya+vKB(7yB}XkGPzQkB4tm$Gk>z0Z-TD5 z>M|tlHuG#(8K9-CZ7kvJz4-XvBIiE(DouqHzVg{CK4hK%a*_XI$|e)FN}<8M&m>@NiS>n{&!cb&aOpj(Cf!+Pl<(Z-=s*wTmq-F$li(DpzUUv z*KZkr?un)J`36Z*^Vj!EbpgC?hW4?Qs?HK8o)q0#u0iVHHV2-vg1xZ$mKKg|;IUlp1EI~-TEAC^tgn|3PXRFrf`hlcB<>O%Cp%g*F_C_LnHW{}6pCM2o9a?mZFK2VoRq9)&#HnS zwC*`~%D6`Cg6_{C*l|CSgYu!vG?O1LzcuS{3r3}1&?^7V8(a%vpZYc+glp;7PG}z561u+tsa`&>i)| z^w?wn7G_0yQ0g6LLS1K2/{Z~Ioi$?&S|&JVE$f03T%)>^YSIl|8u87)G*>FMtf zD|%w_tAh5IKEKKDP7*6}y1*^za(~2y_3!HxEMNoMb^UeMvx_RWlfa`Io+^d`F*bAQWzH?8lP7{8up@?@Bc= zCKQWin=5s?XAm1B&Lj<+Izvq>fofjDiG^A3@Ivw>(fzllvYeGQqh30~2VQASC1`JN zx$U+pT+GZgK$t>Q(?PBSOp`rZ);#L3ESU%*u`kQD8ysZ1-> zj*elKj`K_MlAK&__~|QXQ&aJAs-<5;i@5u=9V+9cGpNgnbF=rD{5 zMDR0xJ-m44E@=^#Lk2@RQxlR^@tx}46%=dKV*UKk7=ZZPJ^#2FW;Mn zWV*bd$drmVaF#=b2hjM+7qr`)CdCG=!-6#z~=TjO%cXx zRGn4=A-9Mi|Cs3B$1&vzL4g`+tyTBLJ2Ybtu|~U$eQEqjX9(|^9h@<8_aZ}hObuzc zif#L+OvuEDhvkz;4W{i1kG~#xYP}IIp?_OQ*FfxbH&sA<3>z^mRhF!1NRiVQ<6efq z!2|t-hk9Gj{{xj7Nj6G>_Ct)0nbKZu@HY<$R9y;fx9I&Xb1hlI4(pBlZP4eScJP@@ zIDc|s__8l@aCKc9Vqe{Dmvflq7i#%(fMyex^Vjqv5g=#3EO13g)gEs1VCyr^RG0>q z7aKMd|D^06lkP$~$}v3vL*hiOgJT>!#Vmtw z3t$T>L?Q80K(q8&Bdqx+_UYISYWzc4;htBDi$qTo802 zBV}0QrvZ*``b+7069~%l^CVN`*2ZmktszZlo&jtm>3ws(iV5()BmU+{-IvZ980;Ct z65V&TYNfw`)_3m&PamMk2L_xzsRxOn?scj3VKy#b5N?XcNI*{M) z`G{oYriEL!sFse|vYh?0RsR>tW75~z6%rgX)0J=ugLtdq$RZ~V@{0R!-w80Bs8-$uC1*)Z$IHu+dT;R3rV8Oht+kzYk#lD@ zpT7#}%`g%&3IOk{i+4B|`&rK*A4~eg2X)bLtxB${-l(DXjY4u8W4%S+3&s|3Z*B&st61Ow`&lXp#5t4fj=Fly9Yl4)(P7DRRj0-JoDn`n{5sJSg>bb1@!ztyX8rM=8#fR-+F`^ZwtG zW9Aglx5=+62aT}dS}tU3&mqN$J)~$zA_Xa~9WRsPL+%?j=iNPJA9q|*fM>U9Ys)CWq z6ceiNH$Pbij}jM;7$hTi)+BMZChMJljT=mM-a<2;ZDQI~Z&l?C>WR<_Ils(&id&{79*jN#&WMJSs>;z^CdsVE!pZQJ zJf);05CCWd(BlQf6F{sH3MdaeV0#_VNPyRM0;DX}|K%;k5kRJr-GAI34GBaWL4(T1 zs+t&T!s$>pTzo)1A)m6V5o_`z(TiIPtU&N&%(YF%PAlm%5|2|30_96ykk zZkK;XZ&A9N7!M2?8_}~UFmi6!TP`85i=R?Zx~gKHzHE%#620PI>;y^7mhOpeB#s-9 zyHcqVhhf&t5*N6aCMOse@bexpb<}ItexM5#9Rv59Wj98mcr)ecY+AB(OujNIVsIHQ z|LOL_8L9~`7%rzAP9jL%&fH26?tt&Mi0j6PevRu(bsfN{sxBE~=rt_H!`_5QfE}Ad zu$`TJudd5|H)-A+t+sC0>oBl&#*nq$dOeKM4}tvsXRN&v`=o~Jl&MY742re%RU6_cgRzjvTzAE-(u^8BZ-m8;n1a*o7f2&CHe4mSVR3S={$|w%#l~{=gYj<55Y|u`fO8!NpWy zWv*GADc9FO+l!POAnOda&Vna4mqH|#ueiSv)1iwHq+VW@tLdm9?L)umy+_-RMYUYi zwK{IaDdBN6>0Sz{zs<1vDB>tKAo>U@YxJ=3LO3YKWnu1eX;ErK=rG#!V!fiSbr1`p zuy1_%B%y0jK?atCJ*?<{z`4ks6K#oMk6nWCqe0E~v4dAwhfFc$C|M`n3P5hU$(3sr z)t4?OeDvLHSVo^f?y|P2_^hJ|=ayRqi)WQoy+tVx;k|g9LwvC)Ci*wDdC5v|n!dTQ zF$ODf_`Z({^s&H?_+>Y@6=83XR!Gc`e(hN9dF2_Z$080lZ)cd_bMpnE2f;p)PRd}s zU$=T@JU!Xr<#2C1`P=+H_hUT+Llo>tf0X^{JIDtBTVy?X84WAvsw~pw8lWA_wsfD* zM09i^FCtCad7N?@Lxqux2VSJ!(wUd>`OvGYYKiV)QU#_usvz_Z*tcGavH6LOL@yU( zK2h>R3pwURH!clM0W_L530|O8o=ZY6Wgw@FbkLc&oR#D4xjvsa!f;MnbTK86A^CYj zY51e9EkO+TKqtQG+&nk$5MCQt&d`&!RJ@P87;COj!Ds316+WX!OH03IDTAx$2F!ag z&dX{gQAr(b&c0uMuYf_kBiI`_q8;&cBYxggjE)VXs9l|$MzUA82~$DbuDOCudW1@r zDH(&o=EOB>W}Bsd8$84W0pGHQVGxpK-(AX6o39;clyBMpK;*e-wGx7FJbfL@m zm5otdDWNj+N+;6J-WV)bFXAGo2(dJFP|)$LF2lKxKAkA zYJ)zWo?pmW9jw3n=-G34<>n*_(n5l1%S;dT%#Mu7<5 zaYWynR415a!3TLK7)Wz3D5#y3O{#X7OHg>oI1_9{TxpQu$+rlbY6pF zIZe$5trQx5H{)-+Ij1d|00&N2=KEYwqWatG)uV|mp zo1P74;hm0?^=k*QhcaVw9wt0Ovey+*7-4F)HPNU1xtSaxqRUBdR{(-$2S2?8V)x`?ZRx2=aR-p+Ki7$TxhfSF79zn&CvXXhOXemz=4}T+O z^pzs`M9^kRcm;*8Cd~_k&(8GXqCSOFyDsN^7C;X^Flz#NVmv@a8qDSt>CpS4VoypN z&RTt=B8kz(q%#KciamrRtJpy8{Nc1yQ$f0UmaMqx4T|6iaFsyPPffA+evcf(3eM>R zJTe384N`2Rg;+U33{8f5t7pn8hNGc#1iUWg+ZT4#yR@y}xoDis z*8VXuF=HJ;|4|8r;c1%0HS7}y3izz}8;BP;BqU#(P$zVohgl9*W^QA9Rt)7CD%eSX zh|Ubegze6k{xQ1Uf5qMT#OwG*&w_Me2W8alq!Q4L*}09Vun+phBs?y&tf`tJIdRM` z<$>y+7brx0+k!1!)J**J#c!qVuHjGu*~L0+doG9yQPQ#{#QfpMZt$~PZpiBp>>j1F zrf>KZqjWc|n9hk#&t>%Eb7sc5vT;vQ-P2_OHT&7rULWsY&+_vR&R>lB0N1tNwWozX z{jAr4BpNz=-nR&?hLk13BQ&c$3oVF&78eU5M&74k%dI4d!Qq<1R-&klK8-uxI z3l4U}2QXr@%T#SFvzoA9>!`K8gA7^6c+CpOesp!D`|d0M6*s1-QW>tO%gaNxN|l&@xk^tZHWW?{R;+qi`0URNVcn4W@RetTNYZa=2;&ud2< z{yyc!Pe-$W7VxEv51g-}+bRmSrif6lZ&^x58IzQ-PbJ$jLfL!MWI_R|Vh<)=ZjzR^ z7PWAG;rJ8VH0}3kGDHYak(MepPBQi|2fudFGI8g)=UUAM)y(?id~eFJcFeDmW`lON zLIfHx5=o4lP?62n)&^Ed*>YppKt(t(Vj$QBI3W33N!maU>Hmm}_{``#|9BOB+S=Lx z5CfW;2gcKevcJY*1LXp4gdju~oCE@Nz-KTB1=O>)0Lvq3T`e0cU7N!74qz}c12zPR z_;Up}F(_%?l)@Oqj?WDqN4HIr1!O^_vKO=n3`$B}i<-P{uYkcyt7x*mHnlG>B*Dl&wCAORymd;dfM6e=y+8LD8=q!z+oS0R{@C0B^OSWWh=ZT7#9a_o3uP5bgeS$P&V(GvD&YG6$V z!`?*Yc4!!?&;hg%do-P>XLVmMwoWpK!Twb?4;;~=9+V5zteDYh5$qZ4?n;>XBh1Wn z03nkeoSF|v0YC!)PXeDFoD{61Hp1$lei7lRZ?#D>p*T~`Exl72Dt!UKsTgO<+6|=~ z>Mn%rBV0vRjo*-2>vJ?%_ljbiR7h;G=vM}z-W<{a19=WK+izdB*z|~`y0a-@35l+F zmpf9^0HJZmM0yUxR)X?AR7`QrQ5Z*9-*zYn z!)?S4$uj=gV}9&jpqs+VeNgo=RYNoB7jealP(3BR%Tk2uHP)bT6Pn3=utB=dq+WZi zt|3r@W(v9UH_%xg+2@?kE?gYyW&NQPY*0|3GMRErR+92lp@kEdC@Yj7OG| zxA6K+uw%gg)PI%4n2gmhUOfVs6USzb@r>XawiVhW1NCzfI6A{(Hw^!`|CHIjyKPFV z`o$M-zIv6j@VP|xje~3JZqAX{Y!!2hg5j~}0FEfxAz~Bx zO-*5DZ*6VOZGiJo-dvrtIhZ4hi{&{F+U1>r#G1rhIrxV#O302Jhfwy|M0ug(GZW83 zq{?!wc&~Tjh-sK6Xel$Oer(AcVh43OCNk8ue7d=?T-U~1^2Z!ndab!Su#FLUv|+#5 z7*CGD_xGi4y@6^(v-KooZqFKOFd-C0>DFPlwCD?79A#-*BBxixpGxpwtAEI@F5_Ui zBr^vrs=Sw^-xK;kt2Mx&9&@f>OY8Vpw2JUVs{@|r*s%Y0b18-XC!3-%uCzIX{*IbA zA(g)i!Lxn6DGn;v&i!3E6&ammg!;gdn_oi#)YckdO>Yp6ozS;y+VE}dQGD;9Q)h^k z$!UMguV{@^BHDKFZS51V^MK{lEdJ^-mbvkA#q?x!%|@KM_se}#RI-JAdHZttakx0m zpef41jA%h|RdjnsJ?|>vJ+^2cl^@Q|R%{FLBmLtJIkJR~-#4}0L~KVA5U{+9Pi75!66FKmnM*|OfNwIvi2f$Thl zitw}y5p}|(KCIqzAddJ6O`VxDaEthGs1_B&`p*t0-?stYkmxCszS+shI?)BQ4r>jrcy`;U zfKn5O)7W3P2H4r=l{K({bL0BjwgTGMzBQeo%;_CmnA7=?>vkO$*?usli!`@M&J+Im zlCxVbosc{2M5y^6MrEkTP@UKGt|Rrn$!^2deTr)g*;O!s%zvQ$shQ`-15b3g-YQP( zMp>OyQg+QWDyrOWyd$smCiqo7;%D;g*;^x!*$?l#M~>WMJEsU8(~3&R)+2)!uO{eA zX5#2P>~wFTSQ2EsDw*1sc-K(ztf~SJeoVYRx~m6FMM)@^Vv)H<5C=j~dv|>6s6eUm zufZrb2e$jZ8M?Z4l#|Z2;O1xq;u?>D0p{TuEe%Sq-C}hMW!XD4b7w0q8X#%I7 zqv4AIq)VH1zKLqO1!4a!@toiA+-;`FlG zr>;jE6Q2{vY^=Q8zaZgttGtjeK3;wKrTXWb+bi<5ydTLwqjgCKcBC*(&lo!2V}Dm1 z{#9~SzMqy{UzY$Z4$3n7ok-|0ia3@rM9rrp5?3*)zbRfJXg=Un8*i@N4jdtir zqa|p?&mh`Jt_o5m1|^J7{Bu#kv^0~_JVI8&E>U3Z*VZ?nCo>pw1FVTLYQQ=5qqkr1 z2lh#U#>o3D3XD~JCA((HZ1L}_v2kAamNUHMBorhk2VF`R#^kCGeH1o`frcuRy9tJ5 zq5-d1y{~kkj$RPqxD7nCzIH`#XR5vI#0CLMj1CU64TI={fL_-af8OfrY%}l+e@b$z zNLJ19(pAODc3c>&L2}sCX6(!ZBuh^m(-b@U4QE*d5v6+iOn_Ep0w-9%Tg@l!oKPmby&s^NH8?&o(MSGT9tl5Ol(n5x8qNFnR}iOFm82>z)y0&Cm+u`Y!|jkh`Ro4F z3qGB9(-$pVZUcWF5{-U(4RFSdTE7EHfwB#}=eWOoSa4%k8ti#a=k%A$8~D{{GV+Hw zY6uMN;>4-E?)1Lq%m-Vs{rUI+x-9Q!5r&uR6TK*5&HObJ{r$pzZ1%$bQbHj*%Tg;& z0vJo7D9DCt?#|TEzuO;jVobls8Ll}^j^2ET11U<~ug|yK=0O+|d?3qK^zI8goI?G7 z1f~%`pij?~cb%=ghrWb92G*IItvNp*Dtf9#_oppttKej*u!L9;_p_I+RTN?=b3!%i zhn^QU2Y99MBm``V%VswhPtqw29$kyc<=Y-?%CBBv6 z-`^@ebkbVy_^>Ui>ixiBn|Z7R`#&*?nv1ntyucfqu1@o1Um6bv7!E)LpNggs*|Ta4 zrEkJ#dp_$p7bouZ0hbYjJM zc^tf)ROVmU`{i_y(iP+_=|vJ>bfYcGyN!T)M?Cp(cQ*@jE}AO_z5QhC8iJ}-cJ@dF zyX7Ob6D_>9nLWLosZlxMjYDI=h~-pFv`c}U06Kq`v%_p#JiXciDa6H#eqCs+%v9oY zV#LCym{-!F&7~61=5{H)88~ZNe`BNJiMmT3fO`#Dy}a#1wXM8Gair3^;*W|0h#I6O z$t<;$V`l7WTn%lP!(C<-*^2&jgIKxGXY_j59pcW1mYdP*PrE#?aR4=xnQHdU;wHRD zSvd%wz5*|TLfMn~NmLPV+C?KE){fGif(yj`BhC$L>j1r%@3|TBe8jq;-#KJeaebK` z1EtPMf%03r^i0kdYkF}XdIQIl#WP&z$gA6Xy7Grz!UE?r7OeZk3#D+sDK)QjjZ=Yi+_(+|P1zC9S3U|uS3??+r<>lT?8+?O%urw** zZejq3&winJOOT2uxWBJE+s5$~_G ziNSc4+MHzNyQgNkG`FA%%TKaQTH#;GDliLm^lUN=Yu((qKR0{Qp&UG#lZs77-iLxm zV=h{hj2H(dK?J!QCgN~u{sU#$V;UsY=FoYUzcS*xw#1L9k=(R?Ot$31I@L6r`1r{qA zEa+_G{`rz9@5K=Ln~VOW&+4I>C$60P7M0k2Q)lNzRa!kSXz$Ow_1oY|$fAbo z)t$i)`xc?zj3Sv>)~C(yu+Uzw8tPoN9j8Lak1MN}N2y|${WGJPe;R7$%MVD%P@!dB zyphb8nAWvk!N@wZuTN%C1xd>dTmZZE6$$cZgP3H5e=?gY>xLcsBZUaeA`}BMn<_-} z6cuQfcP~mm+Gw@)E-C7Z?V6^}a!2n(N^JTvYU6m|EpHY4E-pNt+FQrP6FXC)?AN8% zXs)y~n`W$!1Pk9k{2CQUGsZzgp>7jQIeu-f)UU=1 z1`E84xl*K!za;A>FTro6|8R+y=#*Kg`(FSJw-wF%|L5 zp|!r0mAe0HhroB#Z9OGweD>v+8_o%+%HaFvI$;uJb;pLjC1fpA45X^GkRKP!CxK?7 zy+=C6*&C+9l8f_tt;v-;!9Lry8r`Pt92WE5pJHSlJ!7+9W$3~&&*VON+J8iV0WgD)sK%cx8L zn#xv-_9`7~Iv~OuvI;U)zVx|H&E$t{H+^ONDw+J3*L7F(4|E^wR2ML)fq_a?AMIhK zEIag{-xgZUdJZXh)3frsWZYXid52HwkP!=~T)_nxNv3|SUf;kX`U>RMSE*6p5r3O@ z7VI8<;J2a^eo%QdP@KE5sF(8AIIdda8dHAMy$`+Ec(L0|K@l!Sc6_XF?dYqQ$0U4| zClu~B@Xn^mi$=SUgxC(zn%ZNb-cFDJVRX5%L{_P9@0&jUGA-@fTyWx97dwzrQ^dRw zJp5|?c%E%*>Xtog)S$Ei`_|lW!IE4l3`9|6Yw#r9WX4nxePMa#EW2KDf_03c{xidw zE;vn;3zTCQBr5~i`@gy~q1>C`u*A%~`w_?rwPB=hfO z3BTqK*}txahcC(0XK+@7t}TI-dMQOjk&S&^IcoJcsCnPm^rynHT0k_^o9n}ZFK4)M z<-5RUZ_H|JntFBmYA1a=Cb#apnS>PFYgy41LY?J|usIoqr>CKBXul`UQaciPa^fpX z6n6!D@oMm&g%G>(ISW!{wTPn~8>R?fovyLv&08~N{*&2zp6J*vfW%SFNJESSyKD7sp=9O zbv;RI3kD@%Hn(5M_b-dc!ow5E-t%-)5#%Q>=O*wX>F}E&jP&Z*)Ma|c3gK`u65pRv zO0?_pQO>sq!mKtSW7di$?^YHJ#q*!*`M*xF|RGXAvtxvABJu zriv2%Lz{6f;#pk<%kvJpzNYQlHcQk=A};waB^sv0-XHb`vXfgP29&sK=Dgy3E&q}v z^1zE+l92JW;ZM~;Bo)L;XL2-MjNgumSExJ+E3aQ}8t26C*2tAeq58XP!#7Sq7c`f) zYbu6Tj$iYB`Gq8oSwh@h9nl|i73PC4U!w}YwDfyfOMyTlr#(sGITdX zcS=dekVAKO=ldPMe`cLoi@0Idz`3ry_iru^0Frhx!v z^q}}^QM|gF5})hKTZY=%S_KY*352Gr9=NSj+CkXubBt1ac698KKWp-qeW%d>kQf`2 zJqwYMzzA)IrzM}qedJr9ZPZci#}>e z<{pW8ZD(WJ1pj3}>#L@Xl-kD+N(FJ1qhm~Pg zxnE;$xk=)&aoQ4~@F;VmqG9-4g=?_4JJtuW1s&?|)c$PW=9oK7J!>|dsgNs$gc}z! z{2F3fib~NVNLZ1PqMc1Lqsa4%F(i$z5|a@`P66kYMKaPm!OrPdSLI(4OWTzX8jrGa z4$foIY-&Q@jCmE_4|GsCZDw#I*r!-amzxXFIF0fq5Wm0Z5twt7>7X6Nnfqs^Z1 zpkthd|1-hB)xE+s@RP3cvTZKQ70c8VTty>+5#(JM>5d)&#N*Yu0AjT|%G6Gp43apn z76{0AGZ0|{NqTpne)U_Vp|TcW`2jpUz`gmmKr)$sJAGgR00QbjzYx%U1hB5J0bu}W zX|hM+2Ll^&WE}3SKHfETT3;=jyn0js-~I2tA3%o#AL0Oz+h_~&d65vxnv(!U{I-Y^ zE}xAK20TbpLD7Qw1-wbv(#l1yP{mg^@KB)4Rl4L)swxpu9Z)*lUU2L1OhHGu*F>_C79ppFb= zp;@q*vnM4&fGj^;^JD%7Bu!!>3<{cFnj#}BBnL7PuRc!80+EPp3#&ZdOATlkHvtf# zhel6xPxNT)qmSx}vJAi!P&*8gchRD>wC5UM;K?aUi;UAXg89)tyz z@Fp6WLLF6*bGE)ka~v?Vo&Y?<-gvrUoacbXeOYxTXY}%rGlx))`Dt}hNy1z+{L!?|w zO0J`ZmNw~-Ve4$v$S}r);jM&(u5mRNf7>WtIyYwRpyU^wo&)}M22fJNZWn4Jz>940 z{PjL2`7M2HJ~+$Optn4tBG|(^-8^BHC|}!1c|&to!(Z~7#q$uSr+EqBpj^dI36SsF zWvaJUARgusq-UX&{q(|Dz$1}>%B0)1m~Ju0bKrJUANT3pLO^rhHQ&Am`>RjFN*hKG zf829b?q@fwzdAHy9j#4P-#S}N-(~_8v=v1N!&yW^(@gPca<;C_H|IZ_=xO!J^i>o=TkgdZ z1p)0NVFI$B_1{zI`;EeFu2AYKDt2@h*?&5XAsyb${uyqV<}NgvI3G1%mi+ZCbr>fb zGO&#C03AatO+E8-691R`@hMheOqHdx)d2NsH`tr8gs*dSC%QO5zwx>Z-ooH8il z1lLYlbT~fQ%H5MTYB1rQ7;bH0>Rj*Z?|(>rVRw8ia^g};z&`bF#-8qLZI(lI4JXVYq*gB_Ygli{f|&z%;&tLFTz$5srK#9rR_1J z(^U=-T8c!ccCTYC=DvFOhTpZ@-n2#8S5S!n{Sn`Pjl;+;3)4R>b+KvwN z_$Se^A;ACGYsNBZDmAtlzGqW${BAq6;tMbAyDjJ*-zfj7Ml3_v8XKG6%F0Z;!`_iG z+V@zBW`NL%`78T(GN!Vv5xeuSRc$@IwS6qpE#02@E%BjCc?19LN9pg4GEhp#dGC#e z3i}FGJ~+)IBt`c4Q*DHtY9J1L~q|c`3S%0-acWu4%YP(Io%mFH1{a zb+uh%GICkL-9lRmUwQlNi-{8}zx2$32faA)i0ikrA@552T1iE|{4l)wya4jChWOp5 zGhZ`J<#ILT4qv4iMh!Bl#PZyo(*f_6>>9JYW?b0szg1 zbaKej$r;hM+Vg+~LU)-81E~$=wvetoe14VuVaH=HZ?=$QQKyX4R%GR<&WQV~9Zu56 z{@zR{QMGoP9!gkK3+L;5Ia8JmBadXscU6L>yGt`AR&V|oL4@{150%&)T$dY5TP;w= z{xdZQM%pc*vg4fX%l>f{Rbo;E1~~d2WsR-}Y-004u#yqC9>b=)MPt=7oms=on?Z-QV!^>uC?v|R*tmzjpe8)d?+2{`IY~Gu z*Qibd^->@}fw9uyP|9C*V_xRnn?OTdQeCF1f?>Bx+vOrAl~&FUxi1rPRg4=%9#m?x zd9f-v;SeXII8)&)+i|PpUEErfEo#Af*V*{KO zx3QvV0a;$IeY!0pXJ!?%gjOV!msv#>7BXimj>ln5zR`X4DGoey@ToSQ0W<9D3L(Qs zDX2Ud-b1~poU1A2OSAN<#%|1YoTK!LX4f~192QpBZ3R_?IMa*u-e~(&n~@~l_SVCX z>%(xc4!kZ1TUPJ+DkN}#efNp&B2Mz|dBYLUcHFLPfKDnKMgIQRHQ!B2xY+x<4}H00 zv+K&$7sRo6o2CVnpKZH&o6W4e1=Bkk$nBL@!Y}2t$6=cCS;LI0PN+^|yHnNfzV=cl zvm0z6DXxD1P-oqiQ$#_mPRnbD{L-NRA#wb7dsX3aPL-y_D$QM+{g@w!MSkQ_pQSaZ zsHixsb4QgDUU$!N^xhzLABjn5%uYZj&5%%vV-vId9!#0hvD0wOnVKW(B4CdUV38X! zgYdsJGfiLfDt;m;I&GNpv~t53B}Gd7RJ|vbblCdazG6O}C?Qadj4{l>Sk_SayAZ7x zwm;i@@8ejpsnU-wa;9pE@}Cly`_TI0V>Nc{k`;rPpTBuh2~QWs9qE8L&Utu; zaEmLWNDz8mOW}{^81;KPkODK0-KYu%7NI!zRXj&)r7%c2rjXT62kz)+D{p)C^d3TU z7Z>GCrcv2GD8CT#Cpi*3v%0!!q&2Ge(0rCDHmqf(BTOEX6C^fNt3!E=egEpsTi`u8 zu%nNP>U~9yBY1= zzPge9jju29FEWKT>1Nx?OxkC_+QH1`!dTdA&ewctTQc9T%H#>D=>i-9^}{*al%YKcB5Y zqG^_>hEnUfvnXxpXnk(yU+$hbg54z9#H20^*6(0~?=-{tyB77Y2QG@Qm3)IIj#~7S z22+l+Z0lV;U#Y$Vhhl7Ns?mg3ShMlMS>LL1*xt^sKZ#m;eg$S5DTA~?Tqiay%_?|h zJRh8mHJ(^a^7^*2WHZ{R72FCZ?pYl4c17zE{oQNvd-}>8Q4L})F7U?bMUo^4L zflJ%JvdQH`)^P&5S^k7>`!)yHU^`d)(rALfYL!27UyhN*54jL!3!*({N^cr3Hpi4a zU5(+khq5u7Z$bQUcr(XUmEloKb?QdL!M9TJ4#7-qe~87{r#wI?P?>bHvt|co=+X)uqa{ZQ4P7+Qfpo z{my-=p|+}|T0J^aAXk~d<^*|CtCB5v&?pJV|yJ^55@VWu5lzX9&P#sbx zKU(vBnjla{fR`{q=NqRLG&cY1C=ans!bU;y0MP;X^Cw_Au80n7-N}*uzeeXD{L04A zP>}`OP?6_ffI3U15Cy1FRRj9fPb+W8HN zb|eB8`~Miyfa3?~8v+V}Y(IH`m{FBA6qJ+`K!4KI02dJt5F-be%lCzzMcC@7?JPeG zRY5ZEsFWo3<#>@afowVQ^grAEC&?N+!7iRpH>B##VHhwn}gJnT}qHIM*XR*M9$4Zq>r)bwzr+MRtW+Acny5+FS@8 zpi+@$D`y^WN>oLAY0jDp=TSLsLQ-33)fp5a#YqN$_Tk6*=R`3q8%EVDha4eLPYb=_YWjrH2{s z%I!Bf>QmLCT+z?|rC0`qzkzxZt_uN8|M7Z|92V=B=J+@`@GH<1CD~!vu0w>@O;Gm! zx7d`Ke_j6kR_gbqF9@za~RVM1Rq6m@ceEtGK1z!;-6xwRqB5!$-zl)U^rxKp3 zX*r#kRP>7-U+yRyImnO6a-!RI==jq#Xw186S!bahep@8&rl-nap=26eM`)q-TkCrQPy@-$VzTPm>vupg&Ps)C*fzVRuM@e1n9l7rpCSW;rtA>c z7KILN zgh$a{yRT>c)`1-PJvy^DMo~8Lh`_J!6`VM2jhIuy7C=3bZt&ut6dbQa$3#_hRU$k? zVrUJnH=Q4JO*(3KfBXH?$fK0MKk$EhXky_~2S!sTy5`7Kn+mJ!R#dQS(Vfdy z5phrqOv$i3&5xzLi7(Fqb@zV2FWO25<7*o zE?^BH!NVq5L*B%>k~W|%VruM?gcAuVGq|8vay?RDo~J4BQ_!IqyPw?M;QHz7KZP6W zZ~^>YA^NL9>flN*wT;5G4GKPAvY91&45m)kD`JsJ)&7p5vf$*5hUROVFw)7$z;*?( z-IW}L4Rs=mgfVC1EAl!$kD7ATg24VwIG^7T$M@77|9;+K>g2-kPn{;GRYnJmt}Di} zXS`1R;tPx;@VgJ zRB^%r0us#i69aaAAj@B0ENPLJ@`5t|6fc^{fb6S;g>;3i%2a$`NlC3TAA(mpwC}>t z*(A@7^Dl;Z26+>}M6ZYKsZ=o}PYtF^Fr9b6@`xDndaIoO_*XyszgqbSXGre_(-G1C zU08QE?iFLJF(~9&>IzERqUd)%uscgLxr^Gcw^&lT=`LFEj+T&;bX|}YGJn84pLE~w zZ8jQ)Y!9q#|4s+e#~m%JJ?O{nak;T-#OFHOoyp_-X{yt1!@o@hPoz`E%sjmL+H>`d z3?%8DYw?>B)m-fEVUr#2yasyUee`s0}v#yv_xp^4~ff!^o@i zy3@{XyY$d)@TBopzol2?8<*(mwR(>||MsH&Nf}SkE|+84!4r(B%KEE*Z^9ugQdFD+ z|1xrXcLu~?MwC@659s#XeL(v6x87opRD9c8Z$6tWVz#&H zaXptNc_{2^7MpWM^uIM zrylF5 zxWz@hyo=K|*q(6+P_F7BFle=YvKy*cxwzpCbohdcgh~&dz8L62znRl(UX5FiIZkkNilypB~@oBeGILq+SVP{=; zDV4O`w%KZo3;KldoX+<+%G3YGs5U-DQ5)6-Te@@9H&kSZCJlR?FosHVM!Ywbn9OkN zKM)jEaCDBR#AKCHQt-po(Y|1@Wr=ii33qd*)|e*pNw09f7~$@R{WyGO zE&+0Jep+{)Vj8ssQM$Bl3>n ztl&w*;{)vLXcErt>j7v_!;co>xkFYPU8sF&FJzze;wJa~18$%PO7qz?lc4Lg@0Dn@ z19$RkUve%($HN!vHL)z1S9o_zL%(Khk+8ym;xp!*!TId2K}Wc13l^%f>aJ-%o|@)A zxOm*ee}4Kse=i1&GhNf?67C4K{l$Af+4oQNF{-2cf+P2$?Q?yo-Lgc}b3A4<<*vZ% zFrs09kJ&O?U0za6Z$YZVc^&#ePNKD^CMq;(tNMVmG~pO5Kl;T%c;9#Z;wb9 zJ;$}=J#(YURs)ug@3cU{P-JWUFpM{GQGS?Y!TVzR`eCD)w|0&J&Jc3~VOj3Dt@pgC zE;i%E{@aBTkUX$#x<6b(3^9QtH-34{6YZ$yZq&6`eOR!soSWZwoB8#f;Ny!UDN~`E z&*eD5T`&%NEzovmdepTGHDOoxe7bMC+x?Tl!mA3SQiw+hu^>K-wH-YZa=tbvS z!{%}#a}A-si+1Jt>;L%dm^t%fsyaXFoXFYEc1&)}$m9bpP`_z?oDHG&8EqsQ1*Juh zHfmSHqml7s^W;sc+GiVQxQT<9uhMc$t;fY@+j(PqWMU_bO5r&n3Nw+o9VDU#9l5Wk zCiI=$g1YzTLHp1@F%D}Hzi39Bc;eXvnl@|a-7eZRE~CM4Q8pAVuHQprUFOKXI)exW zuAgI{t_P;7hR5Gn=w4ECIsr@1#Jo=>WiTEqqv3CUg}>=zCgqIv^7k|XyKsX${Nj`! zW%E-w2fX^7yBIqlXHWFN#ypm+S!c$+TCko}bMoN!TJ*IXan74H9bV!Rf?eXPb1_4i z`O8uDjA|$x)j{TqNe7QnkFLwK4;k))Pk>%Z}GlFbL4}gUC6e(Pp_rUTaN&FOG#KHk`BD6LIfcT^7nLVZcFDzn@ zLV<{6ahAXaU{e6ZigyaE!i%kFPn5nBh^oxH2|Td}P6OmSj+GQv0(n9A#eHJs3DZZ@ z-!gIJ2{a-lRsUbES&0vKRxNZ@WF~u8u&-PMNK$Y>;?a-+>{&pl11QG608rM){DR#0U_i-1Nbm#m7HJZ~xlkR&3i_{khfGpXlam#8Pf9MkJ(CVkdHz_0I>0ay_I^>lnpN;Aq+G;n+jF8 zl|V#1)w^Al@2L^{xm6as@x%{-ilARBe`X{QDvt_Id+(&umHfXutAs}duxzD~HWz}G z8KG)?bW&jD(N}O5Y!4YgUgFX0SCCiXPt30^h8sm5ZHlr5!qadfPw7P2Y>upk@^Y&<#Hpb~yu5si(e?}C7ly~jNavhe4kh#6DXf|~V zx$@!{Qv>(VoeeY1Lzjc@+>3E<<X;*R{yR8C6{mbViJX-DbvxIg073* z%KkcDa$(a9KOl*gsh)m@!^)#+xU?M|?vP&;Yn zA;qBotS>;5=lYhfckDaE4Bd8gHK&>-Sw-vPRbybYlSlN!RVAUs9J~83t7O72TH)V> z1S>)Hxt~BX1uO;&Y$o2BY1kyc(!!CNX?zd&4N^3hlpJ=(x50wgOV&#|X_hf?M(Jt_ zky}3ZKkR|Xx8szqS`&Plrw2N9)jXD~6J%f0-}1TaeOnz0b$)txgVIzXt~|Zj#89-@p)%t9L|0W{N4s*|m@~1cRPr2+ z753gdotX?(bkx3^;tg??#3pso^mL*^YH*5rUh^i?R2fsE1D1C|w4Zq{z~VDa{b023 z&_Zti22&4}`Z|mw_hKPK&$eNGyy%?Ic1dw4XgIgGt(JT@k6uAobrW6me z1CQTGI#b3xNxT|7ywffA@^DOXI8fITCdk4wUgsg;}@V=UT8a-cK@8u~d zJ>cSsiw>3tB&rlarZRa1ukDyXGy|K5o)~P}0cKI{SY7iP@a#?aKzrJ!9oTuFj|6Hs z`F{=*ni{{bPr|;hPm9+XlruFq^!e)#8(y(=`+?_EW}p9PtZR55%mNjOSO29{6!DK82) zlB~TsAvM+~*K?uAr}fD#Jn`8l7L-|EkD({J3Mj*L5(jy-E-oIhY#8PlQ*W_|T%H_b zX6Y0^oO3gX^hDtrW->>kWrW@5Oua*gQ3GqN@HyLZZu80F(_3UIR+Fu(-SfLWm)lTH zTYttBa@dSdO@B{&gr_UksrYnq9yee{QiE99AEl~s+$rq{6=K!CQRE#s5A5DFn*kk_aSTt1m+917n|_Y*8pGGAnOchp-+eo9`+W?#CJT= zNYp25f@=HW(9k@eC$Q$jidNUSs$CMC7j{&^sr{B=0La1PWy1z(LRX3FM+u(U8Iu<* zgw=%xHNAHE9)7IPpVq5aLq<$%>*O zFPyPHZz#NM6*JnRKYLq6J#$1;YZk%5eytQGw8h5IgBIiO`V{IPcdoSV5Dq)|D)8IE zgM?Pr#|Qc}G{egw-5tPHb16`4K>U*?g--NbcXJq)I!VSlv5h!0^r4wF{Z+UCgOo~Q zN;`Qy*}*#M!m%qp@MNWltjk#vuZy9bQ#BN2_ptNez9+N19-xPw@Q%MRuzg#*C_CQq z2DSM#cHydWnW}9(tqu-(aPVOSgDmYFh8=4pC@_!lkV&(t#l|x_9*=oqMLsDxb+85SDRzGS{{fzwD&SEBnB!tIDq7N z4U}u)`$?VS!aPeb(yi{3EfM0|P?}`q1HyTC7~;dP7E1EiAYUKlP{hm)UDo%jm*l%- zYoILC+MOP9Fvq@4w>*CHS>c#L_OCBdNwPU@=Wdv zNh5*$oP)T#|FhloWlt842v3m#yZSt%1rlZDMnL{tv>!6uT#T^(Z;Yl4yQRqA6Q6`* zvuw!6URq^0jZmihxdO#>^H+(wdtOa#G72+^_Ir<6< z=-Y^vV1K)<&V@lfqBEU5VN1oQ?8pBh89v6o(O!$D&cA_~;xx(bj_R3?wadJ%wYfLi zqzS9M{(-e>^ahia;Pt_XSk_QyRvL~F?YSF&V}um@A|*99j~TqOsaiC@bUa!3m-*-q z(X2O9WAF|C9$9I6*IInii_I5*;-ps5-?cJ!?Lb7_G%ND!NUrdsD63-(p)3OcmIBKTp_f3tT!WoAg zxNL3(60KeF|M-g@4i;$)-9R!;)QT%)r&M~NCY%kjY9S&Do_SueQ+F(k{7VvtKM|d3 z_2O|Y47XvM5xl`0#yG#%@O+;3&csqI%e_ixdvktKRUNN%8rOXY4tP@=nolCN7K*w< z(Okg1!9Y?XSTMUj8XUdJ{@H4)J~HmW;)!FH{gnL!5TK2`I2k~lL+SkB=Ulure$J+q zsEMV-_Kqnd`y6;NLDzBUdk+C2$~1ck{aD=D{YF&hvz@qn6#R}pJ$HEAHg-=uHXX8;?S<49E#`6oD^{*P}9JUbVU@ zy~joOwh5GhK7M&HzCA<6*YuICH-vN4 zh3!6fk@`LwN%==D97bYxc;RIcz1kXuY00-fa-&($)jI7crs$#9I?L)PQIkNq`tF}j z%w@AXuu^=n&1Ran@ny&^(}d=eoU9mo%O(8>7Qep=gG;`I$7aeeqvXbkchCa~j1(f@ z-wB!Rq25W=ocY-)ts|#azB5&sL(v89obqg9;RmZf{nVU2g=+OZBH$Ep#W4L(9Bnmy zyr=D(gM%Vg%@LJuX+*zf=jo@?%}K>$JkiCkzoy*Uwl3EOs`%Wh@cGs^U&J05Pew)h zQd_!i82u0FxS%n#n!I63jrc&xl@66Ma?uFcdFI!Ff2hXG5WK*x=}j5swwhywjRDAo z&R8hDcKFtHG9WoJI{D<(!=6R57{OmNH@&3GDkYO%Oz~?k@5%0GQ{CjMLBy~ip~Kj? zPpA3r{J zJxo2LrQTdGZ#I&=Iz|h`4T{&f)27;Et_W+jAZP;C-jqITj16yb}5z?kIV}R?E{|Sijc$)wI_H9wG4-8X&Up7w_(n%Ng5(<-R9VFh@5Y(w}bOf_W@1{++Euq*& zOj{#IRF3K1v;B2v%XZL5U1_1s6|!|O{&g`^SlE1MwQu;?MVyoPq0Ch;`CNZ!#!Y}2 zdzMKeMgIL_W0ql@7heQSPoq@myS)bpRr9BI()44o6o*v?w3Jlyw6u!Eg~w3-V|`+@ z0498eYqlUlS47tw+Hl-wRb7}sfMP2$1x!!2(F24MydzUTl|Nft=SH&13ToFAKq2{c z=m5+(IBZH2u7U!PoJRo&GSK+bSER)QJmvycLmNl@vy4e<=Xp`CWeQPYIktuxcM|wmFZ=C=2jY{7XH3 zoI>FNVn(U*7N51P3chR079>g8l9a^!Yxtq%Lk2j@zy$%A7s1A;UYMq&%o`{T1h10Z ziq#x_ZaWFxMdamw6a<)8b{<2RQ}lo5 z59(H?OaA878-RH#-!j{c?S`b1qKj<-5tgfFS?#&k9u;kuk(Hr6t|_q$4Iol^{YF92 zPeyhSYe{|FlY_!PFP z5;;ioJtoY4be!y}A_b2$jE;paqrYtQ2ey_p?w`dLBtg>b*7nW{%$gqFZ&uhH=5a|k z#3mx!4PSajlJ#~(fp*q!yF+MLB~~9UVw?Dq$(MdvCv4sGgh&WKK*O6s`x7M``I?5r z32z*X@fR~^h79+08?1-k1cq#dp7ghb%P$YtqB8>n4sj~Zl3rZIE?WFkFK(9NPI7F- zCELw`JsqOh!|6>R`s+QGS9TOE*nLQ2z@mQGPhrDXh4J`JUvoYkJ3zOxFW5zJe=o7*d!hjc-NQyx9MM2UMY+`Ia%!wW z3gFK?)bo6XCZ)iw+!E5{+PGq0}ZPz2ay#I@`61Vj=t=tVY-M4&2maguOwniEW8p{!qnYj(h0$4UGjS%|y zU?WOoDI;%(FvM*o1SU6$1DVW78d~{cnt=OOtgy|qKa&>zBxLPhs=DYg5Di|fDZb`A z7W7Jps^W;vnx5Nj>{T*4CGk2{ne2Ywk3B3%nJJtFlQb4YTolMH$LumD>7|KMw&G#l zMXCDLZN6pcJgIQIwC>Gh{~uCl*5+esrFrmIhqd2u20E-G;VdmPy1TUQ4u%Q(MPFpC z=o88yVAap$yWT4JB@!|A8dbTBdi$}ubS~ye{!At2HoTHUSqu~@-r*1AnXgKE){MU_ z?QAoZd5W^$*QBqLYDKeD5NXyY+|!)R4Y(SaFs2nNA6xCRH=h81qBm6J4_8#PF1 z$XtSbvPT?Otm@>vUeuG`%*pri?M$U466ZgzSsP468+Hv9?II`fy zgK~WPVG=5gs_T+dKcTPgc0w7KM87dxeS-Sg)Os)O0&Pk5ZDO{-!4hlFY_08eEsuP) zWCZV8l|vqU^o(j-8U}uOGm*J|@HM%X+dS=qg>D#FHBY(S{K}zEcNe<`pJ{D4l;qnc zfCOCm>7BBK#t_fnXW6NJ?NYdUBV>`krpFoUZ7@ahHq_mPy4@VsT23`w2nmV;y_W*O z+t9j1H8)KUQr3KP@2*z4elU?vSjU;>S^Y>+MG@Y7u}PpP?%@nsSbE{RAAgkg(zILD z2q^B$<7jHseGfq#e*U;#8w83cH)0acnJ>&ZoD?zq+hKpZEeE%rY$XdiS@zc1 z!raQyEs$Rsr#Dm^$XSZXdhbd#!kV{n?Qox?)z$M=Uj_n2S zX9a3O46)s8;sd!g)9`UU&6~uI+ou5&)+i61=#P{^faVKCxRUG^<4E?Mmbt^spXg3X z_#Qu$t{Te-$_&9=0j#y{lkVL%+W`&9)gcI1k1Mdb4@^1GBvv|j4Lw!Lhtj~_=? zDa~tpd)`w_&=441lA!c4QPg*?wa=a7z@)soj_VyOO^#S$(~tj*45af6rK=ob84zVN zUND1S3l$-bq=N_T&exT#Htl%SE^Yb8txK0CI$s*$PsL&9wcF#DjGYqqccCBTizGc5F;I+1-QQeq~)`UqtxY=AFb(M@C=`Y z>O$lPnZ@0{;8l1`Mrr3%T#1Z)pRVRJfz-4=lKSu$xVp`W?~M|CUR0+>$MCr`yNR7; zYCN+%7|Jw&sz>l7>P z-e)NBC#U#|6>VFG=fCvd1rqh=cl#)i0gP6fuV(EXGy!quI7GD-y32^PMqt;+??Cx<`l9ZRssc#8ToV!Q|%d28!-QTaA>{D1pWhRsV zGFz?|X1z%h8XLZ8ux*yeLcdhBIC1V=RLXSbJ-2 zCjWsBOXY6enkFc>Hdgl08HE?M!E5=2*h5sSCllxF>9#gG@xrSHOAtghZyhx6Gq=mP z5?;2jl#%ea&wHuVs{+WYnR3mYzK`K>V6cAY@O_hd>joyIFjGSIqz0KhY8!W6Usp`Z z36O7gRWpmK>HL-v^0wpsIUE1fDSPzs9){)*%*V7f`(8uJmV)V0NzX57svk?19`t^k z&8@$H*PnUR35*~u_{q=>$w0xa5A}Xv5W~|8OVbo@$#B8eqKhCYQ@XFNSF9~z5%VEq zMnXLrrH;sFnpQNs!JDPWp7q;kcX3j$jU9vZfv+~QGgPm~hzOVF_J1T5yx|&3e*ArC z#^EP+<{tOcElU5Dsozu+h#u=n7BHWIh>3&qL0K8UFOZH+S5Tt&CvUgC2UpZavuL1t zd3prx(Lx{@mu^ob*a#vF>AePA1bL4&Ib){P$_o9F+*HCBm@IX_cgihgPnJlIusT);45#7Q^w zGi!M6P)+bI(mhqXbT;kyM{qnF9b3v3-ka zp7{4lkZ(feacJ z(Nw2txOsuhA4!)F`2sGhtYa*<*G#mZZbA5DhJ=CyUVr@sq`aF zMn`o*V(P)rmdgJs%|@JjrZ?6@Wn#2Gsc%&Ll5u&zeW?{y8!5AN7?PV$h`A-RtaMX- zDih|OtL{6wqsRUMO`db0f{UkwK>Lu-<=c@D{AF4cG!Gf88cxs|)+Jba&|dK_)!_L) zv#hdg5a2GNi04yA)=Vy3a=%d=UWVx+k^dU(QAi#S$C2VCw)LsR<6}Hw;f{Y$%uT zfXE*T6m+#}_=Oh^nuY`H@ID5jFtS2dV4%hZ@^tupNFOH^K|B(}(+4(1x*>5y2VaU@ zH34>D`@X9LZjq~klH!_(=A;a5EN~K}A}yAs3EF858PxwDgV9EbJo5gH$UxR_Ql7;I zD7gigf&Ty=8bDzaT5cND5Xlfg7y{%$Ss*_LWDk*sa6YBUn*+f@P`0!}@#v@cSZ09Y z4Nd%QD;p6vo5x4n_t}>0vurlsmuU<>_Iy2HHb#_zBL|`Hc@&^5^=a&ypgM8~TO?0j zt4J=*ev^==KaIJS9z1_5g9+GdL|>ElfHkO-ziC{OSI*2g2u1ei@Udw#rlJA^GQi{j z7~Wd8vY*ma0hAz1VY&);d~ZGxxuY!v;CoL>mN4tke}qX^`Sr7n9ah5W_jvR$ilGxH zbbKtO=g?{+GW?GlO&PKR7;Mw&dM+}qx0BniiTdkoE~%uf8bf!wzhPh<8gGY{h)y5k z$AQ?Ipr@A6@=bokr_eEys;=!>u5n}Sh1*XXoA$be7PFVcoDzRB6-3J@6yNS#c&6u= z-CG6vb^9MyDTGWkyeW;-n60*A!{jMOPzLv&YYVq)h)jikJ8J)gJlLnjU4kr?Fd#M~ zlGyKsfz}ySw5{_Fr$uTwSdDTwa`Z%VepE?t6QIOvT7c#q#GDxTsNT6tUQv zlM{(nK;&U22b~w;kM61TN( zH1tcnIuplib?51`IVx*EkI#FUF`{LM6kA3OgHPWG(!`kCtA?`;m^2td7&(ZnEm+Nj z$VBj5bzPR^hr~|Dmc{=T7up1oK6ZVT+&#|^OeKcsu(y9Q=Y2?+h@I1{ZS%0Pu)4U& z#vPbD)HJmvaiW(3iPT|#1R9Q<8|NSoB9nb+jSsuSUvw(;R2ygLLq;-LzY+}S^=M+ua5-oiw&qxfg)+$@-ZAetse~KKD7s37X2))2V z+dE@{oF((DR68G5x$Txzs%>yK`!!rHgk5A~g}wWduqRf3LXG=|igQXPFh`%rLDV@m zdHa&}_Y8#}e&^_(Pg`O^piAdDgS{|^YDu($C5v%oSAcz+^S&t;L$GAt$S8f{pwo76 zqt>2S@)h@AdO1y$HH+IW0Qqz|9K%Xe*FJ1)Y2qPA;e>P=bZXkYQDpU^HvMA%!i-p2 zyxUd31m1`Q&T#0O8(W^^hNzg%R{3zWzuh&)=5BY{;$jJ(k|0!0+?z=6@BfhS#PIDN zQhrsun&pwh=Eg`~a1t}^S(?L&(yYFUPq!u(v$Uw+3+UW~iU_<=HyVW}D3t=A#qZzs zFt&gWF`N6-a>Xz@p(c0SaYr*fJp7(1cBI&pbSFpb3542euGe_X> zh(^^P-hehrx*%>zTG5;k9-{*NESZFeTpqz5%-6gwZUCe%4l>l_d{B zMdVMt+Lk9(<39w+UShf%n-y(wIra{THk#i0$Sf#)Cm4Vupb185_bY#%j6Py8JAjOrcKEP;#WsD|~kaHT=&9tl4tiOPEa3uMt4FvZ5^UgdCptoI4 zqwci5zJUSFSWB39JvWfqlPx7I`3QV@GvxvRFh_%Kw<-@-Dx?^|%*~@YU zJDruzH|&w0yMEWZRj~PSq$km{-Eeyn!CdS|PhvXy%mu#lqNDTm;);$*H|@8n4J9J! zcqeg(W+nW=C^>p)VaQm)KM0N1Ey=WYRQHcub_7E8)EsnRX+kDuJu2QsLlD@O<0}$V zAyMa3-8QE6LEadyJm`L=6jyUI9pAoL8#bMBU>jT4;!;Q%J27hM}h?=^^H|*Vi3);9vkuRR^RAT;mrim2#zX#dNmmbqM&tOyk zLyCA|RwMDsos+Ll8Q1wz!%Z11XX=mUH=6IIcrM1M^a$f*-ue@^DH=|^rrA4P5e1FB zrOWkSxYq3M!3+AC4lNP?k$h#uf%756@JFOu92H1C4Ub*18-21LLszW+anvfs(Z)kD zSC;hE<8f;SHCr;PRRAdxrgl<>N%mh+p|l-wfw0v_E~712tK^6F9zsm7gLexUByHySG? zG8Sw!aVbu?!4i4oPt7=Hv}ahfYUVF0ouD=B=TT0Kv9jF3erho`nUbd6m?*@`rcIYu zc;8a{HYc&|g8f6f!%-8;FiYc((d@>dJCr6#%NFy183Otn_x8c_(6X(>8Rk~n$Ggc# zDxDZ~TM&5Pb&?fcC;H-9CsU-Vb%J_Ze8hp|o<>OTpL#rt9gn4e0yRnNEFx3?7tMB>`G`G@w3Kfs;E>0jg123AD1*TacDdyuD?Sy20{A!bn zY=lcRvxOLLQ4M$-1CTw4&7) zFZds^_r9o3PoJx`{azo`EckRqzkhkQ{##5;j!~SOI?a6`n+lu07ZJ*GW7XAK7qJ#& zvX+9rNVUffT{n>gRD?^B1cqO-jt)9b*T5AsnreG@=J)$IKUTSa z&^Z1FnxDRkXA6G@q8i~o&+j!oRsQr&TV&j}>J06=ewT(H_m>@+*mOhXhmAhtjpU$E z(e+U9jZvW!a^UU6>RBJV2?%sL?mS%oacfF8D8GZ05r+?=e9}G>Z>SW1v3g>)HwbDE1g4@jkF%oI=Cfj^)jC&@k%W59bU^!yuiHi zsfoAmk@=d4NATwz`OvNr108ab{afrD%bCj1EQpi5evO~b%uz_oJA~EKv?qHbVQ4wr zPxNp1+S8cpN3m0qT^R2-vzOk_jjX#Qj*JsyF*Ugf*(2q@6~Y}+oR|7J;7F=HHS;4HEUW-V@t zmCGSC!`qoD`M9OOs;Qfve-`8t`mL$m)yd`0JDbsP0Vz_zf0i||dkQa?i8PXJ-`Auy zRx|smST`6?B89dLe0YDTR*!vD6~NEO_Z@|YxYXL`EZ(0{>c*GQHt!9MKAAUHa^@&# z<56Xb#*(d`N>fi%R(>SEtCGTla}BtneE{3j`GSIG)ZJ>yTd_Qdu(WDTA*^jIV2uGy zBgAqK+ic=Ad#Yh)eYsU<%R++YytDBp-bmttf&9iDUQvbrN3}aB5~jFagnhIz<3Rph z?v*QnwLZ~{+o?!DcMGEE7JW0#V~2)pH+$kt$NP$2`M^5^s2gmyD3`GAr!twh*}3vS z38Ua%*L)ck*uZ4mL+;2i^i}y1wcj`O&h8lugn{wavp2bKZ4(i$x=_}P^fyFU{@Ba4 zLNeA~b1ap;=xIv4iGi-X9D=GQ5iut%>!)RwN-T<4|AD$%{xRI}YbvKSU?urNR&<6D zx_q?0ME)3KhWr^9V%Jmk^ZR2PunEJMPaVPM5n})~mH(1<@D#7>E2~U_(?w>JpL7;d zVeDxj(%B|v+mTvUwGJ5QOzz3qec-FCTU^lQCno7Y@w)r{Kg`NpNa)$DY! z7&8(LJ}gML`lUiM-??&_gA8*-b@y=3iN%`p*dl{Ymwv8`7W@E6-uPrS{63SpTB%w4 zEuNpddx3NKJ~~~HRPSoc=BE=KoZl}dt(FYs(jAJf1ULrib$?g6QDROD8No3hc=2H> zqt)$i-RME`f1r1|4~ZD}%mo6Ml1v^NCML8Kt=4wf*Gf(=9dN8#Ikzae9XRO9$EGjT zJb}L0cfo2p&WgR9R+5Cz2Pm+kDAs#`q3&4tGNRnRxH$PpW0=p0k4sId48XnXa%=zF z7XQ^QZLa?Lq3}F_8>^tV5*rx-7(54Tv)USDfa2<(otG?Kn+Xio_{XLfX^j52^B(@c z1`9ypivXEnVDr^$1Cq^z;&6#rz;C4q29CsI&$rUZ)-{g*vFaOXY^k7S`Ow@6w8r#u zk#x{JAwb0uOGYIKR~FhrqqEwX3YAVZ${+tA$+czT6z=UMcpK(>88X{wY;0!i#1QUTo8EQ8@TG>fhH$`XcXH?WH zCvR<7v@VM%Ze@b96Sb0Z)rLVCxj{9%Qw#*)cKX%KshYZy=@S5`oJwjbpW4|Zwe9qC zGwpm#XDoG*xAa^s)w~0-b5jchF00CFo42ZHigAX4ZYvY6x)K&VUJ#5YA6bZs|Fgj@DbY3EZ9 zxk9gLf2Ksa;m=W-jX*tq=5}vVo?oEN@MEJ1ejfDWe96&3r9)RO+$o#M6{`>2;u-O7 zbn6U}MW=>sK_$DfEE2vigunD-+&iOI+YKk*D&R`15GHap)s`CXsne+CI{dKY7Hjlf z+>f6~mnt)!O5t0R5*+<{k!R}raSL1KX=h7RJEO}d=I{o|!KbZ- zL6b?9^R*LQtnY)uo`wy4>wtT`0J`-Si=7{e6V85cwF7`z)5h8-H@ZXO!~==pQ)RK; za7sc3x=6|y#wf)nq27YY=peK}Ol&}1ykzFCXXwbxMOA2jS;w%|JJ6bWrFeX1Z9U>o zJ}cXsea1hSDEvrH6Ty=Zj*CJ4qE9z4mbW`waF5>;`Ybts?Z&vj$C+m95g)4hM*N+D zW$EU<_q=w@UC^MEj<&ATE?PoMShJvJ0XJyUUHmj`u%+;_g*|h;=3qkus~_nsP9M} zdZ)P?mTXD97v!?0)`?J(9hqt8=P{c=iEO#5>!5Y)!e-s3!uS`G(Kc6LdG$M705T#4 zATDMb&hF>)G1q>On9Oqh-l+vMdVhV7^6~DVJ|(Oj`b3RPq(eR->bTs>7v`m?m3-d# z(Nni8YBa2(F6bvA!ELjUnz2f1p`Y7NBkqca8k_0unlC3;Bq15sM?R0-;i25KgU(^6B$9NbbXhqqk4HzBcjc!vKebl(Z`PO`^07b-8@ayZH<%9o ztsHSouvPIm=%d{wmvhpy(z05_(MtB=CMvE(r+;aVwbu3NR9H;dGgRk1f%cqB;?ZiT zA(uGU`myZ-Lgl1qe*I2rX_-BsJ|Z)~oJ142i_DxFB^=$GtU1~XtOqf(Li>9>Fhfs+ zWyi|ml`y^uZ%tS@vndon|!Xt@=#K+6|d(|7Oa_7?@In)8@ z4Tf}RyThR>DQj9EA6Z-c4W>oYs3hm*cP&5EtCeKbC35+8YisK^t|4Fe@E#xX^4rFm zmBUOv|Ih>-l#Jm`%vhe8@t6$}$3^zatfSa}@QM7G*BxTk@F}Ov!@_zRrf0kiet=)% z_f5;n^(lLIy?Bub*6-ET@oNjIu~p~lR;zI(`@Uc(H*iyO%G}k}K_`z?yY4oX_~PZq zfRA>#Z$*Dkc|uXN_JXvx+TxWdW^$jp*IT!h=s?(665fr&@33bw@<_^PBaJ_8f1>cD z`3vjk{sR#>Hr>+06A-m6ERF<5QQF)+a83X3YSlWTIKhHPAr$PjGT*RyWWiv=s)EJ> zyE&SyY4H;ks;Kn@@%P+f!i~NdU+PDG%yXNkPOE$KF#A(_3bK$dYb`CSoLoQmsh@1y zS87ejDCQ}lW+TBQ_aCV6(28Zhfao$iST!s4Ywl=zg1@=%Xl1=+6pr2peP5N~HO~y^=}O7QoSj>~ z-r0HgtCR@^gp$x-C$f}%%eKbK1u~u zKXMOqhlji^UbcVtDa%)Ab|ZeGhI{jGkS3Xr>?4A9-z$A1?OaA(wF!x`TM?TrVddnA zFOcVMYn{4)w@1(YO;t#z8j;;Q-1>yMl8FQ*6Rjq4t?$qTEp~a>N~6M6-f*_Zdd4>}_@mev*-Hj17D zjm?GQg4sjagC!rbgI_}H=Cvx!c|2cowcuZW=9jp4zLG*H%z`%QkOfxq%C#Ork{rbyS&L$51!(%@KO7Qb3j zwL#lVC$BWurAt4V%>O_?VYIJj6o(07yt3&s>*Xg7-^NZ0ijlG~nBLyO_KQ=giPvbK zlt^r|1{DMj#c51xzpB~W6S7Fs+rgxNN4|sz^5ZhIn2*jE^Xd`u>kz;KprJ0qUmRBi zku0);`=*(|PTCx;l=O52TW?Rp8?~2-A9RJYE}bDnB&VZ3$?JPi;I|`oyGlWvC6AYj z@k?&%@6;*j+QlPTQ1hlY+wYb;8Tmh4|A7M9tM`s++IDGpM@qN@zP=>=eEn|Jjr&AP zJB-+Ww7c6rrL;N!W$Hbq)edHWf9r&X@(bdNIZKk<$!%#VrZ7@-1l6lETB(Rn3b?2CT8hB@$0E7dN`Y%*|-( zhS@;8ySf=I;@JW&b~y%lI|^QUafno)74|29L9gy6POItL z_c(9qE>b~|=g$%Dv#!<77cp{dqU%wrhnoR#+Y!k>AZ8K;N+K;2@y;`aMI)yVvZr7#r^`4_zss?Iw}Z`a^>I|D|Q?6&B&U507YhUCU^>>D_}s2Q|y(9AT9V$=Qk=FgedbfYWq zv++s(u4U(*i|O2O(W@+Jzw5Gj6)v-?fxFV)p{{9!o>r4;ddzk3LO4TNs&V$lELj;P z5`&|V{6kv%a0#1psO;-GQGAKlp4mo0!9@Vy$-?(@c(T;_48nh^Jc__HJ3pX9`**|& z>=s+O$zmM?k2}9W27atOpJ6rEDR)p0UqB?@lFf&s%{LNzDJhn~tzv?wj=N15#W{RU zS?~?)m~6@2Gy!Dd!ils0XZ=9B^V|lJbep_+WJ}kZ;;dLg?!-<#=uO$U$Ct)zcsD(G z5x7UXIpPzQZN;O6fYztXWZ{(Sq+4l^*{~|1E}@(>Ks@Ol_)=F7T$BJ{L+786rI)3K({Y)`FgVF8sq+#6WzZBGU2SM1P6!zw zEI60|b}x+PJySO&KEM*DtL;dos{@h82gJzew7~KN+!Fr4ih%wdA3yvr5R6e-mI({|XF<-)c@6Yu_gtA0*ptUK zWF67Gb<&0i zr4~(zO!t3y)iMmg6$gWYfTMAUSU7bzpp4FM47c9Z*(#Og5}ruz8#RrYEGq#HqRLLB zdXui&IvQ2g20c}^{|=)VKs7d>i>o^m*psunReNawAQMv(c_oIS>b_BtgsAqSmTjS4 zMnwW~K6tCmwqcmLB$2BGucNa{fZX2B@?t(cHhu!Ml?oW@1f>C*ESK6#4Gt$Cku`X{ zs|czR!A1!1U-iF6m0}Zsm!Nrj^2Zl{y&_xTqT5m~vo1zqq;HMPEym+BviB zdypY3McOp;562_|L+|SqEI)ZNY>IBSHf5st$eS8QxUy>)nwryIO+4F|z?}_*Rr`=R zGi(uT$8+vEEg|aX4t1G-AMS-Xb*aXip#5U`Qkv87qiB?@*?5EVvx{eeDQx8s{W&e> z&&?l&)n`J#J-R?1xJMyX)Jw?(?=U#f^P=mlWwh8IW_7iO-)CNt=O0a!hGV^vc;eS< zeQ0)d@-t_V8!Ii7_r6+s(9RY?6)ofY$523>CnVge8MX=V|O5)Ui{*r&v`GMCZM06tjfO&G1Kx^9WiSQSO~SHv=H_p(t z!KdE_8&x$8!uw4JbXpzU7;3B~kiaQ}<>YP^b9kvBzJ{JjNV<=b(Q@lYNf?oQzM{Dr zB#i%<_*w-K>~J!36*_S*T18v=_I&G+!a5xLj^%b{VH(-wX}0*;Yy^Dv*LhTPa{Xwr z=GBx6gJn*~Hq>QxO|ix|E${bbU4nV5>nM4j*(=mvA+;yg`T|L^a)?G#!!##reINH7 zt~w8qfR&hgLHHhFt7~Dtuu1FF_ZO~`tf|w_>-&fRb5`XbftSk2#C|U0(GgVCOd(Kyedy3KSq6WNuc%=o|vsYV{!|+$U6wk!;bK|Z#Q8V1RkeU0p z^b14Bdh(P6!cd|Q8N$#vy`9WM~&40a*tz36b zEgn+E?l|LxQ}3GR5i5BW*#-mo+Yw1taFvGlevZq=i)w~?sG0jDmT?)0Y36wxo}x(f zmNduSRf`WZu|7C8x|F#0uOZTsu$#9Nj4d3FzzG&qqIMVB$JHnbNK5ViQCiP zk!x5lOfJF^oDaJs=R9s&#XO<%@oHY6E4iC4AZML28P9*GepgBhamLd%Vdbt z65pftoU5asoY|_pnPVLIR+m!8J0Jr0v)$AzZXt9qwIEq+8?f3$W1;uIF4o-}TE$iC zclRE1t#v)DvpY*8_zxt^cv?LyqQRx|gNMj-W#8%rl##@>yiL`OMeth_dVWj2-8YnL z=2_6s15<5mj&RvZWk@ZyZu%;>=I(-)u%SsIG(&|gK%z7kAnFJd_F#mBaFfW2+N7!& z*-VHTZ%Z&lHg2W6MFqG2Mq;4ocT?a~pA3bV9Q#?(!iD>9AE1QYje<EcT=xij2#(COQVL~NVV;9keFg{BCyT*N}9nT|kLz>@~EfMFI86;WjCg8vceuy1hY z2A_nLwI(uJf_L0AypSM&a>{E4pLzJM@Z;v?bt&z|Y!-hr-_ab)y;EB?Z3A+1ApiX( zdm+@+ypKf^wCa7oYcq*&Ufc2s`C;)lkz6+Xoe}qrXCU84(WVAJku0!`u@ImvlQ{ygB?Oe`X3I)l)anUkhH zU@F>4)Wywgy?ZYd(G0>nBQSEry;KB+%j){B|gc3;iK=|=E)b!CEd1KdBr9!%puLslNdQB>KEx{%l+p=dfoB! zC91FXBE;PmwcM@8o;nQ-+|sl_YTc1KNE^|n4D-{*MDFg!dVF|O-TC)9o)+R;jL~h& zuh&nvLB`Lt%JmLazZA6uWP5n_{|A!Ym+TROUWt@Tb_zidLkMp2?`Bhe$vEMig-1@# z)n$>mc6_zZv2AWcFe%ya8WSSE1h-s@b}d5)gyheJ+xmOPq_$d|Al=f!fgW4V_i>i= ztsU*DCLC{+4>)BpLs;NHNuGr`k6h%5vkS4{NvySpvf_mY8flW`rnXIHHHm zY9M{7sH4OLP;-biOAB8*mg~s(=s^LaGY$}N)Mjb~{v}W}a0eoA#Y#sxKGTz)Oh>)8 zb%cv#1BFE3*cb>>a|H~?5uYHjreIJfu%}oTV!>id%RJ?2$Zj3Wr$5B$;w7Dw$G*0S z^#M>mL;!Io432>|or?|B54}}wE1}Zk!%RlHsumEaB7`0iLxJ1Vy~$BwXaRn4T~RUVh7Te z0_6mH(5dIVX7T3+Tm~{@`6c2dPDm3#AX6q~^v-0MnZ@9iD(1ROpN#3Bi!JrTzh6@lWTENj8pDv6oLjM`kx`{0k$Jj8L4M%p^^nFaFCynb zg{?LXu~5*ktEL4`X0JyXysE;Bt538|kl8cEJn!sK5(uKbac19=sa*Svnq0GI?ZM;o z)}M6MMf+6?p)ug01=+@)Lyi$_ZEr|7dB{UF*bjV^#C$YUh3Wr1liPVj3^MPzS4a|d zr~=1^>3VZH_*E%!#5YFq$>~|u3DRqY-anj+?QKBOmE^?`)vEVTI#`j*x8x7^C9F;B zX&2S(v?yOH$X#ALwzr8e^nAENiFwG7^W#uSSy)fm5Zvv7P}w{3Jx3eqW0)G$n1x`d zHy=`KG&}C$X>3LiqxL6ZZXcE@(yvQlvl(u{f-(KY0fAbTFRhUG!g$BKZ|3DynAu0K zbrUob?~hWOJZ4xlb#OY9KP&+JxURf)BUL)OFirF7mc0bZ9PEBR6(s1+zT})4!S#B1 zpn1=kLnG3k=ddW{%UvMpC_Ut=F58uSOnNo;LgG>1iDBiwd7oaN`K)SAsglDkHk5DCQO;pdEo|DmW z+NR1MLE|ife2f+Yj5j{0eG1nX8#xHVIMhFMvpb)r_F}bLl&9momP3?-3HGS0g?m=k z~YRgzBkB`-d7 zvwxduhd0<+Z*ElJ&$YbSNcA!EmlbB*Ww+m$nc1+{c>tSla8>V*F@x?U7H~HhV!7)W z!^8WoR*J$g!^doBC#0ok z>LD5XG}jfs^JwG2(K3ADtI@cNl7EAejV`~i0^V)B5$mMws+6guPCBY$W% z)<{X5ZRNc|9Q`L0y~5nYWYmGT;}`KlDz^2Wqo3RECoi~t-tiCX%yVd#QeBDQ8rwW0 zqu+E*?S^+NZ|iXkM(azI+|=N%*nF@U`?B~sGmn1$LGPF9^O(j#cS)@*SCUk1f>aHS zr4(QDVeVu2NRq?RwE&gu$0w5vj&E(Wi|atW-X_UT;2_s0hSB!gc0wNm{=~5Ies7U5Zu>ql;s*2rjhpP9nO**<$%pP zt2;iQ$NDK{J9F>EEx~R)$r=HXeG2^N)=H&ZnQF{6obLE~m=Aii5d1mv3Nqp@b9!ds zWJGZaR*K*F^TzXj|7)wY?8E}jTsYe2ZTy13PrR-?TfT|pLVW_b62t0CzF?QXbql5e z)KYFaA{xG?ho9RVWIYeK2fqhdd+k0sQSL6GBVAZwKpcFbxKtZR?LQI8jThFbyI@E-I;te}FE;tWw7ukz_l8}2)&+{LDeh4j)CjH8!{zw;wA z405q}M_=C=Xnk808~yxD>eQ60mX!n}W4&VE$Qz%e%bhy8na6uC1ZtlU;kc479$U+W`poct83a7{lPk-M zaeK^r%5pB+dn(cI{+vXM&UU^X!^}+itK3_sIYz#tjj2;D-ekC^ zJWb>N8{;{a278PU#o=X*%2(1A{^gwvsxSENzRJtdEoGk47m=ZW^OLA~|A6~F`9~j{ zLvGQA!_DT+j}`T_Jz6U=X@6F_b6z}y>dbu~Bs=Ab#;&%V=xAyd&Z$sm#n^DjKaa2jZ(06iEGGPUko=xJv`6gy3r`w$e{i$A z*3NG{bD%rm$zxc7A+Z54Oza;=uElA}^0R0^zjRwRtvph)R&+A%N7UY4HO$49uBYq9 zXSDdtglLU3k@U0uIL=l~?Uvt9vU1uzwzRebf4E=p@Af8EtLKT^OcfBC`^kaYwHU%$ z(rMm^cnr-rcK2SRp8>Cj(rQ@bZ&(}|=l*e%fn9udDQrM;lW<|#ICYe`5}Ypp20Bz+u__h{*(f2Tf^ig271=!J}e<=Y!BcFdM$ARrhB0L}5wn%C8VEVC{8q%=v#71wDwMvrkq&gxkar3f@-ia`7mIrfg?*RMHF>)uS(tX;+?j zD>XA&TaZvJH;~2-0}l)>oj?OervnE7F_@>4NGu3NUwJWaI+ilIXD6YHb^*lHl8NAD zs0y^nVi|dSEE% z)?WsNDV02|niD(yGR2r!TogfE*DMTX9^s-O2UL3&*wWxHTh*{;B_rkt^4$;mJ-~6n zF*Zk21f@LyB-V0twNbCjX zPP$?0TJwY4x(9~nR8iejl_adesk-@zLH=YXn4Kl2qY3lZMO{F#w&s}dp7YpI@nTsE zm=~W!Tu&@MUbwNc*9}rf`rE@w?z17b>wy<`;2w`iyBh7Mp)@<{Pv{7ZYV-is+x)UP z3wqqMei2ktIeu|>2w~RomgLX=7q#ya)qa~v$V*UN9v?Z~7H=Yn0I*pG3sFl*X+GLf z*iY>bOA8L7yk8tS^i%ph`(*=mxbxyv+TW|CvbMMjCK2Xm*UcNT-NS>$eg7vSFfkH; zrVv7A?B@V9l>1BFDf#k$cs`*x>vd|7Dc{8K)<1H4eTvhG)7l`DX7-9(*{}S`ln%}J z?_waj*x{l|KVkN$_ac#keR#O#Dl$pL^Fml!GYpaS1INw3zT_shhu2BgiAr30y3=>? zc0L@#?JqCI&)(-rfdbn0%QtGavf8_^NGe(|4s^k;k7R_y?ovZA?bVPC^JZPn&li7_Sk*~SM?0k6D*0zH#|M|5X?1{+ z+Fj)HsxduA7DY)+M$>6Vywaf|gPo%MRIGxG{slU_>TDA)J<#ly@42=SHY=tpp9Kl3 zX(>R0drD%CXJGCc}lRw7Ml zSUy$0Ag7RUo0wM+UQMMWG)`=FWD0}2OgXC~hf3KH!kWUiTp>`=Q4B|wW;!xJvj(A% zzgl{+Z6!sxcRLi~toJQDPha0n)#{)IJ3W*G{idP zxURO}9?DotdD$7)lHCe`*Ed(l{Qm%QGkO1hrJs)*b7L#cp7N20lGw!U ztP(>{XGOon`u?Tpkj2VwL+yPWUAQej$8~#@p8AG07V3vSN6gWsL?b|IPH*ExoAplH z;jTNmpW!bvd#Fhg4d4buy*It5FRo%|9#>=&6P_cRqMER+vKJGZWutc-BNMibfTkG5JGGq=hH^eZL$IXlqI>)RpgT4)0?(Sv_yDmy`{!60n*#w|dQD zw1V@T^yg@;^L>x#PBUHFe6@%mu2?Yv0cj$@d4(>XuT3@GtJCn-E~1Btg$Zuhc<0O4 za_0$w`I$Z+u}M25^<*yNs@mj1Hejt5S_8)9jQ&IyHMP!|n?p<22d}U3)QVNw{GMEZ z^i>A^o1Tfi?~%YD|GoFfA{O{TtP<_v4@Rg2bzMbXGN+rekix}vSt;U-^gTojIXjMH z7l(%>B;YhU=Si%+cw1m)dS)TsOK~mLWm4*}DKQ+#vNx@5!9(&|W=>MSDt>M12s}|u z>A;XBIxm($7P2LaUF#iKR?Cp%^mS1sp*PBM#dPUaixS|4vw?to86v;cxn$`el-gnl z8alTTVD@R4phCCkaE*J#9c>JPUNE0oUn-aM*xWL1wJkwvFTnJT`omZd-r-X1#R8T- zh#4&Nj;cOQ^ar_9k~i%`Y1KFSnDV@mX@GXaVCg#2Dzc})t?e7Pygh4a%fwRov;Vqc z3&WZ<72DjeUhbr+T68P7mgg5ucw zG6boCZzpYnfR^I4%z;eWA_}EQJ`s}0eoNM#ckn%1>?^?!d2G0SKYa9U$}hrZ{}hN@ zz!mv!1x|q{-5-+Bj*MX^cQ4IBdmZj)=A?aAfizq~fo#Zv(Cyy;KqPYXFY9k?bY!^Q z{_-P~HG}Z(-A|3WR!IE=H_`|as2>HMsy(KcHAJ5p$SidmyMsd3&E1fzgmOo7>zO#& z3laoqbu`V!nwpj>h^V1G-PpKknHi+*-=6UcS1aA-#O39sEtoPMxqhnf{;pNi3+#6q z(p>;YRF8fJOYF$>evU+#M#ymRpNxOHldFylAJzUmi=nh@0!0 zFE>icXIdd6-+dh}o2#4%*^oKs;%*`drmKgqNNQ9C)V7iBfk2-}C}B94b1#6sxZ&)3 z0~gZZ$yV{CyQKs{iu~KOD3I@Pps(7&-z>1&poR!l9Lusu61(R&=R0w_dda2n1TcMWPUmgKmLPYVaV zRO_5RH8mkFTiV4+{HlB>M$c*9ZDp+fasl6!z=MdApqo9o=najtr~m`%{*B9erC5Pj zP+hFZ)KS3YUYl{AvMTu-A}HA#{r-sIz?d_oH~u;|(-xD37>7nnUrMh<2h963dz}4C z@=IfXZ%pV3Yu0L7{{?#S!t(f9WJBl5j#T#(dcYer7B6QRDvBK^*#~GGI1xVUdMyi{ zL@B&_SE#d`FEz%rCt2MmW$?~?t&u#SuvD`b*JQiaEd8p=z}bd&(oYRg_`RVI_56C*N6(CA%&oPvNia!A-z)T0` z?|*zgSF$}dfG^+;bpD?JuhrRQ=rnc`C`T$9JGmT~JQ+$2_~Xzrm@l*ugnBIsUMndi zBv#ibH%OJrdrfu=@&Kp;m(O{nfDQ-+(7M2T$*2tdK5?pwtvg|p1;dhxeU0Y>B5V0a z-~;*zz(coGYB&k7BA~}g08jK2C;&H)1^m|fAHVN^Pv679B#y4_I1C^G|KSF$;U(0i z7{L6U{u4@u(gL^)EFvRQOl3C7J^HWor>MyZiofC2IjvS5aEqC8BJ{0|W)0YDV4_Mk zU<4C6BY7GpK-;HDrpSZYah77HONf3W^)^;>R%YKdMcHKb+(^Qii#Dpadc0Naqw|&Y5~^QTP03QjCd&p> zVz=Cqt2cjH44@r3}Dsz#7E?he3sZ*(MOzh!&NyH)yU#lSj z{ckpBbH9k1;xG;Q!|LO6;l>ardgUYMAnkE^lTRSd^;%@)GoLoNE795yl)`YGA&zc-!=PBX3#%(v6*((#JI`+y9=|1 z!SxmzbR~miCHBaWfh+NTp0tY5J`dygr=7)=Um#l<9vk$f{OrlU$)Z?}J!h!?1Ci?M zDJPEL5>Oj@r|qX1x54;SZjAHMYpmi0cEYbN*;B3f{zT$(<;lyCs*^Vgz7kjai76=y zfPANn*;R1r8Gf~GDD?MM>u2ovzepmvWK}@okcCqgvKQTiU2T8O+u+ap&Do3I@%~3_ ze>TY*qV=CFtP@JMc&f!L4P*|ERE!CB2M<@rXVP*Ffm|{_gw%QYjB9@h3BQmj(9@0! zFgzJ@Q|E!cr@Fiptx2Pg7pE`u-gD-Wab-=x=`7T>!p<$&H-#4UAB)WmD6P}dCa50_ z<{ohoNv%(`?c05bB=gSerF(lf^V!s2YI;RqJgA^d@nYXH`JAhhiixLWQ(?@Zr7}tG z`?N?!B^01-nO$=hdir@Y#hhS|^hSnMD_d_dSHIw(mtLP}{y|z+>uvwZUegQT2Ki21 z9nqjAag@$Sq!maSJl&M{3*HAGs$Zxq;$#|2$0+!&>3Kn3oG2vN>$D}R>I1QydY)lK zB-52-ImKR+K%zMMjyX|mu;AE0uGK{;O=rei)1P(LcVKYDq&1bx__+e{^9CL-hz!iN z+H4R*ie#b3I~R4RYZ#u5H9mqB6bN(7yg=GUpRz4o<`t&SgC^YeB=4PynmSsMjVT+B zeYAP1J&;3F!8!oc-S&JQ?d)!9@GmPwtzfO6^_@0XaougAW>go8k7E`Icx;3s?@{BzwB#jeh3E)Am`jlVwXE%@|IZN)eDGrTVf&i zm&$&&J)Y)PJ$Y8fKoBbQ>L89PDth@qixF-UItuJ3)Ay86{HM!itE&Hjd@Jt#W4UXI zE?*UVCr+Vzb9rfdXln4aY;I8T_*t4okoi5h6{ga*7$C`UDtf1P$L|O!^Eas9^xU$P z^!>Sm4Ki9=Y*71_Om?Em!H{w1d?z|8I`h63_WIz{EQPGZ!Hb?^p8eY4K@Q+$ZyBiY z_PN_2&Ww*}zs-g?*9XOvL~JVwrSwq#_)>!qgy0FvV-PgR(3c<-%ALfm95On(5EzG_ zRMS*?q~X7uAVD^*TA`>RV!rn`LLG3;xp(75b>I*7&Mvf942mk zKJ)G~zcsu#g%EgYaQ*%8FohvOE?sT|`(|WzxTW%zxjn(nl1`G^qANugUYNI$f%HC$ z&+lyEwbgG%9ZVG|o~bEV=j#U=DcM|SQJj7w%+^*df>=(^vQcxMyX1FEzj*3+h3wgR zRdwK9uy4rU7$WDYC_UT;H+S7e);cblu@7)>!e$)8YZ5v*`|!uUI6?|7jvPkSTY!*k!%h~mnNE87-ef0j^7il*2n z!!JIuMr`aihT&Y4Pnt^9UMMZVk2Glb+)}+925nO;f^wYbDK7+ubJymA_6ykcbV9JoB?EI<|I7Abf?Z0YR(A%U6y*xYqx20fL_?8g|ON9L89 z_Fr$!{pj1LF!taKY=QpT5g+Iw7xe-&G9s{q&Bn;pf__OCANJO{>64f41kY_fma(mO zoZPwFMRpw5wK6F(+uh-bKZb`Q3?c@OFzB({z5FP@n(bZ-_0wc5s#RUzPA!?~M|TcD z-dYM!($CI3E%J{NEod|oZP3>g!e&%>nc7}oQKV^}Xx_2sbTD@^g5)c8NbbZ!&CJXi zskq}%@>o9mI)H0W7e)VrW@v)>3+m`CGMb(7_mJ~=UwrTPHygfHNu70=f$*a z`-5M4RxD82eo0DIKDKl=74`OUc^lK1BWFK~Z)vd>M$>OyQ6s37Y=zw-SH5eBEcub+ zm?|(o@#j!BU>i0f9G_cr>`?iAcZBTEqHe2ih)L)fPCm$x{8>aZ+=tb>^J`RGuPp_hAkh{l_u ztNNzQBljK}{LgEVApJUvR&RsLoR8lcQyr}dIXt+u_ZR{wrKewH;O^cSF_kRt>khw| zpX71?7?x2S3qLHo)aziTdv`EHsdS_m(`I;yxas#-Cg)9*DU?yeyuDd;E+Ydm?W5i% z>;WGt$qWzt;);tbGtt{r;_HTcL@t&I+Vd?6PEd@>8{p09_Y15R)07Ssm znZUmhB5Q?+k8eiZ(;&RKB5@gTc6sU;(9RVp!KCy9^Fr-qSV}Mg^G}0g|2_;cCfz~v#NzY}6_#Pl!R{}Fn z)JmC{bh8-lF@W+0fU7ZCXlf`>Wv2X>A?e5e6V!kW4LmbotO=N7B7o9?ls)+xCQCLz zy*KOs^XWj_I&o@>79>*o0|=4q`u$VYAK>K$5!3&o_q+P)y72O8xE?*p1e=X@f{5dW z7}ULnA#~17ZY60m@{q82b0_P@Nxjnwpg35y)!;ed7ls>?5Y!t4W`f7`hP7>ys5WGpDHQ=FUMXp!hs_EMM1&x$)2SJs4F%pW{*}8vM?L@CUAf?G3Pyay6Kh{ zk+el$(o*V!K3-PZZjf8l`EBX`ZOdzPlCRha2_55wi1_rh$FcmHlM(0qAO;&O*FUhA z7E2|Hznx!VyvjD_snBJp!P>&DuB=0&So11pmZw&7BMb#yjuB?pMBmzht!w^E=4Lr4l9#w{~J7R)>SN ze2Hhrkh79#Hm>#h3A5z*98Td)QXbPl^L6Ib)H=c(1P z8y8E#jTM3$VD!aXHRaJ;DmoQM79!dU$2JGlPwMh)pZ*vc9gFYbzBlg8c~8rI4LiF# z;MRp-$Z<_=-S}N}VroW8mx1w6Y52i*=l^C9ZC>JIxfNB9`%Rhk1jwT43TT4%BgN!% zyezxEEATAT^MI0{Ppf4l&xwhpU3=&l^5gLXq)ltcRGYaW)pmef#zPlKM`Ou%lcmcv zEyEiUxx2I=3F?4} z>+dr;^p>GX55^WbsdN_82G&U=m{4w~s1c)-zI@B~0=vjUui-eqyNqwmq&m}0Iy2>V z28FqIGrA_Sl+iNeI?O*xr&_5d9Vt;M(lYz1qA%vW!M;vM62o=}9>U_G0PNXl8=ml& zh--YvZNwN>rIb&?*H!}6<)lp-VU>-uGE|CzllMbPA9v}ztiRuIg__?I8==ZPz9Ucl$S0?%cbKY07q-2Fld>-hqz>TqS&|6!gTcbCb;_kaQ^&hGa zo*9KkE! zbqsFpcV0@O<`yuj&C|9zq+=+%0yjMJ(^uo?9hT2!Z6gdKdlkT68^&R~#$Dkl%^huo z)-74*&yjDxhI`Cb4c9dgZw_3M-pyguy@f=UxQ*bg2j(XI1h5W!51=?_fqOE~SZ>BH zwAT8#8uXog){5@?bz?D z{2Fsy&SlaT@L#m*CYpCkvP7KM88ErzYw`+B2X7WX8UT*XU*b&B(4A-ux z?VAm}l5hI!JjoW#9$%EWrmHs)K_0o=+}5>X9^vP)bTaD6pvnd+3#*0-yET6e)c`l22~ z?XPeGS!ZTq{twi9e@sZbO>Wmaq+!1I7|I481>p%;>z1J&(79;Wm79N0;lj@R!c-F1 zI$GWp=lb6w>FxNzoWYm~i&6aBR^BVU`E46pMH%^vK8|%vwM;D<&Z55~Aj0n8R%f<@JU-s-BN~_;H zQ?8hL_|Y_b7-wkj1qYQif5rj>k|s4fQWiU z?R7RSdpPf(eaZ3^nR&~*YX{e!xoa>dx_v2&pq)BQ^t)iQL1NIBzWbhgXPGiKRBir6 z1!~Q&SO2iC^bo2Q-Tc%^r!}OT7u?}X0_P*A{O6YVT<-|aS*Z!K=V8NWy?$FQ<&QP!J9L+<+}@^1-?!^1Q*D{E#CJV*IL=@ zRT_VsSY!p+@w0xKn=o56_qMI{LiJa+KI$R{PfG?J-&W^V_2xMIzFzPdE9Bu4Kd4as z+KFF!#Ff_)Ba`^YYgBsRCz%z)hyr&27M?8nB>?h0<#X@xckuvBY^XBr~fWhP%9&h zjc9q+jTHp^n)OVO)lIreS^4!DQ+o|bN=tXMZ^eD^Jf|}fdM32kn2t>sMqEm^Jn3e~ zot{-oe;GV`Sz;EV9F*ty6ryXB&j<0!cvrqt?mDtE*0^4l1P zK^A;2kTO~9mFKJ;4OiX?RJ8;;*+$TfWaB-A^+(9U^Vk%?Gocci z`AHn^tj2x!(k@r`voIEUI7kDyF^@wk)=Fb|J=x(1g;gR#bVN#G8yv9%AP z?<&2v!Idi1#f(X^f0{6Bbu}|z(9Q&2eH*z0|B`pTg|sl9F`}h>QwVo7l|QiWsZGHM44K3M-YOiBb_vM|DU<5)TPav* z*Ei5fsVYiFTavo~3cN)D%c4*QTIfl7S0z1E%BXBBI=XDSQrU!81c+`FIT_-|?xLLm zMO&nWk}{G-k^!SCB4jdfpz2A@y#tp=gBWBlfLu063l4NFp;1Ur5=_sTL*Iy)5dBII zpt`C9h*}gh>fdxJs)&IjSU%s3_aBwk;fVo`)q$vO$E9F^&iKf$LFNtDIH#GosI(Qc(f;-Uv*S^e*;_w7G zx&Ukl{HTaLR$EvW6bdA#WkJ*Ma;z`tZnNw^vpP!OO=Su&i_6U7kPN&f{3gv-e8v3e z1Z&f(YT9mXGbd|;jfiAbA4kUrY}HJf&Wk!!J9w+iy-CEzj%Y2LBS$fj$B}Z=3*@Dt z$H2DGy7~mYIr*aBr{{DIo&)2ItP+BV=AkvkDz@CDMae}MX`|5U=76-V;dp^gkhS3X zm!LLfG5IJKisLKe!+I-U*FYO`U~U zxiWc;zHNp1=Gcm|Jvy*YpA02$f0?=Q4&V;ZricDhQtE}-K=aLf-<07*-p}{Aq$^NQ;cDENf#~eR^=x3C3@ImY^%`pDPMQ6D0auMfr zT&>g|jOKi%M`R!6tRCO^zK=_>y4lr4oV!-J`_8R1n)P}H&XJBWrW3QcPCxiYB?u-L zVpcNsDl$as5s6V*gtm{-x-l@)E7IX&t#|fb(_)U@8xxwYfEy07&9BUuAqotM+x1gj zR}c7)9r=WvKc;>woy9A3e*TUUAtGMoJ&X+A_2>BXe3f`xVk6T&xkx5XgKx|Y6KmHLOb z%RJ)ttqw7t&vSoMX|OaVjvh9I_Gkh5Y>WP`B}?qHf+~NVFv!?g`BI^PX0PCqYgV#x zvuCSJgzQPf@$-I$z;*4(Q_ktYOU!bd$;sfQ`R`rt@Yt0HDpOK-#F`pZVJ<80@W$6r zv)zKz&9(xu+pZ#R0l%w%$gJJ!Eo6TD43X~u6?maIzxw#zAFpw5kBJk{dm*L^HV-Cm zg+Cp+VZm?ImH^8r3=_M>4!KZ9F?Px~-!0_BXG()_w*Afcz4+_aKu2r5T=u?Gh<)N+ zVfBE$2ZV0QKSe5vHMTqjB;K~3%fH>d*nHK3{1??aElmbFa@8#r0BhDkqv#v&Ck0iAEI{ad}P^vxB-GRm{ zE`K4q=D*U4tro7{_A6;IM`pOQQ|uf($bH7zE%8g~KM+ECaT%_5gC?m;k91O}Vk8P) z`#zoJGSTzZ%c8K0JutNO0g_Y*e)8}~0VefTXV1|(pU8lb>L02n9|8`u`W&F0_V+$? z07260A?ymDEWT4ceL9co_z#r)7PT4p_Pf|Z?e^o9os^}##OdRofDQ5 z*XJziQCltKTsI@;#*n|1Eep-*nPr`huBwpjdhaOPKD;fm7HnTZqxQGAYgZIzT`gFm zc8_&O5vsl1Wxci{erQqpFl3m**M#~8caZ&;*k-!wE(Mrqg}W-vv785@aiZScEwW}k zshWu0dGyhfw0`6qB@mFTI;Nnh?|W>ono?zyTgp}y;vEuHxM&!h>eI4KA*^t6U>}^8 z1;Z;RSbe=)bW%%3sTc^R=I4yss>*&%o7D5wVpxv2kzO)I@GWUywdB~Z3!cjEbB9;8 zksSU!5^^%P4gi!0`<^`- zG#3BWg$>eI7auNHPiP+8A5@T&p0Sy0e{_;@-fm;VdGq>2mQjlviiRO?9Wt*HC?k{9 z_Lmu@F2M@?Vviya2K>LPqCCF5se;)or>5gJg%)SJU;{ITZ>SD2+Cf?*THm6acToy05X6U*xqgsMD)mcCeZeGswE(L+R-wF{B_63`5~xdwLa#q%pR))}ck zJJW{0i8YCSOk6Jq(e_W1{7MNL0YX1N`DK*)z&vjEq|AfNb%q7*?{6&6Zu+VVe_nj5 zhhUssx-gG0k#s#eV^tM*UMzy<9<79wU`;bVRkDc&$J5>&a>9!*-(qh@+wj8}7W z3hX>>a{l1on)(v##$=3_S9Wd^cqdQ3YIc)KgL0LzhYUGE)&p7i+~=z3cCOb`Q&-S$ zu-u)gO%*eK%E9{nkNP%bVW-2DxkTK%*~}m6Lzw4vKO!;=rr9T&#+ydlYTgL-T&uPi z8SZ4d4>E6ve-NZs%2n7~;yxCF^S4V%G7qI~KS0Qk4e!`(&J1ruCfV|iGSGLCnF18n z1lKJzar1^O5?GdR$Cv&5*Fv+K4uYw(x+fAJ5kR~C6}uYhlhVWtw(>1}COZzNih8>h z4K&*l%|05sy_gf~NQve*Kig^)FJ%xi*4}FV+&B~0jN;U=mN(CM)12u=97{8&^2y{I?uAp3LvhF^*q9`zwn)jV7rtzG@a}DLS{qZCo=XJ|Uj(?Zg#2%yGHkGX)HgvO zf-FT(f*F^sWyhcufvG`3L4eu80|Z~OsA51Wa=5Spu`q`??Sa{6ECuMd#A?KleK z|3OPwfyw&kE76Gn)dNUB$QK&Ql0B2X@a&f`F#VIGj3>Y-1erPxf1u8YD{U48T7I-5p#O~w2K5Vq zLG2|NOw{$XW&nuURS6i%lz6~~cG4F1(o(;wfyd!^)6)UkKRq9&5I{OQRV3-7;t;^# zAPbVk6q{*nA8+Yo@uI@YOzITStA1kI@n!+mvYt5wy`>}zHZ$r*&q;d4{=49HZ7nFM z9PO)wqp92?tUciv8M97mu+jL8nVh@-nY@<8YWB!tNU?6dixI^~OnimvQwf#hW#4aPY^6f=QIev*jn1n88wBnRHReN8agu#oS>^u zrIrXRKpruoP$n>y0;sK*BnHoK5=yOkw85yi#6O?hFFGz}x9wEJ)| zelGfKZ&m7<1dOlqFm4NAail=MkNb42^=h~oZZ5Cen8?y(V~5iaG3XSGeM_RN?SX#2 zZ-a4YmBOChY3K~zLm{e_{iF`-8uhV5ZZnxKQp{+z6b9l~_y%0kEOcKaT}II={H$#7 zgA+);N?bLm@L=WhZ>+LTn{_~0q2s<)w&V%Pf->aN#a$&u@0P>qi-$e{H|Li812&2- z_gTDsa|!n|&$J$J1J^c1WidA^5o#Dh(Owy%-#28tNueBp?UDTQ1;!~QIe^<#PPJ~X z8%Uk;I?>6y~GtT+EthC^Pq5qpyXI1`sVW%c;xHw5_h9 z4CvD)B1MB`8>h|dzXmlumhV4>v5oF+^ikT~uk~0$aBgNszeTGhjxJW}+zbLb123KQtXz747O1pGY)lEs|Jyp3m#H z^jH)m@UtkR@{_R>bg7{{ohyWEF4w!8u8CN)k*pW(VaK|Z_e}rH?FMTCyXf7>{qL$> zRPM`4@9ERtR+WZuzg91OQ`N!ouxxwnLEo3pRcngn9aAtzW0p{%ZqAM$x~~W=5APbc zYcfiM3%oDffRq@~W=*e*UNR)_NyF>In#0vU(hrtl9C{-;f?4J5bz#$q9g7oZBI{nr z6_v3kIlnhiPk9ap^3$6$57~k#LLqPeD*lSoYVYW@P?7l>6WR3O?bKtAUV|4K=w8ZL zl(eEc-7T*M;SUnjCY?1UBhY#IMDpdm=&yBzT-D&*DY&AEu`%*|A>=Tm`d(JcZkV8t z3;ifOlH%*T&x-@$Gen(pwSGD-%Bo)mZ(bO1Qkzm)9Yza9Z`M zuJ59quste<0sRfG*M3?q(fp)p$2(|*aEop?Wl!|jRb+Tr^%?D%_XhF$*3$j=E}ur3 z!hJChB1=5lQ+2j_MfRc>s&{W>3Z2PjItpoIyjJUOW=VA6^sNuFCg$zhfByVPS7-Hi z5q%WK-=?9CR4-6K0q%6sI*yq2t1VwyvR!=PK^Kb&vJE-zjNhm3Dig*gOW>W#=we%+>g`Gjj zOE4+a-(;Wmd7+kV-pi*nX}c?mZ7nl~Qbk8Zl6ZK-*;&0+Gtn^9RDZItkj?a9&(5g) zD@kqZy!^JwozZ~~36m<%+bzjKt)61Tzs0Up)_HfH>AEhni+Zs%eQv_{Nw?3h^Vczz zd(|@(rg9Dk2%Rn220dc`M$`OQH&&pJ1`&&hM3o5sPk~dqmRtlPYxHa8!JHTH7^ixnP%hD33(3 zb77B{DSEHZ+LYR{9}VR!E-{5?jg4{IEE~j>539KoGe-t}erEmH^tbu4#J52?q){yQjx#OzKM-J^1Xv>>B5G&OSG-(gnLw8 z%$0|E(EN-Jm|IB?wyCBqOA=JZC30GQC-EP}q_1p56R}NhC<5tF>uIeV~w#4iKBZV=#34w*Zh<&GJb-(NK^1H6c44T$1R#Ypi=w@J~GVN@V znE|I>5HFho>AP4}OM#Z6_Nz^b1C9{G=Rz%tf9~ns59(@E9~WzEY*0Retrt}v+Cl@> z_lOsB#`L_}X3*V0v#QHvG*6NFiQVZpDEYDecTi7VUk875cPaOIl@C$I!t59%gO(Z-O7!LvG|LrRta>u zOptZI{nCQbNWX=mEO4UUqS%K6W|yf9MWqmb<>+w|()sWqoJsx;19dWy-uK^BG{BT= zFYN;HmdYleDJuRU-%Qm@qKjld7|Ev7KLnfV0X?lxvV@U;D^=yq5|TGX0FzRS-V_*I z2JPCo0|14xse<(BmF%kqaC{jraM%y*I%73asO&Nx*@Z{|84gTGl~H)&WD~M`PD;>F zAQiiRk`9pQ07*Q6KvtGTaT=CSdy+B81D!Nz+;n9^3Z0=W5(fC006wllD_$)}UxZvg zSQ6L(+d&Zy^{BwRZW6p01lkQ)v(^BlA8+#i3TA-sdfSt^4UZeb;Uq~0Fqk?cFu=u3 z0BU1iN`N*6ZXqU2(*H#a0HOTgDs=%Eg+3B4 zn;3921sN>WlxD89nF#2csv6Nt+KS#LPu%Dk*Ni(PG9KwzB_XF3oDcQZLCxNS*Rw6Y`*B^>piy$$@jokj}i^g!*qwR{<9RZ=$%UNg(t}U2H+W zJcJD5TSYFyDz^5IEAhC(g@-Q}oeR#clwe-_-wlX7`&IC05E6J#+b#-iX!fgYEhFj` z@D%|%P^(bh{@bE<$N*UJQX+9uZ?XlIT?!VOrs!lK9O{?Zg$SdF;8K!3R;Nyyp7&r_iDQRxZ2RBEMN?5AnY?^ouR7= z0=%gRjdzc^k~5Nd!zilrV!V=&?c;3k{Y_ty2j%?`i|#(;(5R?wGbIE&N6eMl*)Hiy z*QompNZI9oNs!pTGwZ?bsB~c_d%-Q~|E{Y!i8BDaJ5@3C6bEc(ORVciOTmk{pmKGY zhuYNrJ=$z_&bw>7oQiomlI@>gZ|fOY7KeDcjEAW_0$!4D?aOgX)7UzW2<%0VU#)v~ zf7ZR@4kxwyegwsVgUhpGuPN_6zD$Prj zD$>gt>9u00u2;G#JligI8oE;m%=S_*VG$^;(mW#P^AGn>Rtw$Az$DlS%!wGy6h&> z(&2y2{k%Q#ZoawmEHUAJGSw1-rBA4$pY+4)L=`;ZIVeG_S%~|J-^e{h3(|h>23M5iMsh@_D)&^N+RTT zy3j_u<=bRn48no?wLSrJM>*nJrfPS_)QdP@nUt$y@d5$;0cu=_TpXjyDWvz?c~9k* z4Xee6um7&#y1X>0^(FUua*+G9Jnz8+uj@+pr;MA&4^l#I=F~i(eVl2pXC(NQcO#i9 z{H)aFp+qGN4B;mWnBK7pQPNIIr*HWoB0>5>Bw8N}M@lqQW!#0AGlg{xUuTH7kf>5r z!=+jD1@wTW4`V*@?wvqlA7_m7ZU|?6+K~TX zLU@~LEO_O<&t0yDx)i?ZOj;T)Y%i}w+Q(O};-s`fqhCL3*)4PvDTA`O!bMKy0v1Qd zVGrOe(6=m|4CMe@e!|S(>iw4N7T7xXU9-o6t~kR+%6OHuo8MMp=rbyUrY3vB*CMh! ztYss|>n=B77fSZ&*`J(=Ey3Pn;wA0cowwqC!5WWTd9G76knCNSt=@+x0@wB^&g-8H@d|PugM(c#vm5R9O2N^Mi~jOwHwS0mKIk>s^{@zb-i_MW zF5mLr)iro1;0po<*Y234@-(F^6rsXYg2xO?+SBV!zM+h&%{HkZ2f-e2Z*MLc*zNVq zUD#i9FVt7}&lrVI6xicS?=b|oJhVKzz}=sm@pJW4f$na?w92Fo{!{oUcY3^RR zLHau_-}5h7cBgl*&wBbgA9H`%zo6ay8phwMljiE-DdAwh%I&p#!7k8dvG9CTxc#(l z&7fNBhm$pUy@jI$ z_w)9=dNPEM>y~^Uhs0Q_c(mX86JCDiCYc@ULwUBRWeE=jyL}WC?C{8Z%%t;f+P98j zC$(XdX#w^K|McfY%rUq z&6(SlgmOi*^l4v`ubfhL@gg+xKTxMwFIkjW{G896X)15>w@OQ@4C8Vyk}H|LGpuDF zIfwBcJvm_dV(VobEPkFSwO0E@+qE>b+CJS%d5DGO9OrBtr?fF;U|(o?pwG`cw)2{q-{N1=VFH6b zbt%@1ms(8+K7ZDsjQuK$3U064&-{8GuuW@>Jb}#OyK3fES6J!Qsa*CD_(wH0c17#L zp-($FEoL{;+S0~#i>ercyt&uatvcV_6X6o6!z?p?_Zx>>WXNu{dCsBIZplx7TJvmd z*Tjz-4X-T`@!$Ee=T-1D3})!)S&ByeD-aErVKv*@foP%#nQ^%9op5~+ zkciCLLQ_ldmc**}{o70de=vXxVVRxt0a4`48U=+Cqo5IpP&`f&@byfj(%sR}7eM$C zPf};V<4ay8Y8k3}*`SK3|0y>lTnUp+4`e3cd9DN-$8$Cj;z7BpXl@GT{NTkyB)k|2cElv%0_tVAs^>e-evQ z0$8r0w^2s8P67}vfE#85C@xmC1JQ(>Lm%)08Ni5e0L-#nS7bxV@6Fd~Ee8gb?vXV{r-QQFkTFjfV)!4}1 z2k$CRTF)1wPDVn!bX1KPyfuHxC1IO6zoMsZk0yk$bgNg(B|Q}KcI4Q9)uFiYVhGrY zX)+(Gk`_%h>^IWB3rx#BoO!qz( zwLQ)bxAgXXR98yfA?x|Rn%k!3v1}sFoHBeum(p<-ZZ#?UQ><~r!fYa?{GrXV+u&5O zm|2dz=Q^JLib{YrlXQZkp0J7~O7)E!Kjh=EbGO&#v@U7W9s4 zyl$XqLcDR3qmY&qDvxu8hq-0Sp_Ov&qc*6JNkW;z*?*wsjZ>LQ-ozM|c{7sps=lOvlsaIy*=89wPQZ>(msMNuuCP?X*4tz3dWdV*nk z5_DR=^VBDE7}zI!vqQ3QFl}??;`%`&^opf++-pUuLpO|zh63~h#9i^)oFVeeEh&mF zfBuhmQQ`MBxuvS^*xJVjXu0ZFP?saK-+g{OZb@#!BT1G0#EjbZWiJc#Cr$#1D9}!f5Ly zkF5Cfk`m2<2&3!y4|Hn&!tj-frsfq2VbxE+ESl_!T;i8B5A8Dgl0)Bct@BV|;O;X? zdd{Y3SC_R&LE-_OI=224n6dqcx!GBZpVGEb`(~-<=B}O;O;iHB zix`wxRS|oZC(88w(xA{WklPe35Exk&eg5(Tl68J zCoMY@NF91ir&*L@ue?No?1K5D3-z15!`bx_foa~>PjNq+J~W3aux)H#%!oxq@c}LW zZP0dem~N89sX;V*E5amDT@`j(`yYtT`T;)uf%iT6pqR%LE2TN@%^tg6JN*d6w#|tW zU37@u3x2XWP{TK}?_xL)vt*&b&Zr(zn!e?uK2X@UTI@;%aH{lC+~~V;#wVMpS;>x& z_FSQYv@ZhV@wh}rnVvD9C85!;DQ;|c3c$$PY!5!^Cj-K&3fyA>Po-~+mHR$d{G{=P zyCPh>(=Om`Ie58)Td;}Xt(X}sS+e>xwq4F$xf8mUSWN$FSYa&8GESCc6scz3B~C$3 z{dlcQbbN$CZQ_0``}ookOtxeZw(ud(g&h`TU+yb^>rTo~vMKJ-cm2tQ#^GbcqWJX} zh7WS6LA&rr6Z)Fp-QNE_-1oAMdFw(KJEZk`Hurv|b)Ne>xy_agsaSrxC>oP{1KkgQ z{H?5NY3H&ItXYa3uCEhJqN>m63{aqKeKMz#Dc_RSnMq~7`0=OkLPPo;k&ijmkCZAc zOv@FHguWmHAAOPa88lOsUqTR0ya z^}B2L5?{9EbG@O@1%bzzUvAGfIX8Ew`e}bmO7t%>p9{NfUTQhN;Ze_H9tukul?)p( zyEED~rp%msP#KLwWo8=O$?VJFicXu`A=%?RUl@U11B@_J3j)go>Ra33%~(-I{(G~p ztgX1}_7^*4Hgu(BU$F_Zu~p2j{EA~|qj{9{dcx93!Z3D(^~#SfvhyUAc*~iIX5*i; zdm;m#o0{8^kk2`8zS%kD)Y3uCN-3(wU5<+=mRFSm@mE3>1lxP+qHRdq>6t@8N3S(( zGiO_w2V*F%s}yQ{gIcS_1Y){7PxzU2efh!y_Cp73xyA5kqHOMXpx2VcIR!r(ta=7=Zy-3m6>;Rx2$J(4zrVRe}OA);`5%3j9=Nf_s`Q zp$C{L&;}``$(jP62UgkvZs=XKjpp@#{c21;OuhHtjZCx%n+Mj$SAq=i@Nh*MaA1Wm z`sKgAHNrU`*yoea2dpItLExbBe*rqZ1P&(%Z^anjix(By<}uI&d~te?S1IiTU$sKb zf&}}hXf^Gmlev|JFNcsRUk>t3#g&>Gt5E!yd~(Khw%rttWK7CfZkVJuE~!!MRniad zlGZHzqh6grOP#MXM~z@6R%^YydI39{jxmf{kLZ$^H! z@#Akp+lu9*NVRpD+IzMYr<*T6U2_Y!e1HnCqfwc?kddzm@mlYqbZ$cEchq8stFLFT z$(Reg;Al6{baKhZ2-DOMDdPXopm!BUy*WQL+n90|Y zf4|sXlP|r+`RNPQ`HS-|nr59WS-aWpVTQiLvVL0QqVJ;d8`HVEkNx+lL0oGc*1hox z6qGKn^@oy3q*NEvnC;|yGFqC(A1jUFtvR(b+v;^6wkR%$gTp!-c@4d>!#&lZGF@*) z4BcL}NGj9zcVbDmOQmeLL#bXn>GX@e%jwNkb+CUpD(yVSHW)~Q57Ar(4-3F9Nrj?m z6P5<7gdW$g(1C#2Jbu09*X%+~0haTVM86gNLHVq1q znF^-!Og5*V37274eW=`bBd}Z7Ueobyz|gFtNyEdd4vGw zSmi$u^4-ieWHPwb{WTAWhOLg|SP;eo6)}IE0}h1!tUiV_@p3kK3o54i)Lwt#wEs7h!zO7|Z|G*>s)am!v(L>$f&Emd zR!fN!LSe16 z??jVlqQR}K4u!YPCGXsPi(YI)Yq4DAu~7I}xML8hQH_fHB;x&!<=)G)EARZ3&&a#N zd1Y&CEEc5VDW)1+J>%cj0>Oi4>31DaX9f{B^Foz|6;;A%(=o?#X%kQzU)vD2*l`@;Cxrq1EO;eqZ!cZ;VjkcO$7DStZNfz01mK#wyc8-hNtW zILnrD9bP~z^!}Vdnbrx%x9667a+tN6e#!VCIW)ZQUHsaHfZ4aT8n=%WvmJWrAh^Id zVf?0|R@PRp47197^;YH0^crAU`IdCXd2YDpRelv1hKyd@{82_3Mw48Zc}Q{ZKhSIq z-7nw$hkQv7X|t29Ezd3eGOJZ{8EPmPpPx_E?F)M@e)_?W-lcod8ryCbl$=v@se1ED z8TOH(O04qhZ(@k4*@Y>QqL++J0&{oP9$Z^M$=7Dl|49iCpAOMKD3(G5ZYG^7c|$lI zWQ5Khyw%wEYWy6=&?3wurm*IMtBLNyurII`C39ec(;$@U;%Q$M;1;uki;D|0Ef=ck4Y#UpyY3 zxT8=d_`odV_h>#kOEmcdk$xj>*V|_d@|M~{Ig&2?tf#`U$vm5jLO3vNAkzEMjXMb8y&c4yZzQ*Uovpd< z;dfQyQ#klhqfEX*XJ^PcyF9Q1)^42QcVK_ty?sj+k(#2RA4N;(h?Ba1G8 zpO8Mx3S6ep)OW$@7y6X)xyJqS(MkVI1AzMn05=e9B?VMG5S~g2-rhVYRGY6KUvW9z z&zlSp0h3uUoB9iyhz^yBRC|_Ik`Pj#=L@!)<~N8_-Ehs4T7LP#Xl)7k>^RwU1e%Ny zynn)&Zk8D}2MGCLla>Qx5=50?p7607G3^#snD0GSV6sJ*IxalWqRK04trfhX9aIFr#Em1b0SbORpRyW^t zl@B4xC;F5yC59xg1dqJY2Jk&`Xg^UeKPcHvXj>&*NQ50Cq*y7X0Ys9b|EC^slx(G3 zW^KS}RDw1DJqLsXCC~@1l!BpY0#!`WKo|Fo-D~y=|Dn&wF`It2VtcY`j|va6WQO2? z(JOlnfs-Dov-P$PZ+#%|lxBC*T&B$5S5_CsY})yITMN`I>Ew8&M0rwj*u;z=G;0^$ z6bxHvUWSo(R3)WzbS6}M9cq(maN~Z)YX*rQd4uddv|q~nx{V%^FX2C`py;|Ti_pEJ zLd!dEDflkV!e-&)HNGPA#K_Hk@2a*OmsB-PgU~_!zPFu{_B!3xzJCs<@bj}0dFxgy z+{m$GDK?7D+Vl0-o`Qi9F3mo&#>Y2FpQhTTE?xm_JSG7~sE^Ihj#`!?^w4?FJdMB+ ztj_Cb;S8<=F~tUP}CvQcVo3bXKd1!nF_85^T2W#)QNm&-izYO~T^ z87VL)oh0xxRVDE6H^z+lkGFEz?KZ+6jXBb3x5x3O=(s$|Fn(y0iGHP5h-^vTnwcD= ziQa{Woi=CY7CrrmTH2=E>f(SpwtFO99ev_DeIQ#c_U0vD!eVk6e&C|ouFYs=?_pMz z;`zaMUth#wcHDp_V;pvJ`qb)<;}_PAg10k~y84Z8qe*tZtEj;tkbG~3ge3ZqZ?!p0 zHby%K#W0Nz?wikgcIuwsU)(s?Medx`G`GeG-|7&b4%GWbztd=g`(y%O1#pTP{ zQn7wm`zt?M`TWxj_u^smNJZ+jn*;Y1<90kMsM=IKve< zjzrmA7s&MM3GKJY6h;uQ9|!g@b+BvL_qP6)B5>qz zKX6|SVN4-6Ya3ad1HO6VphfAAXjvgjz@(pMl$A$%u$p5kbq(VlC*wy81G;rEK4D?u z>UTNM0|YD@?d)MsRw=%4T{cVY|v zsZ90imdMv@_Eb28Or}WSQt+yJSq7mcpMG0dXk&SCCSwD3Q;zN^^YZg94PGC?GbGQw zOv6p(-3U!e^fZ7DHpo?b`)x_G>*#G&hd3|jZ9JOi3r$66&ilbbSr*a;O~PmPBG^jC z!2kexq==l5sGN6P9a^lf91L==izmmCr>7{*F7W5H^pVH%m`0nZH0KKxg;tsRWC^_7 zNVhPX1BF(}*j;c8c(}_=vvFZ6tTBND)ksv3E!WRB0%6jqh!Tef{?Y5(nF4NpCMJqQ zTfPvm{*@9{rWs&{IFlu0R5_V3IX=s&C;|x_+XGkEQZNC*mLURu4@5llsccP6MXLEB zd|E_TV%?=B_=kL5#H>q$dzD^}p8v3%WSL0$R?ZcDeH&j8_z(^e6he?`l;r9W0F!-M zk8+H1QkzF}`YJ#d13mOIA|zyH$E{)Vr?8%E>Bxxbwkp7uXW&f+oO}0_K2;#!YktKB z3cO;+jd6b~Bi{lx_Z*<~Ha13{MdUfr2qdV82Dk_!+i}2nyYMPP5?2y!NLiAFH3TRK zLF%|7XJG83AK(O|@VK%#fC4d%iXvoh0Z*F~2JC-axtu~)LZcQ?u-?ydlYGZ_PQrZEu!xxl9Z zC$+a& zoacF-=Q)S}MCytoQV#UcqZ#UlYAD832|hiG1`FtT!^4KLUO#6V=DT?ic6@5pu@;2oSd7y3L#d&3ccY z*Ms(|OC`c(>r#C=Q;d>WN!-P|VfP~1bn}|01XYG62upoJPkox{$!kPb7>kus2xhzRW);AAC!kofoL?ofYt!V?cZ4X6IE8mComm zyYPA5t<6cZzY~AG==ha~8|{1BW`&Jut!YPlXaDo9(z3AL&0ptwUKc;4c!uDj4u-ID zhQQXjNdcWRRJoJxWS80F!f_l`tcI@G6D_+$E zUfB7n;n|#?%!^lSNe}itnwB{lerDeEyq<-@4?}+1qI&(wEp=9^U}5lLA*`7Ylr{E`Oj_J$!D@m_t()| zS~A1GeDZj&`rZiNZ?DcylC66f|J&)tgnvbNm?oH~x|Xi|VP1Q3Wvq4C!N#Qr zcaGeC7`!aH-}l6H)qVL7|21aJivN#zk;meLD~wyG$s8aNKK|fBgKV^Q*(W_`=t>daO_0GQs@tR^L&EXIJ^t+4f(p z2d>o?C#*T^p}8}?yJWHHf>?TIQ&8rLn?FC8b81Cna?VJ1V{W%PCT)Z2tLT=E7_v5; z{L|*Ob@AI)KUN>>`D#J(vuBo_vNz7W_g2!9PmNb4zkgr%D=UA%eJ*v+o~`8FS*QrB zo6Fv4JN;%ROMFg0?0D2|sR=B-9`r-a=#r9mzdCau?vGDRGgsdY8BX6afFw`YFT@%@d@USGFyU-i`2yWZY2 z++EG=&bW3l|CNuE8gEYP*|FNg)TOgJwdRD#u!0Q`r1&{tL}r*&9q1 z$3sv2wza#%BUBdl+bvzn4c~8Ht_-t$?YhxQjVVNT4d1`;(r@Vgy^|kmGB-ExOIK2A zwO0(s>Wt@1^AITPb0TfeNn$#T(jIt!uB7xdywI%IVj^d3Hpq0 zRdThpQiU@v&I3s(H65#<&{&cX+_>v@E4)3DK6A_DMkW^elO05_8M|N`oECF~8+n%F zv}si~CdD&^^Z=noibEi_fks_u%*duBMR-FQgoY3xCeU3eGGcC}gzLB%O`hR8bfq!K z(-<{I?ZsAl8cB>FMM5~PI97h;YL85F=RK%f2Tdl@YtaGSe8;EhP!$FKIWTr6BS1AcMrzDfk z0H>j@PpCPNCGtiZaarCRh!#EAboHBqo@$0L(rUt%U<|W|+|tu(Zq)e?YKP>QzxiC! z5ampO2=Kh%vZ%AR>#_~aA^YT%j`~cPo)yF*y^mh&F@2R^dwiHL{bp^a=-Bbt(?Lzb z{hBVG%=uPP&EU{JX$QG0qu6KLiTcp3K^Kk{-ncen(}`ZuMbUk|iL#TeL0kQWn?n3Y zjKW-M70JGUxFfQS=mS<8rFkug;+@V{$rg(TT~p{atyyUSO`M=%2GTTf6G>cCD3wLJ z(0?m(t@w*_O*t(FRoM#)J_;0PrTgo%daJGc+`d68=-$<_e?`uR>ppQwd}2z4?WYa{p0wp z*X)UFYMPjqX@2qKA6?g{Ig51Hvp!L&UzaUFH^MG^=Ev`_lkQ8`ZN8j*!q%jjFdaKp z)m#6@m7YZLFH5Qu*KK@FlzgdR%Za-ecJ~NM8-BN5U9t31NGB0}peK#JrkRtr=>8jT zH^*Msp8w)U35Vay{pg{pSlxK?Vv6PEpX*mX-77iy^J2;#a-!z-!0e9-c;O|SIBR`G z$fG%DWbH2UdR^A1qTjCFl&2b-0v>q!mw#Ono}FX-eZk)7%&mWPnFfEZ=M0ved$z=t z^XbjcFMfaj=J9IUvY-5<{o^|e2Hl^nd4Eq}X5!Y_Lw7&*JN&~#;>qL3xuy?` z3(p5TXU<{!{4ypfR4pA9di*=L^0Q-`zFqV7fBR?U|D;h1oR!L-L_p75}?1B zko4bmWu*lP6Mt8jN?UhJm8TxeRj9x1AL*b{w|7^6l{D*mlkeU|FaKZEe+M4le?vVs z_J5lPKEL4z9@=tLz9!|^ugP;i{j9MtGuVGo`1kWaZY~MPUqP%;e-!ah<*67p>Zcv! zvAWiJgdF2)bjwe$IBNIhuUhxthz@7Ts3u~IE3(ilMfGQ3^efCGujCumo8N9bko}+Q z%MHulKEO_L6@9h++o0ox#lNgsFHX_lIBENQJZa@ONuO5Md@2`>mcQM4xA?Jqgxd0> zI+PV+eV8rSd4Q5sc#z5g2`2<7bUU_GlnKDra4=OYkOI$C8e%VMr{d+;ly{Vax$4G- znvNKQQM(ul;o(Il_Uc(IDT_a?q=NLW{4l7{caS(n6c$^iyrnrRb$&4I&*US*H!olL zyphwz1$?))0ce`?c4EUts|MvGiO}bE>u|fVG$N2vOVZg|dswk1M3H?_YirrrCX7xc z49edvPWh#B43h}*_{f188t5Kj$WewLJ*#&nfNNhe3P%W9=cPrriFn*ZIm?^$(7~FoHsKHVSK@APU>m*t$e-Mt(Mo9#G z!0t9z0$YpfQG@R@n{h|d8J-VS8pn4t`|U&T4nCDmfvY>v?eSucD`5xv1)p!Qsj7*T z!wNXW3CBP-_I1ZCA7md1)B9lktlL_vzd zr5)kq#58>5XBP5-J7oAxjm4C*N1P4X4AU^;82z*;JH$|Qz#7dAY{ymijWklJa;BVK zXhPo#rV4I6*D+Trp)< zRoK0_U;a38^Q#P>Wn)^NqGL_ovm^UvbF1=h!YTSg{S!&vl1HWRltp!NPejz{5RlR3^1lkhG5 z%$~g8Y;`}+{Iy%MrDRK}GA^zEN9TIy_L&nUmo(QuqfEc|{+ttgLieayzWutj@r!50 zpY6Go|L-2&!G+{$`5Wyw8!f)mOGeFKeDGOV|7-fkul16ab!)ZX?-<{CbxDaLqO)x6 z55W?n^hHTsviLZCQwjr`JGBJK9cyJw2WUOW6jbcuOiQ`4HdN0*wUOe!f)05QK5 zMb~WXjlEbX}*#zRWsRm)$B}P4B7k z<9)!tsuEL$%tI_9@2rL)IL78MvGXR76ZEDym7Ue(5yZyg%#0oW&w>g!+4Q*<2};nG z1iN0=#bR0FqH*%~t&&-<*f10@n%p0Om@OmX5)Z(>rpovhbTV-G3YVM}7h=}$Ndt1> zWQZ?nEH2(u3{4rvY;H*f0i2^$`JXl!OXD>R4Gwn#YQ%I3iw!vjY~;}}hK4tDW91k4 zY%W*lPzWOe+p=XgdP8Ldi79|Djp#q%59aXC=V2F4_&tBa)w26C{>8bd#amnvp;U&u zU8G?yR>_iw)(rYPkkxY-whsPZLu>k(#aNrO$}}}^yzqXGDP!zh3wOe|A_awSM#Lme z*BJ|%X%g{J% zZf@{HmaPlVmZ6b14Aj8naw2A9GevNRZVd>WHY1+VE@3n?xRJ(15B2Xojzpc( zIIeo;EzAEzUE5teu!U=sv`~A3TFx)Ne);a%`+3?)u6sr5)NN;-@61`Vg5hfk8+-Um zNYHnoZ-n%8oe@*-|6_i_v7`_f$hX;vBOslsf)v$28&V9hB$l z`6pkjsI^S5crnBHZIn48zd*QYXziP!GHq5@!U`kq(jED7uO`SwPy zhflZ<`QD$EOM=tN2QHkyVF{$3>dQB#jvn_*Up1usIb(E*r-=J^;j9_J@1+{sa1)qvFj;pFffeN`4p* z^tqp74NCW=Wu!RwHuq?oV5+get_1s8!3T#;W-N^J7Yq@^q^@T}vA~y`SVb7f;jv zo1BssR8paku(Cz|JCE$^BTsyv6_njr;!bM1w`kjSbK}slhL)D->>PveKpHpxG)@ zV`755BQ ztfYsEuGfNRg8;{Sl`XHP!{iB>Gryljp@Ox6PdxwUPm0lY!E~!DnqKYox-N%I3X5EXz1?{l)7!64ad>y{(0jqHL zB2SyVFWW{eh^%!{<|sRaErqfB6amXGcZ#}Ve@@4Ur{9x1YdbYtlBl8RlK(K|K@h_v z>d`5+qgo)$5Z^DKXD!XrQQwOv{7c=qXEk4+2e%it;J*>~Q- zG~JWh4zCZc@)XCIu_b2jvEHsSv7q*3cCN+Z!Er9FL&WYNpL2D$6jTMNThFnh-;5_* zN_iz7ARj0MH6wNC4_mF(;)-aFccwVkLS9%vZRR`_c|Vaw9Rjq2c!$o>!j1${L(9sR zi|$MLS5D?p#jKUI@P;|;zdvZUbJVtk>v$9uxMwW$EVXU1Qqfua2~|9xDsF7=+Z$p& zET-Zk3G#XA(iU&-O{=-(I0uAiUw;fH&`S5wNwAISRtOV+4Ad!B1I7TWtgs>KRw2eBB9 zh;hVX#^kSce|Xq3tf<=)t}RWa;m^wKS7L3 zIF?9_4J61Ay(+t=`eF8P1N3B$;x?mNkaFNmB4~tY(ow@S3_weU4-?H~7bxYGa)y&M z{Qq)!Pz6i0=Set8kPQf^ITJ8VEq38C+!T)|-FEpr ze`RIf=i1LTG3T{qIp0fI@|q$8`#r9}7HM!iFHM-H#USaO0{4657w-JPc(6dU{iM-G zZ0m=QwmOLg?e4m;4J5(dYGNDW68zZ>?8JRlFLV6dcBPRGRA3Tc{)jHToCPB-8zt8y97Q)$rQD; zuAdpE$ix}-dz@<<5JWu0^_mKyZa`m$97!-*V$jx${K{$}^FE-xa;l%%;6`gkp*>7v z?@xF8Yqe+Yg@k1YBW;mfuIztnC>QA17>U@=#6ZMSVv3dT4)Y@xv;vMw1zO8M8tNyj ztPiC&<}8(Flma|?7M>jDDd9c~h9BdNv>%F1*}!MatyD-cU~mWU^l1|o*C+(jUFc6n zn6g1{G2}R#V~d`ix!|yS+0&q3}pcW$m zFeX7r0sn&-qY%Z@^xG6Zmb)|2oP(DP9eiI2x6BFf+1%NY>}>JY2sPr%L$ zVe8K&fj#eb3znOm1s35l;T!WXif}-?|LC>y#6vK$0I%9lT8yV}y#9kn{W=pRSod{c zy6w~M6Q31-_R~w(!cq&hGC5UvzPrHJ@3lFd&J@a%R_MTx)SQmA8dRj@5$0w}5KR*V zY^icU;Daiglc4|J;%Bidl?;bryfnfe%{(3azE!rcM)Q2pz8dp zmwlfntL2GzsUCKercxI|&=&K3=J1x73*`U4nCf4209`T*1~!}w=58Lk>5Ly<5nh`< zcy6fIUbO#GQ9=)g?6p(z-o(gZurM5)!145O;ezIdsdS$<_>J2d^SN*#$Id3C%8_=Y z9YqXkN6^$>W>>`e3sw5tr>w>!+ul#^B(8J^CTx7c^H9kKhHs2Ao`wxWIm9dUCv8#B7S$1@_kl1&{CAXtMIUHcOf9Dl3wA8G-8k&se#gkwN~N?YkB zIw&NmU~KU7v~np6awR52-Ix*pff->?NHjq10D0JOWi_pG!MjIt{Zc_B^Lj$NPTK+m z{{AIVek-F|DWaR&i&(Wch!q6*bZlAP8jP$Lb%vJwjz|>DF$>d|e;CwB4c&BHjV_6T zfu%1;!~N9|JNInY)hF`($reZ9b=TH-QPgLecnr_ed+t&P9QFI!UE-Z@rv`dhR}P-C%ERS!S%H6eGFf zW{v87a?H*8>bPjmeRxHS7llXInuB>)W{LwnoVHBhXQzPi_`3Crx(GYNm8_SX_h(B- zj9;^gugq7cmqraW>R-$G`GbU$F$R!fA&b1twh;1cu2*Zz1NUgFu_AJ>z0S>0bz0Qv zFdq?(5&0rT&Lz??-n1+R>OWXdj*=R!n!ta-cVNc+#cGSt=9K!x#p7sk|GY?VR zRHRhm4G9p9mig(vZWWx_33N5K37i%aEoC#pXG8Cfx(5^oh&QHw=49#s*oT=H#q9z% z21_6#d2<4m1h0^0N#G9%NpCe)uN7)-G`-@bv6x%DA-6Lz!J!i5a7C68J&zsy83I54 zIqlt{JRCeB!K)Dpl|$PAY;6rNrD#5c|K5^S&)uMTq3Z`uZD|h_24@eKwCSZ0IG|@>oOf=vX zkf#w{5xy53prZ-rp?+U+kFZAsM0MHJXTQ@DD4FE#mf?`&Q7?Z$X9H z&I9S~KlYM}Ct8~xo9Op?RL4Bks{P(0$3DJ3(i5O=3)=X;x{CT@xp|(V=!9aP^jI~b zRdDQxr7G;!&Ik3j)3=m6h3i7UFJCyL-`wk0zb;KQ|CfCQiQfuYHy^Dt-`iykvFG#m zy?*93FFg*RnvftVWT1Yf^rt_CQmz9(@uZY6LBu-D@7XI&*P=pk#PvH<7|F&C|GFR6NxxumOhEeAeb6;$;wTf*YZk_QL2XH%OOVYG5z zd9G8$npc0J5PYD(UTxYuhk019ER!ecxL)VqpWP!H^*EE){Ljj-wiG{Bb6O>9?QLau zh6FPdN1wRuA>l_Ktlq$c)-&HfE}31(|CJL)R&*JZvDX`VdYpX9Q+Ybo zNpWV0Bs>#G<04#U>uAHd#^(A7?=(Q+$eZiAL*}|Nk(L#m(k57`&KYvt>QCsPq$mMO z7rO_!wH&MMI__jv32K=;wWs;SI4_HArB8)O184%aWT=LoYDcF^lQ$hVo?U?>S)GEE z0ZePcSzqM9juIcNl?LCSt(_{;;}~hb|g?35FojpJNLnHlu&WetpKOiSf0m{F+z! z53pLCac6LxM>C09IIF#*@K6}k4T$$1qA~{qry-f8n`9<157B>Iy%s@9Z$k;Q zGzAR^c7ynfi>!`^QWqf3P!;zIpJpC#z_4BgM;}t%Ef&nGCY2!$`dz}10u?;6zgN~p_NsEv*CB|L>@3V-U^@O9@h;k;=- zr^BRrg_+Bbm`}(7^H#LvMVGvtfAw9e{iUd#v4I?!NjvkS9~!de4>&h@pCAHbZ^O!tO?XajEiF{f{uHnC>9r-9Nh0tcAgi2f9gG-6ipak{HR~WU|NQ zCLp2pi(r?=dFksAjAo`?~o9%KL5d&Igyl6%bhyuG_2;+MA zMP4t;xu1jlJji+#?-o3hYQV^xmxVz~hn`7d)@#EObG+6?kH#E5 z)g+piSHDd%@=Hv6y_Ut9zbsJshYi3k-TgOd${TkSXnpe+=U1yYc1u~s-yIbo_C%+c z2H^U$&P452pvCGHe)~O?>=5X(DfUM?8^8u5Any6YGC#W1KBg%MVh z1}Uh6Kq-qAS#Pme0fG!j(=iX=lz@P%w(#(#J#;BgCG+?Qz)iczl&%a@YfY;);2CC+ z!^)BrLaiMW$s*yaK+X@dh9q@HWx3SGaM7;N^L=TIVRF#XLE!=&sXCeKH=FC+A?=;cII^#lPc=~)w~<{e45BNF%-F=9LP|^e9)-Dd2S}as@YS;A-Jtng z^Oy))`!Hwoa+hXHEI{7%bFnWgKYFB`rwBTBv(vlltCB^e!c&6__>~K_ljbN3lbiyZLPse{0aijcBP$II`13xclGyXKNGxN zOdSP9Vf#Up(ZzAaCCto5pBvin=n)XnG298|N51C6lvGhjf8uzqUoh$>Wwf@TueM&h ze@ViqKA@;g86b;l@w1xS1yxLt8$-U53R2F%J8>9}Fpx8)(eWHpI;c{Ew?rk3PGIK@ zDFi;)B2c6YJV5@+6_~tGDEO;9#~BfZ>|M?+7xb|!7V-xpf|dte(N^n@=5AQBE-{<3 z2F}{o`IK?{l%@ChVC4MZa&_myM{6EN^3Ti2@nfM2oc6(zG-*1!BAML~7geKIvBq+z zs)*RvFBx)^BoizevMb%B--z{Meh!5jM0AtV#F<~Add zBo-gi`k0EsB-|trbakkh`wsfWB^U*elfow%&clufNyZKQ#yR|3Di?Z7K=Zc=0^BMW z*zoxanA{i%3=6hH%!2yT+OfRA2*OA%Jg6I@;x`lVoQ7v=06t zYGRohGHjn7YM%H?deg28I4BJRcfm}UbuXL&2{Ba|-f2M;+Q@|hS1B(S?4~nEOw1U@ z6f!l&0t<;(k$o)2fZNVb*^N3t2ksOJii9BeXa@w21*|j8FIy~p20aDiawpaAi6kkn z*W7URf{M4C)&((7v1_SMpdgLBbrkv12}CZz)wYsENL2&Kj4=hn{U)tGca=V;AJ5?d}%&L5F1sqm@hJJW<95F2V-S3A)c6D_PHBrj%w= z?~nj}lM~AHD3H^p7ujn?Jn8q~YHz~R+)~hWa4)y&iAcjR7@qS4wNEl*r3!(sGbUCl z7ZO6MK=m7Le2a+hf(+ z4zf~vBKNwIRmsRiE0XCT@gyfGe6cdbG=$yJ2o|To=79=O2m+OZNlFZL11WQNOC}Mp>g6k42 zq*z{!EmN~IH5Nu1N)7}E!3^ZzK{t*3v_k}~t9fQxvnKDDyN-?IkJfpko4cQJ8;JuJ zawEJkTXR9a+){Z@mV?Spiri6UeRO{=8U}6jYg@n>h+vZ26-#*-xg;?#98YVM3n_p(d>@{Rs{aM zyYdJn%`bR)6YutN>J9GWf(vnH`>!r%x18cU}UPyhJ+OVqN zvqwXB!J!lf*Xg zxR$5FNPZt(ZVWuI3%ndrZ5yBqv;fdY0BXtvJ|ZnmQQe?;0@ea(MZHVO%_b;3x7wBX zCM;_S{IUZq#Z-`ydf+~6d`EU$rZ=o`Vbd_8S`$r53=OM&OkT<`u1)W) ztwCx`+#2-5^9dN(NAGv%d|k3i;Q{lCw&xWNc6rlPJqzi*l|Np8&@U2T(KZbfweNe{ z>ml}H{a*6H(55oM4A>ziVzSkR5SOBki$)IL9pr61>8cJh~qyFC$zeAgpxG85Jl^1X$tcNiWQ^zosQms+MvjZFWg~B))4uS zk|FzwiwLe8z;1aOWxs$}|3CSPFIStWc`RUK{#9Lnqz1Om`_l~3D?X0_i99+Wt7ABp z5j`vMuvk!2)QaXn6m^1pT(5OL5j+wI6S~#T%;ox9#}Uk4b7oN)^8$bcm#KI{-BCg3 zsiVz6Y4(vq$%hv zvey=MILg2aAOCtd-Eko^x}<&m$}OFnRquXwtakAAi_eZlO?e24m zCErHOeMi0J&~3-cMf-02c`VD=b7kAZ`&kEX+xARtxxe^l+qSRn7kqf|w&T#c%Ih2V z92~E^uV{l};@Sbedvs6aqVUMiX7>bq7WB=drH<;Z?`B+cb!;y2*mU#wabr@>g{LoE zd$4^dX8E(D-#9laff_z=t^;di(~HjT2jhtqN(TRYqhwgyWVQEC;uB6pT9v4qyo= zv78Cu2NhUMWpH*H=pks{l5~v?rds8O5-Rd~DF3u=R5w!=)2;x8=yhOzc*^mek{!a_ z$AZ8$DrZ)XXHiRFF0 zSnkKCyz-EBAx$gNLuHY<{6vr~$i%iNi|q4cQM!nzy1ZT#pJ;G)&q-vVN$KX~_FW)1 ziYNxqtLO3rlX59wylcwRt__?%llNw7{n_Owvnfv{Z*cLK`;Slw+#i}&Cw;|lo0qGx zaJaYHLfiae-19`2q~AI7oma0WTb%`5@h3;`ez(6Y)9hB|$FDu{UhoiCKMo0Q*HaaMVT>G7Inn~2e7;gD;?t&0wuSdksVx3e$X~=*X7%1kH9aXzttK3+C7s ziREhsBCPZkevyt;DzZiBUK43`fTmhJ5QegP;Z}U>F849ELzJLl()mnfb6-1kk+V zodBrb+Gjya9Z4_Qhw}b1X1wIpuGni`99Age{@K|zq-)6AAGBEBw<8&~W42%^`X(^* zXM?RgTY%I{H+V{f;M0njRS&rYMKm^dKwoi>PP$xieAxKY9GadJVfzU5&L~Gu0yTu6 zc4S*D)Mb1(gZM}JPD>}>a(oSYm~5?Rrc+T1BdZdWI{oh;R&wCXr}l$}uSTS~ff6^Q zp==IFMZ#fjy>a*ka3&Ko7eg%_w32yp(Q})SSlUPrFQmCu$2HX$$N!cJ04@dY!Hy$c z${!r#Fq34?Y?+fe2MJUgd5%VT=VDhY-ZDxGLU2w;1q8o6AISr`x^Z$iZ;0kQr6;FlNBl~9BU4#5w@ zL?k_wy#6xI1v#v0#z> z%N_D#j%`==?MV%t(*puntAz)qJdXKdPUq8HgsbX=unJ~41;!pjGWpQlO&-2*gaHp) zQAckT#~1MTG@}?yEwWl7IdJhssI*z>^A0JYFtWoaNYRV12Qv-_7(f*)0VKp|I#!4g zh-kUStbPxjbp&0aaY07>#YU#oU|r5ug!X4oa&KT-#v* z-e~R6`%u&Qjw0F!>;qI`h`G5=9;q=OApe83PoHCnbbv$#<^{2fIq-DB3Z;B?4&JHL z6^&9SjZw=nh2I9cO6!L?_FN=ZQ^jfg8bDl}E1Wx=DmrakC9|G2>wV}qp!?1M@1<@e z&}0kTxKE~r-vX5p$`&?;k(RCvf%{RlyNVocG-?6@$U!V!U9~Z`4qkpx#t5((QM9yqZraZ!TTE+SQid5oXk+mH z{#Q!C8%J53V!cQR5VSt_ZJc}Wu>`zKZDyt@a-zUkDF?Etm!UtZ=Qx?ZO4Z3s&POcr z$84ZqwH)?Vv!J=1QWyEN3osBs>d9=+7BU$$_?UqycthTxK#+oJ=*clTk0*^2D3+@g z^8Bno*1mL>&!W$>a!~9fs3J%>ChN|tgPSS8h<*-TX~X?47d)cH4c>1~(2B)#n5!d* zr>p5SuUYg26ZN=tC~xotJ5gnZ>N1)fW{%+e7GsowUo<=dU5%wn?s%XH;bQ3Cz@?*C z93aOs0s=;656hSd)6i{^NF;udweVjpfE~_A%Mz9aao3lNr|mIWcjVu~k)^Y3C}^|c zmQ&9lfrQ-O&&zDe_+TOa=B<`e5-p!NZ42|`_eXM}cpcUChG{K0(px%=Ib4kB(e7UA z_=#Fekb_i#5d(~87}q8n>n2R>J45^ZU5mp`C91b}rgd?ca_x10`>5{T;=G+^@>dO0 zI(RgNKIKczqlY-)hQqan2ky}5)cGM%?UFuB4D!esX_)3p>9D^=d5Mh`S-BREF8b5H z2p9jO;DUXcL)AN3c^N0RR8}M&=$UMV0Bh{Hn)E;In!kg-$H-i8#%P4UlRo7`j^UJk zk6sWAI^V&r7LW-zs~p0`>9CSIHJ~FlY8=wSM10+40*KiVq)6g%H+^rWS;M)f|FF7( z@r*Zeg`RZJRF2kfN{M=}@jb2XiEu8t*%J8!>aXo0Rybm4GR8J=;SB3tuaLL#mc^6= zUJT)guH`_TO?GrA^fL#w4E{KwwOqnJVCGC|*EDU7kx_+Ghl(d7hT(RH3y~i@P^v

    iKnlS#GD^ zjw6}t66TIJysu5`bS`ZPq)#)Eo#WMEmwP%KS1TfB1B_o%S71r@UqhS51@E)qmE9rF zE3$G(-^S(^B>3;4Ug+@Mk*-7G&E1;1!i@8yFt+JY?G|9KLM@&GZw zJZU*Lg^_`=8t6fAAVO-e0~@lQ5!&N|0Hdpn5)>ez=3}KGzB75Cl$&-bKfPSHvo}occ*g!6ugvP4P=Fx+ zQc$cihw2_lT&;*>(z0?mWMK8%U3c)#}22V0)LILLtGc!%Ot4e|m6^+t8 zT3l`ty6&a+yiI-RB*SrKYmu}~0_#B;Gmu)vR}m0kT?z^~;=Ng$q!?}D_r0fiD8){p zNQ(`fD)Al7=rx?-td#zxGel8pjhb zpd=%1aTv}8lLjXEZXeW+PjbOvRwwbtQ6Wdekk{g{9a&?!WL4^!lvZ>Tg+`}zkdNSN zAJ7>wcuCP%u`{cYL9IvS^R`ac+O(mDG9K3wBul@Er`Ve}24F5z3jq&>zqy76Cw zTjN_1Jy-pv;eT);TZV>zb&@#8#MBETXg!Ll!o-5zLngKp&TE=0bOeP%g5JU|^0ceA z!Y^2{U4TBiI3#-N&53@Ry8-S)#swgJ8zGV|a;TGp9{pS&(s6E)h4FcerSoW-VCpbE zKz2P7Wqz`XYeCsw&a*YRM;cpdjPJ~!i{tKpO_|p|hEr-Qvf3K7b!(%SHc>^PE)rt; zwdA;({@cVI+8~{#0Viqgu=))$a=9Zlui|kKire#}!u|e8PIFL(%=_Y{g&>je> z1TLH=#zAd?YojSCGbMdOZxwX`nC=mJA-QR6tn2saN&+*nN1R2f=%0Y76i|V1Q~@CL z8H=^D=*e5R#l*6y_Nvzl6J9V%)@xj;zz1%Hloft2rfnbetEe2K8>Zm;Op$$5ea`!2V>aqturh@o-Gn>w9~<&h(Yfzb){#kJ-< z1aSh?!vD+77=Z$~-I(!Wj!oGgrG^jxQMCFjjP;HtG&(NJxPkAxfsd@%Go>B#H`K(A zc&)*#-wVz4goAhh-5GRQbY}~TE`igtD!fwpfZlNPxGfMP$1&M-6=4sp)SgPq@R=|0 z&uATnnxzNMBq-~(wG|;a8#?u*)5h42R+CTCeZ&pWFC<1{S;AQu#;hg^%7tF~+yCPh zXu&AU3mWN3fg@cARSQrkH)BMjrsGURII1m{1ZUhrV+CV_^)ZYDbeJiAZl$Cmns-Yg z*^Ct6YC88PkPbXQOB7nBib5&Lju=kJFt;p|<8LU!80HJW$9g}D6&{s7&VI-Of%jFN zkC8;j%>p4K!uNfKDaaLJ2BiFjK&k==7mLmIaYmXck2KUF?S(Ip1_ccb5a6Q8Dunbf z&WO$z87sFIv?_Qen)So6gK~SaFake}Ox-9+lCnmi@b<0nq+h_RfZ@pT5dD;j+xk7g z%9#EfqruRvCd@oRZUaZ*MM|!6Ak5TzJ>k(Z-#-5Q@P)J(cn?j||2~o3g<`06E8i&qEc} zO`l(4#}sQ4zgW-U4|8jD;l{dtt)0Y_YkVP#U_#m6*s^P}DsczWOs(#LTU8F{O(MrS zJ=)eJ*xe*H?n&mqWn}(@Ujq!xur+FZ#-uTDh*_Uw5uBs%*qFqRRLwaVu|$h|;b<$niGvgUTfb1u=IzKedqRe0Y?e9yYcc?gUO z8Lnvu%i<#C@#fK{#ke24dg3*})yTxsJtXusTk&yn3~Y|cUy0{3QS<=(6R{I>&2u|9 z74>V(RS_1xB7NL9aT{D3*TkNJXCac{eZ88Tc&mnf_zG@qDk}AKBax>kee-Gj?RW@nkl$7{W~%yZ*oPt2R*qis>+I+>2U+` zILrh2kD@;f0rEl;|1^I6#0v_O8-J1u7ynIG89BE2jg z)6+doW3Jyh9uae3v60iokv{9d>Ay%z0AsdUzj<|;CT9Ku r)vQ9QsclMI!ZBCH@QuYe8gtW4f43~FcR=W!9;or6Vs{VyzwiD(mofWP From 17bdb1c5e1db9a5ae37f538eb0e05b85bbffb3b0 Mon Sep 17 00:00:00 2001 From: OpenXE <> Date: Thu, 13 Apr 2023 21:58:11 +0200 Subject: [PATCH 50/61] auftrag set vorkasse_ok according to fibu_buchungen --- www/lib/class.erpapi.php | 7 +++++++ www/pages/auftrag.php | 23 +++++++++++++++++++++++ www/pages/fibu_buchungen.php | 2 +- 3 files changed, 31 insertions(+), 1 deletion(-) diff --git a/www/lib/class.erpapi.php b/www/lib/class.erpapi.php index 5c97843b..b05f03fb 100644 --- a/www/lib/class.erpapi.php +++ b/www/lib/class.erpapi.php @@ -12698,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 ")) @@ -12725,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 diff --git a/www/pages/auftrag.php b/www/pages/auftrag.php index 6528b92d..b77d9802 100644 --- a/www/pages/auftrag.php +++ b/www/pages/auftrag.php @@ -6711,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/fibu_buchungen.php b/www/pages/fibu_buchungen.php index e7f7ced0..2702b724 100644 --- a/www/pages/fibu_buchungen.php +++ b/www/pages/fibu_buchungen.php @@ -335,7 +335,7 @@ class Fibu_buchungen { SUM(fob.betrag) as doc_saldo FROM fibu_objekte fo - INNER JOIN + LEFT JOIN fibu_buchungen_alle fob ON fo.typ = fob.typ AND fo.id = fob.id From 64d6b903126ccc2473fd75440653a41ce7570fab Mon Sep 17 00:00:00 2001 From: OpenXE <> Date: Sat, 15 Apr 2023 10:48:47 +0200 Subject: [PATCH 51/61] fibu_buchungen usability improvements --- upgrade/data/db_schema.json | 2 +- www/pages/auftrag.php | 2 +- www/pages/content/fibu_buchungen_edit.tpl | 2 +- .../content/fibu_buchungen_einzelzuordnen.tpl | 41 +++++++++----- www/pages/content/fibu_buchungen_list.tpl | 3 +- www/pages/content/fibu_buchungen_zuordnen.tpl | 8 +-- www/pages/fibu_buchungen.php | 55 ++++++++++++------- 7 files changed, 70 insertions(+), 43 deletions(-) diff --git a/upgrade/data/db_schema.json b/upgrade/data/db_schema.json index 2a2c1f9f..33b66558 100644 --- a/upgrade/data/db_schema.json +++ b/upgrade/data/db_schema.json @@ -117363,7 +117363,7 @@ { "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` <> '' and `auftrag`.`status` <> 'abgeschlossen' 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` <> '' and `rechnung`.`zahlungsstatus` <> 'bezahlt' 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` <> '' and `gutschrift`.`zahlungsstatus` <> 'bezahlt' 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` <> '' and `verbindlichkeit`.`status` <> 'bezahlt' 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` = ''" + "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` <> '' and `rechnung`.`zahlungsstatus` <> 'bezahlt' 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` <> '' and `gutschrift`.`zahlungsstatus` <> 'bezahlt' 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` <> '' and `verbindlichkeit`.`status` <> 'bezahlt' 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` = ''" }, { "name": "fibu_buchungen_alle_view", diff --git a/www/pages/auftrag.php b/www/pages/auftrag.php index b77d9802..3d5c29d3 100644 --- a/www/pages/auftrag.php +++ b/www/pages/auftrag.php @@ -3434,7 +3434,7 @@ class Auftrag extends GenAuftrag $zahlung['datum'], " ".ucfirst($zahlung['doc_typ'])." - ".$zahlung['doc_belegnr']." + ".$zahlung['doc_info']." ", $zahlung['betrag'], $zahlung['waehrung'] diff --git a/www/pages/content/fibu_buchungen_edit.tpl b/www/pages/content/fibu_buchungen_edit.tpl index d47a658b..b8b158ac 100644 --- a/www/pages/content/fibu_buchungen_edit.tpl +++ b/www/pages/content/fibu_buchungen_edit.tpl @@ -17,7 +17,7 @@

    - {|Buchung|} + {|Einzelbuchung bearbeiten.|} diff --git a/www/pages/content/fibu_buchungen_einzelzuordnen.tpl b/www/pages/content/fibu_buchungen_einzelzuordnen.tpl index 8d72c7b2..c775a85c 100644 --- a/www/pages/content/fibu_buchungen_einzelzuordnen.tpl +++ b/www/pages/content/fibu_buchungen_einzelzuordnen.tpl @@ -9,21 +9,27 @@
    -
    - - {|Buchung|} - - - Saldo: [DOC_SALDO]
    - "[DOC_ZUORDNUNG]" -
    -
    - [TAB1] - -
    +
    +
    + {|Einzelsaldo zuordnen und auf mehrere Gegenbelege oder Sachkonto verbuchen.|} +
    + + + + + + +
    + "[DOC_ZUORDNUNG]" +
    + Saldo: [DOC_SALDO] +
    +
    + [TAB1] +
    - Stapelverarbeitung + Stapelverarbeitung @@ -32,13 +38,18 @@   +  Sachkonto: + + + + - + diff --git a/www/pages/fibu_buchungen.php b/www/pages/fibu_buchungen.php index 2702b724..972388e2 100644 --- a/www/pages/fibu_buchungen.php +++ b/www/pages/fibu_buchungen.php @@ -235,7 +235,7 @@ class Fibu_buchungen { ' ', ['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).",')'))"], + ['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 ( ' 'fo.typ'], @@ -462,9 +469,11 @@ class Fibu_buchungen { '' ); + $calculated = 'CONVERT(COALESCE(-SUM(fba.betrag*(1-('.$abschlag.'/100))),0),DECIMAL(12,2))'; + $werte = array ( 'app->erp->FormatUCfirst("fo.typ")." as typ, ".$this->app->erp->ConcatSQL($objektlink)." AS info, ".$this->app->erp->ConcatSQL($parentlink)." AS parent_info, - SUM(fba.betrag) as saldonum, + ".$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 @@ -498,7 +508,7 @@ class Fibu_buchungen { //echo($sql." WHERE ".$where." ".$groupby); - $sumcol= array(6); + $sumcol= array(6,8); break; } @@ -567,8 +577,7 @@ class Fibu_buchungen { /* * Edit fibu_buchungen item - * If id is empty, create a new one - */ + */ function fibu_buchungen_edit() { $id = $this->app->Secure->GetGET('id'); @@ -597,14 +606,14 @@ class Fibu_buchungen { $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", "Zurück zur Übersicht"); + $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)) { - // New item - $id = 'NULL'; + $this->fibu_buchungen_list(); + return; } if ($submit != '') @@ -648,6 +657,7 @@ class Fibu_buchungen { } else { $this->app->Tpl->Set('MESSAGE', "
    Die Einstellungen wurden erfolgreich übernommen.
    "); } + $this->fibu_rebuild_tables(); } @@ -871,6 +881,7 @@ class Fibu_buchungen { $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__); @@ -905,6 +916,8 @@ class Fibu_buchungen { $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); $account_id = null; if (!empty($sachkonto)) { @@ -1006,15 +1019,19 @@ class Fibu_buchungen { } // Reload after booking - $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']; + $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)." ".$von_info); - $this->app->Tpl->Set('DOC_SALDO',$von_saldo." ".$von_waehrung); + $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->erp->Headlines('Buchhaltung','Einzelzuordnung '.strtoupper($von_typ)); $this->app->YUI->TableSearch('TAB1', 'fibu_buchungen_einzelzuordnen', "show", "", "", basename(__FILE__), __CLASS__); From 4720cc8e949aca178709e8ddeda142ef3001a8aa Mon Sep 17 00:00:00 2001 From: OpenXE <> Date: Sat, 15 Apr 2023 18:45:09 +0200 Subject: [PATCH 52/61] fibu_buchungen einzelzuordnen multifilter --- .../content/fibu_buchungen_einzelzuordnen.tpl | 86 ++++++++++++------- www/pages/fibu_buchungen.php | 26 +++++- 2 files changed, 79 insertions(+), 33 deletions(-) diff --git a/www/pages/content/fibu_buchungen_einzelzuordnen.tpl b/www/pages/content/fibu_buchungen_einzelzuordnen.tpl index c775a85c..f1fe83b4 100644 --- a/www/pages/content/fibu_buchungen_einzelzuordnen.tpl +++ b/www/pages/content/fibu_buchungen_einzelzuordnen.tpl @@ -1,3 +1,4 @@ +
    • @@ -5,28 +6,55 @@
      [MESSAGE] [FORMHANDLEREVENT] + {|Einzelsaldo zuordnen und auf mehrere Gegenbelege oder Sachkonto verbuchen.|} +
      +
      +
      +
      +
      +
     Mit Abweichung buchen 
    + % Abschlag auf Buchungsbetrag
     alle markieren    +  Sachkonto:
    + + + + + + +
    + "[DOC_ZUORDNUNG]" +
    + Saldo: [DOC_SALDO] +
    +
    +
    +
    +
    +
    +
    + + + + + + + + +
    + Multifilter für "Info" (Trennzeichen ',; ') +
    + + + +
    +
    +
    +
    + +
    - -
    - {|Einzelsaldo zuordnen und auf mehrere Gegenbelege oder Sachkonto verbuchen.|} - - - - - - - -
    - "[DOC_ZUORDNUNG]" -
    - Saldo: [DOC_SALDO] -
    -
    - [TAB1] - + [TAB1]
    Stapelverarbeitung @@ -35,27 +63,25 @@ + % Abschlag auf Buchungsbetrag - - - +
     alle markieren  -  Sachkonto: - - + +
    - % Abschlag auf Buchungsbetrag
    - - + +
    @@ -66,6 +92,8 @@
    + +