teacher property
latefinal
Reference to the authoring teacher (the syllabus's code is their code).
Implementation
@override
late final GeneratedColumn<int> teacher = GeneratedColumn<int>(
'teacher',
aliasedName,
false,
type: DriftSqlType.int,
requiredDuringInsert: true,
defaultConstraints: GeneratedColumn.constraintIsAlways(
'REFERENCES teachers (id)',
),
);