mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 07:24:13 +00:00 
			
		
		
		
	* リモートのカスタム絵文字リアクションを表示できるように * AP * DBマイグレーション * ローカルのリアクションの. * fix * fix * fix * space
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			557 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			557 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import {MigrationInterface, QueryRunner} from "typeorm";
 | 
						|
 | 
						|
export class remoteReaction1586641139527 implements MigrationInterface {
 | 
						|
    name = 'remoteReaction1586641139527'
 | 
						|
    public async up(queryRunner: QueryRunner): Promise<any> {
 | 
						|
      await queryRunner.query(`ALTER TABLE "note_reaction" ALTER COLUMN "reaction" TYPE character varying(260)`, undefined);
 | 
						|
  }
 | 
						|
 | 
						|
  public async down(queryRunner: QueryRunner): Promise<any> {
 | 
						|
      await queryRunner.query(`ALTER TABLE "note_reaction" ALTER COLUMN "reaction" TYPE character varying(130)`, undefined);
 | 
						|
  }
 | 
						|
}
 |