33 lines
701 B
JavaScript
33 lines
701 B
JavaScript
|
'use strict';
|
||
|
module.exports = {
|
||
|
up: (queryInterface, Sequelize) => {
|
||
|
return queryInterface.createTable('ytpHashes', {
|
||
|
id: {
|
||
|
allowNull: false,
|
||
|
autoIncrement: true,
|
||
|
primaryKey: true,
|
||
|
type: Sequelize.INTEGER
|
||
|
},
|
||
|
hash: {
|
||
|
type: Sequelize.STRING
|
||
|
},
|
||
|
link: {
|
||
|
type: Sequelize.STRING
|
||
|
},
|
||
|
messageID: {
|
||
|
type: Sequelize.BIGINT
|
||
|
},
|
||
|
createdAt: {
|
||
|
allowNull: false,
|
||
|
type: Sequelize.DATE
|
||
|
},
|
||
|
updatedAt: {
|
||
|
allowNull: false,
|
||
|
type: Sequelize.DATE
|
||
|
}
|
||
|
});
|
||
|
},
|
||
|
down: (queryInterface, Sequelize) => {
|
||
|
return queryInterface.dropTable('ytpHashes');
|
||
|
}
|
||
|
};
|