aboutsummaryrefslogtreecommitdiffstats
path: root/db/schema.rb
diff options
context:
space:
mode:
authorfrancis <francis>2007-10-29 18:11:34 +0000
committerfrancis <francis>2007-10-29 18:11:34 +0000
commitd1c933ab84418a8947edc101b3ec4668e2fc123f (patch)
tree8337258011980e1a870ccf9be3382accd3b74d90 /db/schema.rb
parent60056be5c6e600880a7ee577cbc24a470f3f1119 (diff)
Model to store incoming messages. Save raw messages to it.
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb9
1 files changed, 8 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 2a8a7978b..8350f3943 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -2,7 +2,14 @@
# migrations feature of ActiveRecord to incrementally modify your database, and
# then regenerate this schema definition.
-ActiveRecord::Schema.define(:version => 12) do
+ActiveRecord::Schema.define(:version => 13) do
+
+ create_table "incoming_messages", :force => true do |t|
+ t.column "info_request_id", :integer
+ t.column "raw_data", :text
+ t.column "created_at", :datetime
+ t.column "updated_at", :datetime
+ end
create_table "info_requests", :force => true do |t|
t.column "title", :text