blob: ee81d9bfcc70545754134712c1e2bac22791e34e (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
 | class CreateChouetteStopPoint < ActiveRecord::Migration
  def up
    create_table "stop_points", :force => true do |t|
      t.integer  "route_id", :limit => 8
      t.integer  "stop_area_id", :limit => 8
      t.string   "objectid", :null => false
      t.integer  "object_version"
      t.datetime "creation_time"
      t.string   "creator_id"
      t.integer  "position"
    end
    add_index "stop_points", ["objectid"], :name => "stop_points_objectid_key", :unique => true
  end
  def down
  end
end
 |