import { MigrationInterface, QueryRunner } from "typeorm"; export class channel21596786425167 implements MigrationInterface { constructor() { this.name = "channel21596786425167"; } async up(queryRunner: QueryRunner): Promise { await queryRunner.query( `ALTER TABLE "channel_following" ADD "readCursor" TIMESTAMP WITH TIME ZONE NOT NULL`, ); } async down(queryRunner: QueryRunner): Promise { await queryRunner.query( `ALTER TABLE "channel_following" DROP COLUMN "readCursor"`, ); } }