Adding the base for the currency system

This commit is contained in:
ION606
2022-04-14 21:49:11 -04:00
parent 4ca09e072a
commit 737d784c6e
8 changed files with 1546 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
module.exports = (sequelize, DataTypes) => {
return sequelize.define('currency_shop', {
name: {
type: DataTypes.STRING,
unique: true,
},
cost: {
type: DataTypes.INTEGER,
allowNull: false,
},
}, {
timestamps: false,
});
};