aboutsummaryrefslogtreecommitdiffstats
path: root/migrations/000001_create_datamaps_datamap_line_tables.up.sql
blob: be96b96025300f1222835acd6f40fddc592774f3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
CREATE TABLE IF NOT EXISTS datamaps (
  id bigserial PRIMARY KEY,
  name text,
  description text,
  created timestamp(0) with time zone NOT NULL DEFAULT NOW()
);

CREATE TABLE IF NOT EXISTS datamap_lines (
  datamap_line_id bigserial PRIMARY KEY,
  datamap_id bigserial REFERENCES datamaps ON DELETE CASCADE,
  key text,
  sheet text,
  data_type text,
  cellref text
);