13 lines
362 B
Ruby
13 lines
362 B
Ruby
![]() |
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
|