Skip to content

Commit

Permalink
Fix typo in migration
Browse files Browse the repository at this point in the history
  • Loading branch information
gwynne committed Sep 28, 2024
1 parent de5af05 commit 1d0e96a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/QueuesFluentDriver/JobModelMigrate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public struct JobModelMigration: AsyncSQLMigration {
jobsTableName: String = "_jobs_meta",
jobsTableSpace: String? = nil
) {
self.jobsTableString = "\(jobsTableSpace.map { "\($0)_" } ?? ""))\(jobsTableName)"
self.jobsTableString = "\(jobsTableSpace.map { "\($0)_" } ?? "")\(jobsTableName)"
self.jobsTable = .init(jobsTableName, space: jobsTableSpace)
}

Expand Down

0 comments on commit 1d0e96a

Please sign in to comment.