Zoonk.Catalog.CourseTranslation (Zoonk v0.1.0-dev)
View SourceDefines the CourseTranslation
schema.
This schema stores translated content for courses in different languages. Each course can have multiple translations, one for each supported language.
Fields
Field Name | Type | Description |
---|---|---|
course_id | Integer | The ID of the course this translation belongs to. |
language | Ecto.Enum | The language of this translation. |
title | String | The title of the course in the specified language. |
description | String | The description of the course in the specified language. |
inserted_at | DateTime | Timestamp when the translation was created. |
updated_at | DateTime | Timestamp when the translation was last updated. |