Drop: Add drop history
This commit is contained in:
23
models/drophistory.js
Normal file
23
models/drophistory.js
Normal file
@@ -0,0 +1,23 @@
|
||||
'use strict';
|
||||
const {
|
||||
Model
|
||||
} = require('sequelize');
|
||||
module.exports = (sequelize, DataTypes) => {
|
||||
class DropHistory extends Model {
|
||||
/**
|
||||
* Helper method for defining associations.
|
||||
* This method is not a part of Sequelize lifecycle.
|
||||
* The `models/index` file will call this method automatically.
|
||||
*/
|
||||
static associate(models) {
|
||||
// define association here
|
||||
}
|
||||
}
|
||||
DropHistory.init({
|
||||
dropData: DataTypes.JSON
|
||||
}, {
|
||||
sequelize,
|
||||
modelName: 'DropHistory',
|
||||
});
|
||||
return DropHistory;
|
||||
};
|
||||
Reference in New Issue
Block a user