toward renaming mig to emig and tweaking the directory layout
[migration-tools.git] / emig.d / sql / init / 011_reporter_tables.sql
1 CREATE TABLE report (id SERIAL, create_date TIMESTAMPTZ, name TEXT);
2 CREATE TABLE reporter_columns (id SERIAL, report INTEGER, header TEXT, ordinal_position INTEGER);
3 CREATE TABLE reporter_rows (id SERIAL, report INTEGER, row INTEGER, ordinal_position INTEGER);
4
5