mirror of https://github.com/fspc/BikeShed-1.git
John N. Milner
12 years ago
1 changed files with 13 additions and 0 deletions
@ -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 |
Loading…
Reference in new issue