40316-vm/backend/src/db/models/teachers.js
2026-06-24 15:52:42 +00:00

135 lines
1.5 KiB
JavaScript

module.exports = function(sequelize, DataTypes) {
const teachers = sequelize.define(
'teachers',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
nome: {
type: DataTypes.TEXT,
},
especialidade: {
type: DataTypes.TEXT,
},
telefone: {
type: DataTypes.TEXT,
},
email: {
type: DataTypes.TEXT,
},
status: {
type: DataTypes.ENUM,
values: [
"ativo",
"inativo"
],
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
teachers.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
db.teachers.hasMany(db.assessments, {
as: 'assessments_teacher',
foreignKey: {
name: 'teacherId',
},
constraints: false,
});
//end loop
db.teachers.belongsTo(db.schools, {
as: 'school',
foreignKey: {
name: 'schoolId',
},
constraints: false,
});
db.teachers.belongsTo(db.users, {
as: 'createdBy',
});
db.teachers.belongsTo(db.users, {
as: 'updatedBy',
});
};
return teachers;
};