adds featured field to tags

This commit is contained in:
David Gil
2015-08-15 18:21:25 +02:00
parent 8cf8d9f857
commit ae960bba9f

View File

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