Skip to content

Commit

Permalink
feat: [590] fix the migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
dragos1195 committed Jul 26, 2024
1 parent 3836c2e commit ac931ca
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { MigrationInterface, QueryRunner } from 'typeorm';
import { ISSUERS } from './seed/issuers.seed';
import { Issuer } from 'src/shared/entities';
export class AddIssuer1721896584559 implements MigrationInterface {
name = 'AddIssuer1721896584559';
export class AddIssuer1721829705666 implements MigrationInterface {
name = 'AddIssuer1721829705666';

public async up(queryRunner: QueryRunner): Promise<void> {
await queryRunner.query(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { MigrationInterface, QueryRunner } from 'typeorm';

export class NewGeneralFields1721829705666 implements MigrationInterface {
name = 'NewGeneralFields1721829705666';
export class NewGeneralFields1721899705666 implements MigrationInterface {
name = 'NewGeneralFields1721899705666';

public async up(queryRunner: QueryRunner): Promise<void> {
await queryRunner.query(
Expand Down

0 comments on commit ac931ca

Please sign in to comment.