import {MigrationInterface, QueryRunner, TableColumn} from "typeorm"; export class AlterUsersTableAddLastnameColumn1653437653433 implements MigrationInterface { public async up(queryRunner: QueryRunner): Promise { await queryRunner.addColumn('users', new TableColumn({ name: 'lastname', type: 'varchar', isNullable: true })) } public async down(queryRunner: QueryRunner): Promise { await queryRunner.dropColumn('users', 'lastname') } }