spec/dummy/db/schema.rb in ddr-models-1.7.0 vs spec/dummy/db/schema.rb in ddr-models-1.8.0

- 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: 20141218020612) do +ActiveRecord::Schema.define(version: 20150110023410) do create_table "events", force: true do |t| t.datetime "event_date_time" t.integer "user_id" t.string "type" @@ -55,17 +55,7 @@ end add_index "users", ["email"], name: "index_users_on_email" add_index "users", ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true add_index "users", ["username"], name: "index_users_on_username", unique: true - - create_table "workflow_states", force: true do |t| - t.string "pid" - t.string "workflow_state" - t.datetime "created_at" - t.datetime "updated_at" - end - - add_index "workflow_states", ["pid"], name: "index_workflow_states_on_pid", unique: true - add_index "workflow_states", ["workflow_state"], name: "index_workflow_states_on_workflow_state" end