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 'models/forgejo_migrations: Gitea tables migration ID' (#2838) from earl-warren/forgejo:wip-forgejo-migrations-index into forgejo

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

+3 -3
+1 -1
models/forgejo_migrations/v1_22/v6.go
··· 9 9 10 10 func AddWikiBranchToRepository(x *xorm.Engine) error { 11 11 type Repository struct { 12 - ID int64 12 + ID int64 `xorm:"pk autoincr"` 13 13 WikiBranch string 14 14 } 15 15
+2 -2
models/forgejo_migrations/v1_22/v7.go
··· 9 9 10 10 func AddUserRepoUnitHintsSetting(x *xorm.Engine) error { 11 11 type User struct { 12 - ID int64 13 - EnableRepoUnitHints bool `xorm:"NOT NULL DEFAULT true"` 12 + ID int64 `xorm:"pk autoincr"` 13 + EnableRepoUnitHints bool `xorm:"NOT NULL DEFAULT true"` 14 14 } 15 15 16 16 return x.Sync(&User{})