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 UpdateRepositoryAddFork : AsyncMigration {
19
+ struct UpdateRepositoryAddForkedFrom : AsyncMigration {
20
20
func prepare( on database: Database ) async throws {
21
21
try await database. schema ( " repositories " )
22
22
. field ( " forked_from " , . json)
Original file line number Diff line number Diff line change @@ -334,8 +334,8 @@ public func configure(_ app: Application) async throws -> String {
334
334
do { // Migration 078 - Add `build_date` and `commit_hash` to `builds`
335
335
app. migrations. add ( UpdateBuildAddBuildDateCommitHash ( ) )
336
336
}
337
- do { // Migration 079 - Add `fork ` to `repositories`
338
- app. migrations. add ( UpdateRepositoryAddFork ( ) )
337
+ do { // Migration 079 - Add `forked_from ` to `repositories`
338
+ app. migrations. add ( UpdateRepositoryAddForkedFrom ( ) )
339
339
}
340
340
341
341
app. asyncCommands. use ( Analyze . Command ( ) , as: " analyze " )
You can’t perform that action at this time.
0 commit comments