diff options
| author | Luc Donnet | 2012-04-26 14:31:09 +0200 |
|---|---|---|
| committer | Luc Donnet | 2012-04-26 14:31:09 +0200 |
| commit | 856016f8fa214c9f924d68019aaa96c6589aa1c8 (patch) | |
| tree | 32ffab6405a727882f35e2345556b712368658e0 /db | |
| parent | 283c635d1547ae012a1aca0fd02329bb203c240f (diff) | |
| download | chouette-core-856016f8fa214c9f924d68019aaa96c6589aa1c8.tar.bz2 | |
Add links between stop areas
Diffstat (limited to 'db')
| -rw-r--r-- | db/schema.rb | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb index c21ab020c..07dc4922d 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,7 +10,7 @@ # # It's strongly recommended to check this file into your version control system. -ActiveRecord::Schema.define(:version => 20120425080337) do +ActiveRecord::Schema.define(:version => 20120425125542) do create_table "company", :force => true do |t| t.string "objectid" @@ -116,6 +116,16 @@ ActiveRecord::Schema.define(:version => 20120425080337) do add_index "stoparea", ["objectid"], :name => "stoparea_objectid_key", :unique => true add_index "stoparea", ["parentid"], :name => "index_stoparea_on_parentid" + create_table "stoppoint", :force => true do |t| + t.integer "routeid", :limit => 8 + t.integer "stopareaid", :limit => 8 + t.string "objectid" + t.integer "objectversion" + t.datetime "creationtime" + t.string "creatorid" + t.integer "position" + end + create_table "timetable", :force => true do |t| t.string "objectid", :null => false t.integer "objectversion", :default => 1 |
