Better migration for UserProfile1556746559567 (#4969)
This commit is contained in:
		
							parent
							
								
									69a916d506
								
							
						
					
					
						commit
						efeebd2165
					
				
					 1 changed files with 5 additions and 12 deletions
				
			
		|  | @ -3,21 +3,14 @@ import {MigrationInterface, QueryRunner} from "typeorm"; | |||
| export class UserProfile1556746559567 implements MigrationInterface { | ||||
| 
 | ||||
|     public async up(queryRunner: QueryRunner): Promise<any> { | ||||
|         await queryRunner.query(`UPDATE "user_profile" SET github = FALSE`); | ||||
|         await queryRunner.query(`ALTER TABLE "user_profile" DROP COLUMN "githubId"`); | ||||
|         await queryRunner.query(`ALTER TABLE "user_profile" ADD COLUMN "githubId" VARCHAR(64)`); | ||||
|         await queryRunner.query(`UPDATE "user_profile" SET discord = FALSE`); | ||||
|         await queryRunner.query(`ALTER TABLE "user_profile" DROP COLUMN "discordExpiresDate"`); | ||||
|         await queryRunner.query(`ALTER TABLE "user_profile" ADD COLUMN "discordExpiresDate" VARCHAR(64)`); | ||||
|         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`); | ||||
|         await queryRunner.query(`ALTER TABLE "user_profile" DROP COLUMN "githubId"`); | ||||
|         await queryRunner.query(`ALTER TABLE "user_profile" ADD COLUMN "githubId" INTEGER`); | ||||
|         await queryRunner.query(`UPDATE "user_profile" SET discord = FALSE`); | ||||
|         await queryRunner.query(`ALTER TABLE "user_profile" DROP COLUMN "discordExpiresDate"`); | ||||
|         await queryRunner.query(`ALTER TABLE "user_profile" ADD COLUMN "discordExpiresDate" INTEGER`); | ||||
|         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`); | ||||
|     } | ||||
| 
 | ||||
| } | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue