spec/dummy/db/schema.rb in ddr-models-2.4.16 vs spec/dummy/db/schema.rb in ddr-models-2.5.0.rc1

- old
+ new

@@ -9,11 +9,11 @@ # 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: 20150713171838) do +ActiveRecord::Schema.define(version: 20161021201011) do create_table "events", force: true do |t| t.datetime "event_date_time" t.integer "user_id" t.string "type" @@ -25,13 +25,15 @@ t.string "summary" t.string "outcome" t.text "detail" t.text "exception", limit: 65535 t.string "user_key" + t.string "permanent_id" end add_index "events", ["event_date_time"], name: "index_events_on_event_date_time" add_index "events", ["outcome"], name: "index_events_on_outcome" + add_index "events", ["permanent_id"], name: "index_events_on_permanent_id" add_index "events", ["pid"], name: "index_events_on_pid" add_index "events", ["type"], name: "index_events_on_type" create_table "users", force: true do |t| t.string "email", default: "", null: false