aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/20160504130055_create_stop_area_referentials.rb
blob: 7c7fc02853ec97ea7b7a6160ceea1649e3b979fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class CreateStopAreaReferentials < ActiveRecord::Migration
  def change
    create_table :stop_area_referentials do |t|
      t.string :name

      t.timestamps
    end

    create_table :stop_area_referential_memberships do |t|
      t.belongs_to :organisation
      t.belongs_to :stop_area_referential
      t.boolean :owner
    end
  end
end