cybergreen-net / pm

Tech project management repo (issue tracker only)
2 stars 1 forks source link

please change the column type of dim_country #103

Open aaronkaplan opened 7 years ago

aaronkaplan commented 7 years ago
prod=> \d dim_country
  Table "public.dim_country"
  Column   | Type | Modifiers
-----------+------+-----------
 id        | text | not null
 name      | text |
 slug      | text |
 region    | text |
 continent | text |
Indexes:

--> change to

prod=> \d dim_country
  Table "public.dim_country"
  Column   | Type | Modifiers
-----------+------+-----------
 id        | varchar(2) | not null
 name      | text |
 slug      | text |
 region    | text |
 continent | text |
Indexes: