diff options
Diffstat (limited to 'db/migrate')
| -rw-r--r-- | db/migrate/20160504130055_create_stop_area_referentials.rb | 15 | 
1 files changed, 15 insertions, 0 deletions
diff --git a/db/migrate/20160504130055_create_stop_area_referentials.rb b/db/migrate/20160504130055_create_stop_area_referentials.rb new file mode 100644 index 000000000..7c7fc0285 --- /dev/null +++ b/db/migrate/20160504130055_create_stop_area_referentials.rb @@ -0,0 +1,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  | 
