diff options
| author | Luc Donnet | 2012-10-09 14:11:26 +0200 |
|---|---|---|
| committer | Luc Donnet | 2012-10-09 14:11:26 +0200 |
| commit | b541f116a35f213990e54e3184c37911c1d89ebf (patch) | |
| tree | 0045987da710c4e4d46bdc30697a39ffc9b7505e /db | |
| parent | e8c97dbaa2589291018fc5d2ec8326b2be40e9f9 (diff) | |
| download | chouette-core-b541f116a35f213990e54e3184c37911c1d89ebf.tar.bz2 | |
Add year calendar for time table show
Diffstat (limited to 'db')
| -rw-r--r-- | db/schema.rb | 30 |
1 files changed, 24 insertions, 6 deletions
diff --git a/db/schema.rb b/db/schema.rb index bf0284d15..20c522d1d 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -182,22 +182,32 @@ ActiveRecord::Schema.define(:version => 20120926144619) do t.string "arguments", :limit => 1000 t.integer "position" t.string "severity" - t.datetime "created_at" - t.datetime "updated_at" + t.datetime "created_at", :null => false + t.datetime "updated_at", :null => false end add_index "file_validation_log_messages", ["file_validation_id"], :name => "index_file_validation_log_messages_on_file_validation_id" create_table "file_validations", :force => true do |t| t.string "status" - t.string "options" + t.string "options", :limit => 2000 t.string "file_name" t.string "file_type" - t.datetime "created_at" - t.datetime "updated_at" + t.datetime "created_at", :null => false + t.datetime "updated_at", :null => false t.integer "organisation_id" 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" @@ -327,8 +337,8 @@ ActiveRecord::Schema.define(:version => 20120926144619) do t.datetime "updated_at" t.string "prefix" t.string "projection_type" - t.string "bounding_box", :limit => nil t.string "time_zone" + t.string "the_geom" t.string "bounds" t.integer "organisation_id" end @@ -355,6 +365,14 @@ ActiveRecord::Schema.define(:version => 20120926144619) 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 |
