summaryrefslogtreecommitdiffstats
path: root/models/migrations/v102.go
Commit message (Collapse)AuthorAgeFilesLines
* Use transaction in V102 migration (#12395)zeripath2020-08-061-1/+7
| | | | | | | The code for dropTableColumns has a slightly confusing portion whereby the session is committed for MSSQL but not for other variants. The v102 migration doesn't actually start a transaction so this weirdness does not affect it. However it probably should attempt to run this in a transaction. Signed-off-by: Andrew Thornton art27@cantab.net
* Fix bug on pull requests when transfer head repository (#8564)Lunny Xiao2019-10-181-0/+15
* fix bug on pull requests when transfer head repository * add migration and fix lint * fix tests and add a cache check on LoadBaseRepo