mirror of
https://github.com/ION606/selmerBot.git
synced 2026-05-15 05:36:54 +00:00
CURRENCY UPDATE
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
module.exports = (sequelize, DataTypes) => {
|
||||
return sequelize.define('currency_shop', {
|
||||
name: {
|
||||
type: DataTypes.STRING,
|
||||
unique: true,
|
||||
},
|
||||
cost: {
|
||||
type: DataTypes.INTEGER,
|
||||
allowNull: false,
|
||||
},
|
||||
icon: {
|
||||
type: DataTypes.STRING,
|
||||
unique: true,
|
||||
},
|
||||
}, {
|
||||
timestamps: false,
|
||||
});
|
||||
};
|
||||
Reference in New Issue
Block a user