fixing amount for each separate organization
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
module.exports = (sequelize, DataTypes) => {
|
||||
const OrgBank = sequelize.define('org_bank', {
|
||||
id: {
|
||||
type: DataTypes.INTEGER,
|
||||
primaryKey: true,
|
||||
autoIncrement: true
|
||||
}
|
||||
});
|
||||
return OrgBank;
|
||||
};
|
||||
Reference in New Issue
Block a user