Files
outline/server/migrations/20221112162341-attachment-tracking.js
2022-11-12 08:41:59 -08:00

14 lines
329 B
JavaScript

"use strict";
module.exports = {
up: async (queryInterface, Sequelize) => {
await queryInterface.addColumn("attachments", "lastAccessedAt", {
type: Sequelize.DATE,
allowNull: true,
});
},
down: async (queryInterface) => {
await queryInterface.removeColumn("attachments", "lastAccessedAt");
},
};