mirror of
https://github.com/outline/outline.git
synced 2026-06-13 11:25:03 +03:00
14 lines
301 B
JavaScript
14 lines
301 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
async up(queryInterface, Sequelize) {
|
|
await queryInterface.addColumn("teams", "suspendedAt", {
|
|
type: Sequelize.DATE,
|
|
allowNull: true,
|
|
});
|
|
},
|
|
async down(queryInterface) {
|
|
await queryInterface.removeColumn("teams", "suspendedAt");
|
|
},
|
|
};
|