Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
c9bf3581
Commit
c9bf3581
authored
Aug 28, 2014
by
Jacob Vosmaer
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #7619 from BlueBayTravel/taggable-migration
Delete invalid taggings during label migration
parents
c9054319
63e25c2b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
db/migrate/20140729152420_migrate_taggable_labels.rb
db/migrate/20140729152420_migrate_taggable_labels.rb
+6
-0
No files found.
db/migrate/20140729152420_migrate_taggable_labels.rb
View file @
c9bf3581
...
...
@@ -2,6 +2,12 @@ class MigrateTaggableLabels < ActiveRecord::Migration
def
up
taggings
=
ActsAsTaggableOn
::
Tagging
.
where
(
taggable_type:
[
'Issue'
,
'MergeRequest'
],
context:
'labels'
)
taggings
.
find_each
(
batch_size:
500
)
do
|
tagging
|
# Clean up orphaned taggings while we are here
if
tagging
.
taggable
.
blank?
||
tagging
.
tag
.
nil?
tagging
.
destroy
print
'D'
next
end
create_label_from_tagging
(
tagging
)
end
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment