aboutsummaryrefslogtreecommitdiffstats
path: root/db/schema.rb
diff options
context:
space:
mode:
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 b8fbac966..f2032fdc5 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 => 21) do
+ActiveRecord::Schema.define(:version => 22) do
create_table "incoming_messages", :force => true do |t|
t.column "info_request_id", :integer
@@ -13,6 +13,13 @@ ActiveRecord::Schema.define(:version => 21) do
t.column "contains_information", :boolean
end
+ create_table "info_request_events", :force => true do |t|
+ t.column "info_request_id", :integer
+ t.column "event_type", :text
+ t.column "params_yaml", :text
+ t.column "created_at", :datetime
+ end
+
create_table "info_requests", :force => true do |t|
t.column "title", :text
t.column "user_id", :integer