diff options
author | francis <francis> | 2008-03-31 23:19:16 +0000 |
---|---|---|
committer | francis <francis> | 2008-03-31 23:19:16 +0000 |
commit | 13a241e7b7d02eee5186c2df8283e80163418be6 (patch) | |
tree | 0011834420b8faf48ff2bc8b82f4ff50df296504 /db/schema.rb | |
parent | 7a52e4eab86dc13f42161e925f00715f0cbf70a1 (diff) |
Sort order specially for RSS
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/db/schema.rb b/db/schema.rb index 6f4c975ae..7083fbfd6 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -9,7 +9,7 @@ # # It's strongly recommended to check this file into your version control system. -ActiveRecord::Schema.define(:version => 47) do +ActiveRecord::Schema.define(:version => 48) do create_table "incoming_messages", :force => true do |t| t.integer "info_request_id", :null => false @@ -19,12 +19,13 @@ ActiveRecord::Schema.define(:version => 47) do end create_table "info_request_events", :force => true do |t| - t.integer "info_request_id", :null => false - t.text "event_type", :null => false - t.text "params_yaml", :null => false - t.datetime "created_at", :null => false + t.integer "info_request_id", :null => false + t.text "event_type", :null => false + t.text "params_yaml", :null => false + t.datetime "created_at", :null => false t.string "described_state" t.string "calculated_state" + t.datetime "last_described_at" end create_table "info_requests", :force => true do |t| |