CREATE TABLE `edi`.`fileConfig`
(
    name     varchar(25)             NOT NULL,
    checksum text                    NULL,
    keyValue tinyint(1) default true NOT NULL,
    constraint fileConfig_pk
        primary key (name)
);

create unique index fileConfig_name_uindex
    on  `edi`.`fileConfig` (name);


INSERT INTO `edi`.`fileConfig` (name, checksum, keyValue)
VALUES ('FEC010104', null, 0);

INSERT INTO `edi`.`fileConfig` (name, checksum, keyValue)
VALUES ('VBN020101', null, 1);

INSERT INTO `edi`.`fileConfig` (name, checksum, keyValue)
VALUES ('florecompc2', null, 1);