1class RemoveIsPublishedFromCreations < ActiveRecord::Migration 2 def up 3 remove_column :creations, :is_published 4 end 5 6 def down 7 add_column :creations, :is_published, :boolean 8 end 9end