1
0
mirror of https://github.com/fspc/bike-database.git synced 2025-03-11 01:03:22 -04:00
bike-database/db/migrate/20140917020156_add_bike_to_client.rb

6 lines
118 B
Ruby
Raw Normal View History

class AddBikeToClient < ActiveRecord::Migration
def change
add_reference :clients, :bike, index: true
end
end