File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ import Fluent
16
16
import SQLKit
17
17
18
18
19
- struct UpdateRepositoryAddForkedFrom2 : AsyncMigration {
19
+ struct UpdateRepositoryResetForkedFrom : AsyncMigration {
20
20
func prepare( on database: Database ) async throws {
21
21
guard let db = database as? SQLDatabase else {
22
22
fatalError ( " Database must be an SQLDatabase ('as? SQLDatabase' must succeed) " )
Original file line number Diff line number Diff line change @@ -337,8 +337,8 @@ public func configure(_ app: Application) async throws -> String {
337
337
do { // Migration 079 - Add `forked_from` to `repositories`
338
338
app. migrations. add ( UpdateRepositoryAddForkedFrom ( ) )
339
339
}
340
- do { // Migration 080 - Set`forkded_from ` to NULL because of Fork model change in Repository
341
- app. migrations. add ( UpdateRepositoryAddForkedFrom2 ( ) )
340
+ do { // Migration 080 - Set`forked_from ` to NULL because of Fork model change in Repository
341
+ app. migrations. add ( UpdateRepositoryResetForkedFrom ( ) )
342
342
}
343
343
344
344
app. asyncCommands. use ( Analyze . Command ( ) , as: " analyze " )
You can’t perform that action at this time.
0 commit comments