mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-10-31 13:34:12 +00:00 
			
		
		
		
	Create 1675404035646-cleanup.js
This commit is contained in:
		
							parent
							
								
									562b02310f
								
							
						
					
					
						commit
						5859df389f
					
				
					 1 changed files with 29 additions and 0 deletions
				
			
		
							
								
								
									
										29
									
								
								packages/backend/migration/1675404035646-cleanup.js
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										29
									
								
								packages/backend/migration/1675404035646-cleanup.js
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,29 @@ | ||||||
|  | export class cleanup1675404035646 { | ||||||
|  |     name = 'cleanup1675404035646' | ||||||
|  | 
 | ||||||
|  |     async up(queryRunner) { | ||||||
|  |         await queryRunner.query(`ALTER TABLE "meta" DROP COLUMN "enableTwitterIntegration"`); | ||||||
|  |         await queryRunner.query(`ALTER TABLE "meta" DROP COLUMN "enableGithubIntegration"`); | ||||||
|  |         await queryRunner.query(`ALTER TABLE "meta" DROP COLUMN "enableDiscordIntegration"`); | ||||||
|  |         await queryRunner.query(`ALTER TABLE "meta" DROP COLUMN "twitterConsumerKey"`); | ||||||
|  |         await queryRunner.query(`ALTER TABLE "meta" DROP COLUMN "twitterConsumerSecret"`); | ||||||
|  |         await queryRunner.query(`ALTER TABLE "meta" DROP COLUMN "githubClientId"`); | ||||||
|  |         await queryRunner.query(`ALTER TABLE "meta" DROP COLUMN "githubClientSecret"`); | ||||||
|  |         await queryRunner.query(`ALTER TABLE "meta" DROP COLUMN "discordClientId"`); | ||||||
|  |         await queryRunner.query(`ALTER TABLE "meta" DROP COLUMN "discordClientSecret"`); | ||||||
|  |         await queryRunner.query(`ALTER TABLE "user_profile" DROP COLUMN "integrations"`); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     async down(queryRunner) { | ||||||
|  |         await queryRunner.query(`ALTER TABLE "user_profile" ADD "integrations" jsonb NOT NULL DEFAULT '{}'`); | ||||||
|  |         await queryRunner.query(`ALTER TABLE "meta" ADD "discordClientSecret" character varying(128)`); | ||||||
|  |         await queryRunner.query(`ALTER TABLE "meta" ADD "discordClientId" character varying(128)`); | ||||||
|  |         await queryRunner.query(`ALTER TABLE "meta" ADD "githubClientSecret" character varying(128)`); | ||||||
|  |         await queryRunner.query(`ALTER TABLE "meta" ADD "githubClientId" character varying(128)`); | ||||||
|  |         await queryRunner.query(`ALTER TABLE "meta" ADD "twitterConsumerSecret" character varying(128)`); | ||||||
|  |         await queryRunner.query(`ALTER TABLE "meta" ADD "twitterConsumerKey" character varying(128)`); | ||||||
|  |         await queryRunner.query(`ALTER TABLE "meta" ADD "enableDiscordIntegration" boolean NOT NULL DEFAULT false`); | ||||||
|  |         await queryRunner.query(`ALTER TABLE "meta" ADD "enableGithubIntegration" boolean NOT NULL DEFAULT false`); | ||||||
|  |         await queryRunner.query(`ALTER TABLE "meta" ADD "enableTwitterIntegration" boolean NOT NULL DEFAULT false`); | ||||||
|  |     } | ||||||
|  | } | ||||||
		Loading…
	
	Add table
		
		Reference in a new issue