5a0bc7727405dbe9be96fa430064f48c01e7d7a0
[migration-tools.git] / mig-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