synt_backend
Version:
Synt light-weight node backend service
27 lines (26 loc) • 630 B
JavaScript
const { Model } = require("sequelize");
module.exports = (sequelize, DataTypes) => {
class Translation 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
Translation.belongsTo(models.Label);
}
}
Translation.init(
{
language: DataTypes.STRING,
value: DataTypes.STRING,
},
{
sequelize,
modelName: "Translation",
}
);
return Translation;
};
;