blob: 0fa1ef1aea351dd93947ac30b433af0852e97208 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
 | class CreateRoutingConstraintZones < ActiveRecord::Migration
  def change
    create_table :routing_constraint_zones do |t|
      t.string :name
      t.integer :stop_area_ids, array: true
      t.belongs_to :line, index: true
      t.timestamps
    end
  end
end
 |