From 3a5864912230e9dd3dcd7c5d6740f8873925e6c4 Mon Sep 17 00:00:00 2001 From: 0xsysr3ll <0xsysr3ll@pm.me> Date: Mon, 21 Apr 2025 19:45:46 +0200 Subject: [PATCH] fix(migration): update import statement to use type imports for TypeORM --- .../migration/postgres/1745254842580-AddPlexProfilesSupport.ts | 2 +- server/migration/sqlite/1745254842580-AddPlexProfilesSupport.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/server/migration/postgres/1745254842580-AddPlexProfilesSupport.ts b/server/migration/postgres/1745254842580-AddPlexProfilesSupport.ts index b94d0654..9c17c45e 100644 --- a/server/migration/postgres/1745254842580-AddPlexProfilesSupport.ts +++ b/server/migration/postgres/1745254842580-AddPlexProfilesSupport.ts @@ -1,4 +1,4 @@ -import { MigrationInterface, QueryRunner } from 'typeorm'; +import type { MigrationInterface, QueryRunner } from 'typeorm'; export class AddPlexProfilesSupport1745254842580 implements MigrationInterface { name = 'AddPlexProfilesSupport1745254842580'; diff --git a/server/migration/sqlite/1745254842580-AddPlexProfilesSupport.ts b/server/migration/sqlite/1745254842580-AddPlexProfilesSupport.ts index 138f5312..abceaf2e 100644 --- a/server/migration/sqlite/1745254842580-AddPlexProfilesSupport.ts +++ b/server/migration/sqlite/1745254842580-AddPlexProfilesSupport.ts @@ -1,4 +1,4 @@ -import { MigrationInterface, QueryRunner } from 'typeorm'; +import type { MigrationInterface, QueryRunner } from 'typeorm'; export class AddPlexProfilesSupport1745254842580 implements MigrationInterface { name = 'AddPlexProfilesSupport1745254842580';