test/dummy/db/schema.rb in errdo-0.11.6 vs test/dummy/db/schema.rb in errdo-0.12.0

- old
+ new

@@ -9,20 +9,20 @@ # from scratch. The latter is a flawed and unsustainable approach (the more migrations # you'll amass, the slower it'll run and the greater likelihood for issues). # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 20161004015324) do +ActiveRecord::Schema.define(version: 20161120204607) do create_table "error_occurrences", force: :cascade do |t| t.integer "error_id" t.string "experiencer_type" t.integer "experiencer_id" t.string "ip" - t.string "user_agent" + t.text "user_agent" t.string "referer" - t.string "query_string" + t.text "query_string" t.text "form_values" t.text "param_values" t.text "cookie_values" t.text "header_values" t.integer "ocurrence_count", default: 1 @@ -33,14 +33,14 @@ add_index "error_occurrences", ["error_id"], name: "index_error_occurrences_on_error_id" add_index "error_occurrences", ["experiencer_id"], name: "index_error_occurrences_on_experiencer_id" add_index "error_occurrences", ["experiencer_type"], name: "index_error_occurrences_on_experiencer_type" create_table "errors", force: :cascade do |t| - t.string "exception_class_name" - t.string "exception_message" + t.text "exception_class_name" + t.text "exception_message" t.string "http_method" - t.string "host_name" - t.string "url" + t.text "host_name" + t.text "url" t.text "backtrace" t.string "backtrace_hash" t.integer "occurrence_count", default: 0 t.datetime "last_occurred_at" t.string "last_experiencer_type"