adding payment status to a charge and getting all charges for a donor
This commit is contained in:
@@ -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;
|
||||
};
|
||||
Reference in New Issue
Block a user