X-Git-Url: http://git.equinoxoli.org/?p=migration-tools.git;a=blobdiff_plain;f=mig-sql%2Finit%2F011_reporter_tables.sql;fp=mig-sql%2Finit%2F011_reporter_tables.sql;h=43bff3996767aadc77c90f678cee7f657bd6a920;hp=0000000000000000000000000000000000000000;hb=9fbf1dcdf59deee10d2636e9367cac4153fa49dd;hpb=64ea2a1231993ed5a96add091ec86a3dfc1d284d diff --git a/mig-sql/init/011_reporter_tables.sql b/mig-sql/init/011_reporter_tables.sql new file mode 100644 index 0000000..43bff39 --- /dev/null +++ b/mig-sql/init/011_reporter_tables.sql @@ -0,0 +1,5 @@ +CREATE TABLE report (id SERIAL, create_date TIMESTAMPZ, name TEXT); +CREATE TABLE reporter_columns (id SERIAL, report INTEGER, header TEXT, ordinal_position INTEGER); +CREATE TABLE reporter_rows (id SERIAL, report INTEGER, row INTEGER, ordinal_position INTEGER); + +