import { MigrationInterface, QueryRunner } from 'typeorm'; export class pcke1670052416869 implements MigrationInterface { name = 'pcke1670052416869'; public async up(queryRunner: QueryRunner): Promise { await queryRunner.query( `ALTER TABLE \`o_auth2_token\` ADD \`pcke\` text NULL`, ); } public async down(queryRunner: QueryRunner): Promise { await queryRunner.query( `ALTER TABLE \`o_auth2_token\` DROP COLUMN \`pcke\``, ); } }