Files
toho-miku/models/bot.js
Minzkraut 0af9038b6e DB: Add and migrate columns in preparation for patreon perks
Renaming nextDrop/Pull required a bit of a hack resulting in
it no longer having a default value.
2023-03-09 23:29:46 +01:00

27 lines
650 B
JavaScript

'use strict';
const {
Model
} = require('sequelize');
module.exports = (sequelize, DataTypes) => {
class Bot 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
}
}
Bot.init({
maintenance: DataTypes.BOOLEAN,
adminIDs: DataTypes.STRING,
patreonTierRoles: DataTypes.STRING,
pullTimeout: DataTypes.INTEGER,
dropTimeout: DataTypes.INTEGER
}, {
sequelize,
modelName: 'Bot',
});
return Bot;
};