tags: drop related_tags column.

This commit is contained in:
evazion
2019-09-07 22:14:40 -05:00
parent 4fc1e16731
commit 6b8515811f
3 changed files with 8 additions and 5 deletions

View File

@@ -0,0 +1,6 @@
class DropRelatedTagsFromTags < ActiveRecord::Migration[6.0]
def change
remove_column :tags, :related_tags, :text
remove_column :tags, :related_tags_updated_at, :datetime
end
end