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.

Remove wrongly added column on migration test fixtures (#23456)

Fix https://drone.gitea.io/go-gitea/gitea/69418/3/8
Migration fixtures are in `models/migrations/fixtures`, every folder
will be used only by the test with the same name.
For `Test_DeleteOrphanedIssueLabels`, the fixture should keep consistent
as the database structure at that time. So the newly added `exclusive`
is not right. Just revert the change in
https://github.com/go-gitea/gitea/pull/22585/files#diff-f8db9cbbaa10bf7b27eb726884454db821a4b4f8cb9a0d50435555908761bbcb

authored by

Lunny Xiao and committed by
GitHub
c492e863 ac8d71ff

-5
-5
models/migrations/fixtures/Test_DeleteOrphanedIssueLabels/label.yml
··· 4 4 org_id: 0 5 5 name: label1 6 6 color: '#abcdef' 7 - exclusive: false 8 7 num_issues: 2 9 8 num_closed_issues: 0 10 9 ··· 14 13 org_id: 0 15 14 name: label2 16 15 color: '#000000' 17 - exclusive: false 18 16 num_issues: 1 19 17 num_closed_issues: 1 20 18 - ··· 23 21 org_id: 3 24 22 name: orglabel3 25 23 color: '#abcdef' 26 - exclusive: false 27 24 num_issues: 0 28 25 num_closed_issues: 0 29 26 ··· 33 30 org_id: 3 34 31 name: orglabel4 35 32 color: '#000000' 36 - exclusive: false 37 33 num_issues: 1 38 34 num_closed_issues: 0 39 35 ··· 43 39 org_id: 0 44 40 name: pull-test-label 45 41 color: '#000000' 46 - exclusive: false 47 42 num_issues: 0 48 43 num_closed_issues: 0