adding payment status to a charge and getting all charges for a donor

This commit is contained in:
Arjun Patel
2019-03-27 09:46:10 -07:00
parent 2caed4fc4c
commit 02c1b2c603
5 changed files with 102 additions and 37 deletions
+12
View File
@@ -0,0 +1,12 @@
"use strict";
module.exports = (sequelize, DataTypes) => {
const PaymentStatus = sequelize.define("PaymentStatus", {
name: {
type: DataTypes.STRING,
primaryKey: true,
allowNull: false
}
});
return PaymentStatus;
};