mirror of
https://github.com/outline/outline.git
synced 2026-06-26 17:54:24 +03:00
15 lines
303 B
JavaScript
15 lines
303 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
up: async (queryInterface, Sequelize) => {
|
|
return queryInterface.addColumn("teams", "flags", {
|
|
type: Sequelize.JSONB,
|
|
allowNull: true,
|
|
});
|
|
},
|
|
|
|
down: async (queryInterface) => {
|
|
return queryInterface.removeColumn("teams", "flags");
|
|
},
|
|
};
|