2019-10-27 00:55:33 +02:00
|
|
|
'use strict';
|
|
|
|
module.exports = (sequelize, DataTypes) => {
|
2020-04-30 22:20:07 +02:00
|
|
|
const donator = sequelize.define('donator', {
|
|
|
|
userID: DataTypes.BIGINT,
|
|
|
|
comment: DataTypes.STRING
|
|
|
|
}, {});
|
|
|
|
donator.associate = function(models) {
|
|
|
|
// associations can be defined here
|
|
|
|
};
|
|
|
|
return donator;
|
2019-10-27 00:55:33 +02:00
|
|
|
};
|