-
Notifications
You must be signed in to change notification settings - Fork 234
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: rename service type to service provider type and add new fields…
… for user and project IDs in service provider
- Loading branch information
Showing
6 changed files
with
81 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
Common/Server/Infrastructure/Postgres/SchemaMigrations/1738756463613-MigrationName.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import { MigrationInterface, QueryRunner } from "typeorm"; | ||
|
||
export class MigrationName1738756463613 implements MigrationInterface { | ||
public name = 'MigrationName1738756463613' | ||
|
||
public async up(queryRunner: QueryRunner): Promise<void> { | ||
await queryRunner.query(`ALTER TABLE "UserAuthToken" DROP COLUMN "serviceType"`); | ||
await queryRunner.query(`ALTER TABLE "ProjectAuthToken" DROP COLUMN "serviceType"`); | ||
await queryRunner.query(`ALTER TABLE "UserAuthToken" ADD "serviceProviderUserId" character varying(500) NOT NULL`); | ||
await queryRunner.query(`ALTER TABLE "UserAuthToken" ADD "serviceProviderType" character varying(500) NOT NULL`); | ||
await queryRunner.query(`ALTER TABLE "ProjectAuthToken" ADD "serviceProviderType" character varying(500) NOT NULL`); | ||
await queryRunner.query(`ALTER TABLE "ProjectAuthToken" ADD "serviceProviderProjectId" character varying(500) NOT NULL`); | ||
} | ||
|
||
public async down(queryRunner: QueryRunner): Promise<void> { | ||
await queryRunner.query(`ALTER TABLE "ProjectAuthToken" DROP COLUMN "serviceProviderProjectId"`); | ||
await queryRunner.query(`ALTER TABLE "ProjectAuthToken" DROP COLUMN "serviceProviderType"`); | ||
await queryRunner.query(`ALTER TABLE "UserAuthToken" DROP COLUMN "serviceProviderType"`); | ||
await queryRunner.query(`ALTER TABLE "UserAuthToken" DROP COLUMN "serviceProviderUserId"`); | ||
await queryRunner.query(`ALTER TABLE "ProjectAuthToken" ADD "serviceType" character varying(500) NOT NULL`); | ||
await queryRunner.query(`ALTER TABLE "UserAuthToken" ADD "serviceType" character varying(500) NOT NULL`); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters