houdini/db/migrate/20170808180559_add_inactive_to_card.rb

13 lines
362 B
Ruby
Raw Normal View History

class AddInactiveToCard < ActiveRecord::Migration
class Card < ActiveRecord::Base
attr_accessible :inactive
end
def change
add_column :cards, :inactive, :boolean
add_index :cards, [:id, :holder_type, :holder_id, :inactive] # add index for getting active_card
Card.reset_column_information
Card.update_all(:inactive => false)
end
end