-
- Downloads
Merge branch 'fix-project-tags' into 'master'
Fix DB error when trying to tag a repository Steps to reproduce: Go to a project settings, add tags, click on save changes Observed behavior: Error 500 ``` PG::Error: ERROR: column "taggings_count" does not exist LINE 1: UPDATE "tags" SET "taggings_count" = COALESCE("taggings_coun... ``` Ran `rake acts_as_taggable_on_engine:install:migrations`, removed the first migration that created the `tags` and `taggings` table, and added the rest. * Closes #1512 * Closes #1550 * Closes https://github.com/gitlabhq/gitlabhq/issues/6867 * Closes https://github.com/gitlabhq/gitlabhq/issues/9194 See merge request !577
Showing
- CHANGELOG 5 additions, 0 deletionsCHANGELOG
- db/migrate/20150425164648_add_missing_unique_indices.acts_as_taggable_on_engine.rb 20 additions, 0 deletions..._add_missing_unique_indices.acts_as_taggable_on_engine.rb
- db/migrate/20150425164649_add_taggings_counter_cache_to_tags.acts_as_taggable_on_engine.rb 15 additions, 0 deletions...gings_counter_cache_to_tags.acts_as_taggable_on_engine.rb
- db/migrate/20150425164650_add_missing_taggable_index.acts_as_taggable_on_engine.rb 10 additions, 0 deletions..._add_missing_taggable_index.acts_as_taggable_on_engine.rb
- db/migrate/20150425164651_change_collation_for_tag_names.acts_as_taggable_on_engine.rb 10 additions, 0 deletions...nge_collation_for_tag_names.acts_as_taggable_on_engine.rb
- db/schema.rb 5 additions, 2 deletionsdb/schema.rb
- features/project/project.feature 7 additions, 0 deletionsfeatures/project/project.feature
- features/steps/project/project.rb 8 additions, 0 deletionsfeatures/steps/project/project.rb
Please register or sign in to comment