blob: eb8e16eca161939d898ea8cd2d05d07791093a2c [file] [log] [blame]
DROP TABLE aggregationRepo1 IF EXISTS;
DROP TABLE aggregationRepo1_completed IF EXISTS;
CREATE TABLE aggregationRepo1 (
id varchar(255) NOT NULL,
exchange blob NOT NULL,
constraint aggregationRepo1_pk PRIMARY KEY (id)
);
CREATE TABLE aggregationRepo1_completed (
id varchar(255) NOT NULL,
exchange blob NOT NULL,
constraint aggregationRepo1_completed_pk PRIMARY KEY (id)
);