diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2019-08-05 22:29:40 +0800 |
---|---|---|
committer | Lauris BH <lauris@nix.lv> | 2019-08-05 17:29:40 +0300 |
commit | 7b009626da2a8a2a46e0e205a3a7ce46cdf7ced2 (patch) | |
tree | 3c81393f4592e1b3735740fd4453cf735da00dcd /models/migrations/migrations.go | |
parent | 52feff5a5c76421fe90c8e6a62ec86eaaa4634f2 (diff) | |
download | gitea-7b009626da2a8a2a46e0e205a3a7ce46cdf7ced2.tar.gz gitea-7b009626da2a8a2a46e0e205a3a7ce46cdf7ced2.zip |
Add SQL execution on log and indexes on table repository and comment (#7740)
* add index on comment
* add SQL execution time on log and index owner_id on repository
* add migration
Diffstat (limited to 'models/migrations/migrations.go')
-rw-r--r-- | models/migrations/migrations.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/models/migrations/migrations.go b/models/migrations/migrations.go index 5326022b41..6459036e4a 100644 --- a/models/migrations/migrations.go +++ b/models/migrations/migrations.go @@ -236,6 +236,8 @@ var migrations = []Migration{ NewMigration("add original author/url migration info to issues, comments, and repo ", addOriginalMigrationInfo), // v90 -> v91 NewMigration("change length of some repository columns", changeSomeColumnsLengthOfRepo), + // v91 -> v92 + NewMigration("add index on owner_id of repository and type, review_id of comment", addIndexOnRepositoryAndComment), } // Migrate database to current version |