Index

public.course_language_groups

Description

Group of courses that have the same content but in different languages.

Columns

Name Type Default Nullable Children Parents Comment
created_at timestamp with time zone now() false Timestamp when the record was created.
deleted_at timestamp with time zone true Timestamp when the record was deleted. If null, the record is not deleted.
id uuid uuid_generate_v4() false public.courses public.exercise_language_groups public.page_language_groups public.user_course_settings A unique, stable identifier for the record.
updated_at timestamp with time zone now() false Timestamp when the record was last updated. The field is updated automatically by the set_timestamp trigger.

Constraints

Name Type Definition
course_language_groups_pkey PRIMARY KEY PRIMARY KEY (id)

Indexes

Name Definition
course_language_groups_pkey CREATE UNIQUE INDEX course_language_groups_pkey ON public.course_language_groups USING btree (id)

Triggers

Name Definition
set_timestamp CREATE TRIGGER set_timestamp BEFORE UPDATE ON public.course_language_groups FOR EACH ROW EXECUTE FUNCTION trigger_set_timestamp()

Relations

er

Generated by tbls