summaryrefslogtreecommitdiff
path: root/migration/1582875306439-note-reaction-length.ts
blob: b9af61eb0e0c9d97b1c28195c62766ac55ef3514 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import {MigrationInterface, QueryRunner} from "typeorm";

export class noteReactionLength1582875306439 implements MigrationInterface {
    name = 'noteReactionLength1582875306439'

    public async up(queryRunner: QueryRunner): Promise<any> {
        await queryRunner.query(`ALTER TABLE "note_reaction" ALTER COLUMN "reaction" TYPE character varying(130)`, undefined);
    }

    public async down(queryRunner: QueryRunner): Promise<any> {
        await queryRunner.query(`ALTER TABLE "note_reaction" ALTER COLUMN "reaction" TYPE character varying(128)`, undefined);
    }

}