2022-06-07 11:06:42 +00:00
|
|
|
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
|
2022-06-09 08:13:45 +00:00
|
|
|
on `edi`.`fileConfig` (name);
|
2022-06-07 11:06:42 +00:00
|
|
|
|
|
|
|
|
|
|
|
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);
|
|
|
|
|