'use strict' const { Model } = require('sequelize') module.exports = (sequelize, DataTypes) => { class OtherParameterMasterValue extends Model { } OtherParameterMasterValue.init( { value: { type: DataTypes.STRING }, createdby: { type: DataTypes.INTEGER }, updatedby: { type: DataTypes.INTEGER }, is_active: {type : DataTypes.INTEGER} }, { sequelize, tableName: 'other_parameter_master_value', modelName: 'OtherParameterMasterValue', } ) return OtherParameterMasterValue }