aboutsummaryrefslogtreecommitdiffstats
path: root/db/schema.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb29
1 files changed, 27 insertions, 2 deletions
diff --git a/db/schema.rb b/db/schema.rb
index d4c07cdc1..7d1d92845 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 => 20120531091529) do
+ActiveRecord::Schema.define(:version => 20120612071936) do
create_table "access_links", :force => true do |t|
t.integer "access_point_id", :limit => 8
@@ -120,6 +120,29 @@ ActiveRecord::Schema.define(:version => 20120531091529) do
add_index "delayed_jobs", ["priority", "run_at"], :name => "delayed_jobs_priority"
+ create_table "export_log_messages", :force => true do |t|
+ t.integer "export_id"
+ t.string "key"
+ t.string "arguments", :limit => 1000
+ t.integer "position"
+ t.string "severity"
+ t.datetime "created_at"
+ t.datetime "updated_at"
+ end
+
+ add_index "export_log_messages", ["export_id"], :name => "index_export_log_messages_on_export_id"
+
+ create_table "exports", :force => true do |t|
+ t.integer "referential_id"
+ t.string "status"
+ t.string "type"
+ t.string "options"
+ t.datetime "created_at"
+ t.datetime "updated_at"
+ end
+
+ add_index "exports", ["referential_id"], :name => "index_exports_on_referential_id"
+
create_table "facilities", :force => true do |t|
t.integer "stop_area_id", :limit => 8
t.integer "line_id", :limit => 8
@@ -170,7 +193,7 @@ ActiveRecord::Schema.define(:version => 20120531091529) do
create_table "import_log_messages", :force => true do |t|
t.integer "import_id"
t.string "key"
- t.string "arguments"
+ t.string "arguments", :limit => 1000
t.integer "position"
t.string "severity"
t.datetime "created_at"
@@ -186,6 +209,7 @@ ActiveRecord::Schema.define(:version => 20120531091529) do
t.datetime "updated_at"
t.string "type"
t.string "options"
+ t.string "file_type"
end
add_index "imports", ["referential_id"], :name => "index_imports_on_referential_id"
@@ -273,6 +297,7 @@ ActiveRecord::Schema.define(:version => 20120531091529) do
t.datetime "updated_at"
t.string "prefix"
t.string "projection_type"
+ t.string "bounding_box", :limit => nil
t.string "time_zone"
end