ToolJet/server/migrations/1656268228782-OrganizationsInheritSSO.ts
Midhun G S 3297fdb68a
Instance level SSO for Multi-Workpsace (#3441)
* changes

* changes

* e2e testcases

* fixes

* fix

* changes

* e2e fixes

* test cases

* clean up

* redirection changes

* style changes

* test cases

* testcases fix

* added test cases

* doc changes

* doc changes

* invitation token fix

* SSO General settings page changes

* added sso button to signup pages

* added helper text

* fix

* test case fixes

* fix
2022-07-18 11:40:52 +05:30

15 lines
458 B
TypeScript

import { MigrationInterface, QueryRunner, TableColumn } from 'typeorm';
export class OrganizationsInheritSSO1656268228782 implements MigrationInterface {
public async up(queryRunner: QueryRunner): Promise<void> {
await queryRunner.addColumns('organizations', [
new TableColumn({
name: 'inherit_sso',
type: 'boolean',
default: true,
}),
]);
}
public async down(queryRunner: QueryRunner): Promise<void> {}
}