Project

General

Profile

1 8163 aaronmk
#!/bin/bash
2
# :mode=transact-sql:
3
cd "$(dirname "$0")"
4
. ../../../lib/import.sh
5
6 8164 aaronmk
map_table
7 8163 aaronmk
psql <<'EOF'
8 8184 aaronmk
SELECT set_col_types('"REF_UNIT"', ARRAY[
9 8172 aaronmk
  ('STATECD', 'integer')
10
, ('UNITCD', 'integer')
11 8184 aaronmk
]::col_cast[]);
12 8126 aaronmk
13 8184 aaronmk
SELECT create_if_not_exists($$ALTER TABLE "REF_UNIT" ADD CONSTRAINT "REF_UNIT.unique" UNIQUE ("STATECD", "UNITCD")$$);
14 8208 aaronmk
EOF
15
mk_derived