Sha256: 8f45d582f1cc89850d5b28819bbdb95c60594c4e8a17305580b7ea20572f8d01
Contents?: true
Size: 325 Bytes
Versions: 23
Compression:
Stored size: 325 Bytes
Contents
class CreateChouetteRoutingConstrainsLine < ActiveRecord::Migration def up create_table :routing_constraints_lines, :id => false, :force => true do |t| t.integer "stop_area_id", :limit => 8 t.integer "line_id", :limit => 8 end end def down drop_table :routing_constraints_lines end end
Version data entries
23 entries across 23 versions & 1 rubygems