mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-10-29 20:44:13 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			500 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			500 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import {MigrationInterface, QueryRunner} from "typeorm";
 | |
| 
 | |
| export class deeplIntegration1629024377804 implements MigrationInterface {
 | |
|     name = 'deeplIntegration1629024377804'
 | |
| 
 | |
|     public async up(queryRunner: QueryRunner): Promise<void> {
 | |
|         await queryRunner.query(`ALTER TABLE "meta" ADD "deeplAuthKey" character varying(128)`);
 | |
|     }
 | |
| 
 | |
|     public async down(queryRunner: QueryRunner): Promise<void> {
 | |
|         await queryRunner.query(`ALTER TABLE "meta" DROP COLUMN "deeplAuthKey"`);
 | |
|     }
 | |
| 
 | |
| }
 |