diff options
| author | Luc Donnet | 2013-07-10 11:22:01 +0200 |
|---|---|---|
| committer | Luc Donnet | 2013-07-10 11:22:01 +0200 |
| commit | 006522962b2feb2f28446991866522acd5d4886d (patch) | |
| tree | 0f5e9f879e102613467bac4879dc5d87b8ec4fc8 /db | |
| parent | ead284b277486b9731e740e7d94e88e09d2f987d (diff) | |
| download | chouette-core-006522962b2feb2f28446991866522acd5d4886d.tar.bz2 | |
Add stop place connection link access point and access link to kml export
Diffstat (limited to 'db')
| -rw-r--r-- | db/schema.rb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/db/schema.rb b/db/schema.rb index f967e6b0a..3db8121f2 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -204,6 +204,16 @@ ActiveRecord::Schema.define(:version => 20130708084944) do t.integer "organisation_id", :limit => 8 end + create_table "geometry_columns", :id => false, :force => true do |t| + t.string "f_table_catalog", :limit => 256, :null => false + t.string "f_table_schema", :limit => 256, :null => false + t.string "f_table_name", :limit => 256, :null => false + t.string "f_geometry_column", :limit => 256, :null => false + t.integer "coord_dimension", :null => false + t.integer "srid", :null => false + t.string "type", :limit => 30, :null => false + end + create_table "group_of_lines", :force => true do |t| t.string "objectid", :null => false t.integer "object_version" @@ -360,6 +370,14 @@ ActiveRecord::Schema.define(:version => 20130708084944) do t.integer "line_id", :limit => 8 end + create_table "spatial_ref_sys", :id => false, :force => true do |t| + t.integer "srid", :null => false + t.string "auth_name", :limit => 256 + t.integer "auth_srid" + t.string "srtext", :limit => 2048 + t.string "proj4text", :limit => 2048 + end + create_table "stop_areas", :force => true do |t| t.integer "parent_id", :limit => 8 t.string "objectid", :null => false |
