diff --git a/Tests/FluentPostGISTests/FluentPostGISTestCase.swift b/Tests/FluentPostGISTests/FluentPostGISTestCase.swift index 91fcad1..344b88f 100644 --- a/Tests/FluentPostGISTests/FluentPostGISTestCase.swift +++ b/Tests/FluentPostGISTests/FluentPostGISTestCase.swift @@ -1,4 +1,5 @@ import FluentKit +import FluentPostGIS import FluentPostgresDriver import PostgresKit import XCTest @@ -37,10 +38,11 @@ class FluentPostGISTestCase: XCTestCase { } private let migrations: [any AsyncMigration] = [ + EnablePostGISMigration(), UserLocationMigration(), CityMigration(), UserPathMigration(), UserAreaMigration(), - UserCollectionMigration(), + UserCollectionMigration() ] } diff --git a/Tests/FluentPostGISTests/TestModels.swift b/Tests/FluentPostGISTests/TestModels.swift index 3a86028..e9fa8ac 100644 --- a/Tests/FluentPostGISTests/TestModels.swift +++ b/Tests/FluentPostGISTests/TestModels.swift @@ -1,3 +1,4 @@ +import SQLKit import FluentKit import FluentPostGIS @@ -146,3 +147,4 @@ struct UserCollectionMigration: AsyncMigration { try await database.schema(UserCollection.schema).delete() } } +