add dpage permission
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
import { MigrationInterface, QueryRunner } from "typeorm";
|
||||
|
||||
export class AddCountToPlan1773307633674 implements MigrationInterface {
|
||||
name = 'AddCountToPlan1773307633674'
|
||||
|
||||
public async up(queryRunner: QueryRunner): Promise<void> {
|
||||
await queryRunner.query(`ALTER TABLE "subscription_plan" ADD "count" integer`);
|
||||
}
|
||||
|
||||
public async down(queryRunner: QueryRunner): Promise<void> {
|
||||
await queryRunner.query(`ALTER TABLE "subscription_plan" DROP COLUMN "count"`);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user