changes to flow of payments for different fees shown

This commit is contained in:
Arjun Patel
2019-04-30 03:29:03 -07:00
parent 98d165eab1
commit db960ee554
6 changed files with 79 additions and 74 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ module.exports = (sequelize, DataTypes) => {
{
id: { type: DataTypes.UUID, primaryKey: true, allowNull: false },
description: DataTypes.STRING,
amount: DataTypes.INTEGER,
amount: DataTypes.DOUBLE,
payment_status: {
type: DataTypes.STRING,
+1 -1
View File
@@ -14,7 +14,7 @@ module.exports = (sequelize, DataTypes) => {
allowNull: false
},
amount: {
type: DataTypes.INTEGER,
type: DataTypes.DOUBLE,
allowNull: false
},
monthly: {
+1 -1
View File
@@ -27,7 +27,7 @@ module.exports = (sequelize, DataTypes) => {
}
},
amount: {
type: DataTypes.INTEGER,
type: DataTypes.DOUBLE,
allowNull: false
}
},