mirror of
https://github.com/fspc/BikeShed-1.git
synced 2026-09-16 08:31:36 -04:00
Merge pull request #13 from spacemunkay/jnm-shop-id
Add migration to accompany 55fbd06305
This commit is contained in:
@@ -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
|
||||||
Reference in New Issue
Block a user