Drop: Add drop history

This commit is contained in:
2022-08-28 22:19:03 +02:00
parent cf7c2769e3
commit dea943bee4
4 changed files with 69 additions and 2 deletions

23
models/drophistory.js Normal file
View 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;
};