synt_backend
Version:
Synt light-weight node backend service
24 lines • 544 B
JavaScript
;
const {
Model
} = require('sequelize');
module.exports = (sequelize, DataTypes) => {
class Journal 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
}
};
Journal.init({
code: DataTypes.INTEGER,
name: DataTypes.STRING
}, {
sequelize,
modelName: 'Journal',
});
return Journal;
};