2023-10-13 10:17:29 -06:00
|
|
|
import { MigrationInterface, QueryRunner } from "typeorm";
|
|
|
|
export class UserProfile1556746559567 implements MigrationInterface {
|
|
|
|
async up(queryRunner: QueryRunner): Promise<void> {
|
2023-04-06 19:56:46 -06:00
|
|
|
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)`,
|
|
|
|
);
|
|
|
|
}
|
2023-10-13 10:17:29 -06:00
|
|
|
async down(queryRunner: QueryRunner): Promise<void> {
|
2023-04-06 19:56:46 -06:00
|
|
|
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`,
|
|
|
|
);
|
|
|
|
}
|
2019-05-03 03:38:19 -06:00
|
|
|
}
|