loading up the forgejo repo on tangled to test page performance
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request '[COSMETIC] unify the wording of the Forgejo migration comments' (#2849) from earl-warren/forgejo:wip-migration-comments into forgejo

Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/2849
Reviewed-by: oliverpool <oliverpool@noreply.codeberg.org>
Reviewed-by: Gusted <gusted@noreply.codeberg.org>

Gusted 42b97fd8 1684f0e5

+8 -8
+8 -8
models/forgejo_migrations/migrate.go
··· 39 39 // Add new migrations to the bottom of the list. 40 40 var migrations = []*Migration{ 41 41 // v0 -> v1 42 - NewMigration("Add Forgejo Blocked Users table", forgejo_v1_20.AddForgejoBlockedUser), 42 + NewMigration("Create the `forgejo_blocked_user` table", forgejo_v1_20.AddForgejoBlockedUser), 43 43 // v1 -> v2 44 - NewMigration("create the forgejo_sem_ver table", forgejo_v1_20.CreateSemVerTable), 44 + NewMigration("Create the `forgejo_sem_ver` table", forgejo_v1_20.CreateSemVerTable), 45 45 // v2 -> v3 46 - NewMigration("create the forgejo_auth_token table", forgejo_v1_20.CreateAuthorizationTokenTable), 46 + NewMigration("Create the `forgejo_auth_token` table", forgejo_v1_20.CreateAuthorizationTokenTable), 47 47 // v3 -> v4 48 - NewMigration("Add default_permissions to repo_unit", forgejo_v1_22.AddDefaultPermissionsToRepoUnit), 48 + NewMigration("Add the `default_permissions` column to the `repo_unit` table", forgejo_v1_22.AddDefaultPermissionsToRepoUnit), 49 49 // v4 -> v5 50 - NewMigration("create the forgejo_repo_flag table", forgejo_v1_22.CreateRepoFlagTable), 50 + NewMigration("Create the `forgejo_repo_flag` table", forgejo_v1_22.CreateRepoFlagTable), 51 51 // v5 -> v6 52 - NewMigration("Add wiki_branch to repository", forgejo_v1_22.AddWikiBranchToRepository), 52 + NewMigration("Add the `wiki_branch` column to the `repository` table", forgejo_v1_22.AddWikiBranchToRepository), 53 53 // v6 -> v7 54 - NewMigration("Add enable_repo_unit_hints to the user table", forgejo_v1_22.AddUserRepoUnitHintsSetting), 54 + NewMigration("Add the `enable_repo_unit_hints` column to the `user` table", forgejo_v1_22.AddUserRepoUnitHintsSetting), 55 55 // v7 -> v8 56 - NewMigration("Remove SSH signatures from Release notes", forgejo_v1_22.RemoveSSHSignaturesFromReleaseNotes), 56 + NewMigration("Modify the `release`.`note` content to remove SSH signatures", forgejo_v1_22.RemoveSSHSignaturesFromReleaseNotes), 57 57 } 58 58 59 59 // GetCurrentDBVersion returns the current Forgejo database version.