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:
--> change to