summaryrefslogtreecommitdiff
path: root/migration/1556746559567-UserProfile.ts
blob: 2dc7349cc19cca1aad26d31065ab77e02f04fea8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import {MigrationInterface, QueryRunner} from "typeorm";

export class UserProfile1556746559567 implements MigrationInterface {

    public async up(queryRunner: QueryRunner): Promise<any> {
        await queryRunner.query(`ALTER TABLE "user_profile" ALTER COLUMN "githubId" TYPE VARCHAR(64) USING "githubId"::VARCHAR(64)`);
        await queryRunner.query(`ALTER TABLE "user_profile" ALTER COLUMN "discordExpiresDate" TYPE VARCHAR(64) USING "discordExpiresDate"::VARCHAR(64)`);
    }

    public async down(queryRunner: QueryRunner): Promise<any> {
        await queryRunner.query(`UPDATE "user_profile" SET github = FALSE, discord = FALSE`);
        await queryRunner.query(`ALTER TABLE "user_profile" ALTER COLUMN "githubId" TYPE INTEGER USING NULL`);
        await queryRunner.query(`ALTER TABLE "user_profile" ALTER COLUMN "discordExpiresDate" TYPE INTEGER USING NULL`);
    }

}