UNPKG
discord-weather-bot
Version:
latest (8.6.2)
8.6.2
8.6.1
8.6.0
8.5.9
Discord Bot
discord-weather-bot
/
Currency
/
models
/
CurrencyShop.js
14 lines
•
259 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module.exports = (sequelize, DataTypes) => {
return
sequelize.
define
(
'currency_shop'
, {
name
: {
type
: DataTypes.STRING,
unique
:
true
, },
cost
: {
type
: DataTypes.INTEGER,
allowNull
:
false
, }, }, {
timestamps
:
false
, }); };