-
- Downloads
"spec/requests/git_http_spec.rb" did not exist on "13d6bab177d2a703d19b2fc5f28271ed083273c3"
Fix DB error when trying to tag a repository
Upon tagging a repository, an error due to a missing migration occurred: ``` 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 https://github.com/gitlabhq/gitlabhq/issues/6867 Closes https://github.com/gitlabhq/gitlabhq/issues/9194
Showing
- CHANGELOG 1 addition, 1 deletionCHANGELOG
- 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
Loading
Please register or sign in to comment