1class RemoveIsPrimaryFromPhotos < ActiveRecord::Migration 2 def up 3 remove_column :photos, :is_primary 4 end 5 6 def down 7 add_column :photos, :is_primary, :boolean, :default => false 8 end 9end