aboutsummaryrefslogtreecommitdiffstats
path: root/db/schema.rb
diff options
context:
space:
mode:
authorfrancis <francis>2008-01-03 18:21:30 +0000
committerfrancis <francis>2008-01-03 18:21:30 +0000
commit0ee99f7b986b76b11434f03ebab507de4f20c156 (patch)
tree306fe131718305d56adb89867cb24e4ef52de120 /db/schema.rb
parentd8118bafcbb1f7951c8fa5ab7a48b0861b333e68 (diff)
Set envelope from for initial requests to a seperate address, and mark messages
to that address as being bounce messages. For now just display that simply.
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 38257f742..30c9570ec 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -2,7 +2,7 @@
# migrations feature of ActiveRecord to incrementally modify your database, and
# then regenerate this schema definition.
-ActiveRecord::Schema.define(:version => 23) do
+ActiveRecord::Schema.define(:version => 24) do
create_table "incoming_messages", :force => true do |t|
t.column "info_request_id", :integer
@@ -11,6 +11,7 @@ ActiveRecord::Schema.define(:version => 23) do
t.column "updated_at", :datetime
t.column "user_classified", :boolean, :default => false
t.column "contains_information", :boolean
+ t.column "is_bounce", :boolean, :default => false
end
create_table "info_request_events", :force => true do |t|