diff options
| author | Luc Donnet | 2012-02-23 15:01:03 +0100 |
|---|---|---|
| committer | Luc Donnet | 2012-02-23 15:01:03 +0100 |
| commit | 1bf6eb00189e124674a70cb7216fb002f12b79ca (patch) | |
| tree | 725e3c12d4bd8936f124aa4071ac5d31432e2099 /db | |
| parent | da3e849d4d89ffa3de2d370a30d3d5531b50ea5b (diff) | |
| download | chouette-core-1bf6eb00189e124674a70cb7216fb002f12b79ca.tar.bz2 | |
Update controler for resource and collection
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 4b3e892f5..29d57a1df 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -31,6 +31,16 @@ ActiveRecord::Schema.define(:version => 20120214101645) do add_index "company", ["objectid"], :name => "company_objectid_key", :unique => true add_index "company", ["registrationnumber"], :name => "company_registrationnumber_key", :unique => true + 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 "line", :force => true do |t| t.integer "ptnetworkid", :limit => 8 t.integer "companyid", :limit => 8 @@ -75,4 +85,12 @@ ActiveRecord::Schema.define(:version => 20120214101645) do t.datetime "updated_at" 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 + end |
