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

export class v1231579282808087 implements MigrationInterface {
    name = 'v1231579282808087'

    public async up(queryRunner: QueryRunner): Promise<any> {
        await queryRunner.query(`ALTER TABLE "announcement" ADD "updatedAt" TIMESTAMP WITH TIME ZONE`, undefined);
    }

    public async down(queryRunner: QueryRunner): Promise<any> {
        await queryRunner.query(`ALTER TABLE "announcement" DROP COLUMN "updatedAt"`, undefined);
    }

}