public.country
Description
Columns
| Name | Type | Default | Nullable | Children | Parents | Comment | 
|---|---|---|---|---|---|---|
| country_id | integer | nextval('country_country_id_seq'::regclass) | false | public.city | ||
| country | text | false | ||||
| last_update | timestamp with time zone | now() | false | 
Constraints
| Name | Type | Definition | 
|---|---|---|
| country_pkey | PRIMARY KEY | PRIMARY KEY (country_id) | 
Indexes
| Name | Definition | 
|---|---|
| country_pkey | CREATE UNIQUE INDEX country_pkey ON public.country USING btree (country_id) | 
Triggers
| Name | Definition | 
|---|---|
| last_updated | CREATE TRIGGER last_updated BEFORE UPDATE ON public.country FOR EACH ROW EXECUTE FUNCTION last_updated() |