mirror of
https://github.com/outline/outline.git
synced 2026-06-29 11:14:23 +03:00
1a893b0e45
Adds group sync from external authentication providers, allowing team group memberships to be automatically managed based on provider data on sign-in in the future.
16 lines
361 B
JavaScript
16 lines
361 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
async up(queryInterface, Sequelize) {
|
|
await queryInterface.addColumn("authentication_providers", "settings", {
|
|
type: Sequelize.JSONB,
|
|
allowNull: true,
|
|
defaultValue: null,
|
|
});
|
|
},
|
|
|
|
async down(queryInterface) {
|
|
await queryInterface.removeColumn("authentication_providers", "settings");
|
|
},
|
|
};
|