USE edi;

-- edi.ektConfig definition
CREATE TABLE `ektConfig` (
  `usefulAuctionLeftSegmentLength` int(11) NOT NULL DEFAULT 13 COMMENT 'Segmento aprovechable del codigo de barras de Floricode',
  `standardBarcodeLength` int(11) NOT NULL DEFAULT 20 COMMENT 'Longitud del código de barras standard de Floricode',
  `floridayBarcodeLength` int(11) NOT NULL DEFAULT 6,
  `floramondoBarcodeLength` int(11) NOT NULL DEFAULT 13 COMMENT 'Longitud del código de los albaranes múltiples de Floramondo',
  `defaultKlo` int(11) NOT NULL DEFAULT 99 COMMENT 'Reloj por defecto'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

INSERT INTO ektConfig (usefulAuctionLeftSegmentLength)
	VALUES (DEFAULT);

DROP TABLE IF EXISTS testData;