Files
Ucharify_api/models/PaymentStatus.js
T

13 lines
248 B
JavaScript

"use strict";
module.exports = (sequelize, DataTypes) => {
const PaymentStatus = sequelize.define("PaymentStatus", {
name: {
type: DataTypes.STRING,
primaryKey: true,
allowNull: false
}
});
return PaymentStatus;
};