1
0
mirror of https://github.com/fspc/BikeShed-1.git synced 2025-02-28 08:43:23 -05:00

Merge pull request #13 from spacemunkay/jnm-shop-id

Add migration to accompany 55fbd0630527761077a15988b2229a6afac548e4
This commit is contained in:
Jason Denney 2013-04-07 14:27:42 -07:00
commit ff708d940b

View File

@ -0,0 +1,13 @@
class AlterBike < ActiveRecord::Migration
def up
add_column(:bikes, :shop_id, :string)
add_index :bikes, :shop_id, :unique => true
remove_index :bikes, :column => :serial_number
end
def down
remove_index :bikes, :column => :shop_id
remove_column(:bikes, :shop_id)
add_index :bikes, :serial_number, :unique => true
end
end