diff options
author | francis <francis> | 2008-01-10 01:13:27 +0000 |
---|---|---|
committer | francis <francis> | 2008-01-10 01:13:27 +0000 |
commit | cbf8f251f85b13256de045ded55fcc191d980007 (patch) | |
tree | ae90b305a337424944bd2aee4be0eaadda886b82 /db/schema.rb | |
parent | d6c6623f26b4c18db7fe80498c2d08c9bfd83e4f (diff) |
Let original requester send followup messages.
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/db/schema.rb b/db/schema.rb index 30c9570ec..3632942d1 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 => 24) do +ActiveRecord::Schema.define(:version => 25) do create_table "incoming_messages", :force => true do |t| t.column "info_request_id", :integer @@ -30,13 +30,14 @@ ActiveRecord::Schema.define(:version => 24) do end create_table "outgoing_messages", :force => true do |t| - t.column "info_request_id", :integer - t.column "body", :text - t.column "status", :string - t.column "message_type", :string - t.column "created_at", :datetime - t.column "updated_at", :datetime - t.column "last_sent_at", :datetime + t.column "info_request_id", :integer + t.column "body", :text + t.column "status", :string + t.column "message_type", :string + t.column "created_at", :datetime + t.column "updated_at", :datetime + t.column "last_sent_at", :datetime + t.column "incoming_message_followup_id", :integer end create_table "post_redirects", :force => true do |t| |