diff options
| author | Marc Florisson | 2013-07-12 16:45:53 +0200 |
|---|---|---|
| committer | Marc Florisson | 2013-07-12 16:45:53 +0200 |
| commit | 68ec1a20450166a362d53b9781cc86697d3c49a1 (patch) | |
| tree | 0b41ab4c80874315429cc016277c07fc7fb52bc1 /db | |
| parent | e6f0ecb679e84f19349d339879bef331e2e30a82 (diff) | |
| parent | 2bccbc4d0c4e732a2af744d975f35c9d8f7bfd28 (diff) | |
| download | chouette-core-68ec1a20450166a362d53b9781cc86697d3c49a1.tar.bz2 | |
merge export kml branch
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 f6e27009d..a60776988 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -204,6 +204,16 @@ ActiveRecord::Schema.define(:version => 20130710123351) 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 => 20130710123351) 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 |
