enhanced view

This commit is contained in:
Jottyfan
2023-12-16 21:32:04 +01:00
parent 5ca0b3f7fa
commit b46d3d05c0
27 changed files with 98 additions and 1611 deletions

View File

@ -16,7 +16,6 @@ import org.jooq.ForeignKey;
import org.jooq.Identity;
import org.jooq.Name;
import org.jooq.Record;
import org.jooq.Row3;
import org.jooq.Schema;
import org.jooq.Table;
import org.jooq.TableField;
@ -169,13 +168,4 @@ public class TLessonSubject extends TableImpl<TLessonSubjectRecord> {
public TLessonSubject rename(Name name) {
return new TLessonSubject(name, null);
}
// -------------------------------------------------------------------------
// Row3 type methods
// -------------------------------------------------------------------------
@Override
public Row3<Integer, Integer, Integer> fieldsRow() {
return (Row3) super.fieldsRow();
}
}