Add migration to remove featured column from tags table

This commit is contained in:
Eduardo Martinez Echevarria
2017-06-23 16:23:15 +02:00
parent ae9030e6c5
commit a42c75647e

View File

@@ -0,0 +1,5 @@
class RemoveFeaturedFromTags < ActiveRecord::Migration
def change
remove_column :tags, :featured, :boolean, default: false
end
end