diff options
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb index 7c94e4622..b53ac9e8e 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 => 61) do +ActiveRecord::Schema.define(:version => 62) do create_table "acts_as_xapian_jobs", :force => true do |t| t.string "model", :null => false @@ -19,6 +19,16 @@ ActiveRecord::Schema.define(:version => 61) do add_index "acts_as_xapian_jobs", ["model", "model_id"], :name => "index_acts_as_xapian_jobs_on_model_and_model_id", :unique => true + create_table "comments", :force => true do |t| + t.integer "user_id", :null => false + t.string "comment_type", :default => "internal_error", :null => false + t.integer "info_request_id" + t.text "body", :null => false + t.boolean "visible", :default => true, :null => false + t.datetime "created_at", :null => false + t.datetime "updated_at", :null => false + end + create_table "incoming_messages", :force => true do |t| t.integer "info_request_id", :null => false t.text "raw_data", :null => false |