BikeBikeBike/db/migrate/20140222202640_create_organization_locations.rb

9 lines
204 B
Ruby
Raw Normal View History

2014-03-09 14:43:33 -06:00
class CreateOrganizationLocations < ActiveRecord::Migration
def change
create_table :locations_organizations, :id => false do |t|
t.integer :organization_id
t.integer :location_id
end
end
end