mirror of
https://github.com/fspc/bike-database.git
synced 2025-03-11 01:03:22 -04:00
6 lines
118 B
Ruby
6 lines
118 B
Ruby
|
class AddBikeToClient < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_reference :clients, :bike, index: true
|
||
|
end
|
||
|
end
|