We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
EnablePostGISMigrationError
Sendable
1 parent e35f5cc commit bb61ff4Copy full SHA for bb61ff4
README.md
@@ -41,7 +41,7 @@ app.migrations.add(EnablePostGISMigration())
41
Add a type to your model
42
43
```swift
44
-final class User: Model {
+final class User: Model, @unchecked Sendable {
45
static let schema = "user"
46
47
@ID(key: .id)
Sources/FluentPostGIS/Support/EnablePostGISMigration.swift
@@ -4,7 +4,7 @@ import SQLKit
4
public struct EnablePostGISMigration: AsyncMigration, Sendable {
5
public init() {}
6
7
- public enum EnablePostGISMigrationError: Error {
+ public enum EnablePostGISMigrationError: Error, Sendable {
8
case notSqlDatabase
9
}
10
0 commit comments