making needed changes to make the table names strict

This commit is contained in:
Arjun Patel
2019-04-13 18:06:18 -07:00
parent 7fd0128864
commit 9faff9e6e8
12 changed files with 428 additions and 329 deletions
+33 -24
View File
@@ -2,32 +2,41 @@ const Organization = require('./Organization'),
Grant = require('./Grant');
module.exports = (sequelize, DataTypes) => {
const GrantOrganization = sequelize.define('GrantOrganization', {
id: {
type: DataTypes.INTEGER,
primaryKey: true,
autoIncrement: true
},
grant_id: {
type: DataTypes.INTEGER,
allowNull: false,
references: {
model: Grant(sequelize, DataTypes),
key: 'id'
const GrantOrganization = sequelize.define(
'GrantOrganization',
{
id: {
type: DataTypes.INTEGER,
primaryKey: true,
autoIncrement: true
},
grant_id: {
type: DataTypes.INTEGER,
allowNull: false,
references: {
model: Grant(sequelize, DataTypes),
key: 'id'
}
},
organization_id: {
type: DataTypes.UUID,
allowNull: false,
references: {
model: Organization(sequelize, DataTypes),
key: 'id'
}
},
amount: {
type: DataTypes.INTEGER,
allowNull: false
}
},
organization_id: {
type: DataTypes.UUID,
allowNull: false,
references: {
model: Organization(sequelize, DataTypes),
key: 'id'
}
},
amount: {
type: DataTypes.INTEGER,
allowNull: false
{
freezeTableName: true,
// define the table's name
tableName: 'grants_organizations'
}
});
);
return GrantOrganization;
};