diff options
author | francis <francis> | 2008-03-17 10:48:46 +0000 |
---|---|---|
committer | francis <francis> | 2008-03-17 10:48:46 +0000 |
commit | 806e617133f0125ad2534e48d0abdd0891824b6f (patch) | |
tree | d5e0582cd4acefd8be8308af9fc235c8d8437093 /db/schema.rb | |
parent | 3a07cc3dbc25f56bba191b4607fb1fa8f64a63ca (diff) |
Remove complaint_email field as we were never filling it in or using it. There are more important things.
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/db/schema.rb b/db/schema.rb index 00c77b946..5bcb2470e 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 => 42) do +ActiveRecord::Schema.define(:version => 43) do create_table "incoming_messages", :force => true do |t| t.integer "info_request_id", :null => false @@ -75,7 +75,6 @@ ActiveRecord::Schema.define(:version => 42) do t.text "name", :null => false t.text "short_name", :null => false t.text "request_email", :null => false - t.text "complaint_email" t.integer "version", :null => false t.string "last_edit_editor", :null => false t.text "last_edit_comment", :null => false @@ -100,7 +99,6 @@ ActiveRecord::Schema.define(:version => 42) do t.text "name" t.text "short_name" t.text "request_email" - t.text "complaint_email" t.datetime "updated_at" t.string "last_edit_editor" t.string "last_edit_comment" |