Colubrina/backend/migrations/20220519081007-lastRead.js

20 lines
388 B
JavaScript
Raw Normal View History

2022-06-05 22:58:18 +10:00
"use strict"
module.exports = {
up: async (queryInterface, Sequelize) => {
2022-07-29 21:56:16 +10:00
await queryInterface.addColumn("ChatAssociations", "lastRead", {
2022-06-05 22:58:18 +10:00
type: Sequelize.BIGINT,
allowNull: true
})
},
down: async (queryInterface, Sequelize) => {
/**
* Add reverting commands here.
*
* Example:
* await queryInterface.dropTable('users');
*/
}
}