11 lines
No EOL
283 B
JavaScript
11 lines
No EOL
283 B
JavaScript
'use strict';
|
|
module.exports = (sequelize, DataTypes) => {
|
|
const ytpHash = sequelize.define('ytpHash', {
|
|
hash: DataTypes.STRING,
|
|
messageID: DataTypes.BIGINT
|
|
}, {});
|
|
ytpHash.associate = function(models) {
|
|
// associations can be defined here
|
|
};
|
|
return ytpHash;
|
|
}; |