diff --git a/db/migrate/20150815154430_add_featured_to_tags.rb b/db/migrate/20150815154430_add_featured_to_tags.rb new file mode 100644 index 000000000..6ad4d5658 --- /dev/null +++ b/db/migrate/20150815154430_add_featured_to_tags.rb @@ -0,0 +1,5 @@ +class AddFeaturedToTags < ActiveRecord::Migration + def change + add_column :tags, :featured, :boolean, default: false + end +end