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