diff options
author | francis <francis> | 2008-09-22 22:08:43 +0000 |
---|---|---|
committer | francis <francis> | 2008-09-22 22:08:43 +0000 |
commit | 945b754b9ecc2d6c002245de58d9870f5beb3961 (patch) | |
tree | 9aeb1085d61c4de9a924867fa22d1d1a8bc70c51 /db/schema.rb | |
parent | 0a2e4174028a0102779656e9995d15d9513c64b7 (diff) |
Fix up test code, and some bugs relating to splitting out raw_email data.
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/db/schema.rb b/db/schema.rb index 496df6f0c..bce1b4d10 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 => 66) do +ActiveRecord::Schema.define(:version => 67) do create_table "acts_as_xapian_jobs", :force => true do |t| t.string "model", :null => false @@ -31,11 +31,11 @@ ActiveRecord::Schema.define(:version => 66) do create_table "incoming_messages", :force => true do |t| t.integer "info_request_id", :null => false - t.text "raw_data", :null => false t.datetime "created_at", :null => false t.datetime "updated_at", :null => false t.text "cached_attachment_text" t.text "cached_main_body_text" + t.integer "raw_email_id", :null => false end create_table "info_request_events", :force => true do |t| @@ -139,6 +139,10 @@ ActiveRecord::Schema.define(:version => 66) do t.text "notes" end + create_table "raw_emails", :force => true do |t| + t.binary "data", :null => false + end + create_table "track_things", :force => true do |t| t.integer "tracking_user_id", :null => false t.string "track_query", :null => false |