Course Format Options Table Schema (course_format_options)


Description

Stores format-specific options for the course or course section

course_format_options table columns

Column Type Size Nulls Auto Default Children Parents Comments
id BIGINT 19 null
courseid BIGINT 19 null
course.id courformopti_cou2_fk R

Id of the course

format VARCHAR 21

Format this option is for

sectionid BIGINT 19 0

Null if this is a course option, otherwise id of the section this option is for

name VARCHAR 100

Name of the format option

value LONGTEXT 2147483647 null

Value of the format option

Table contained -1 rows

course_format_options table indexes

Constraint Name Type Sort Column(s)
PRIMARY Primary key Asc id
courformopti_cou_ix Performance Asc courseid
courformopti_couforsecnam_uix Must be unique Asc/Asc/Asc/Asc courseid + format + sectionid + name

course_format_options table relationships