mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-26 07:57:17 +00:00
* 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
15 lines
458 B
TypeScript
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> {}
|
|
}
|