dm-tools
Version:
Dev Mentor Project Creator Tools
25 lines • 578 B
JavaScript
;
const {
Model
} = require('sequelize');
module.exports = (sequelize, DataTypes) => {
class students extends Model {
/**
* Helper method for defining associations.
* This method is not a part of Sequelize lifecycle.
* The `models/index` file will call this method automatically.
*/
static associate(models) {
// define association here
}
}
students.init({
name: DataTypes.STRING,
surname: DataTypes.STRING,
email: DataTypes.STRING
}, {
sequelize,
modelName: 'students',
});
return students;
};