Skip to content

Commit

Permalink
Merge pull request #58 from eisuke/fix_dummy_db_schema
Browse files Browse the repository at this point in the history
Fix schema.rb
  • Loading branch information
eisuke authored May 9, 2017
2 parents 94fcc90 + e74c4c5 commit 0382965
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/dummy/db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.

ActiveRecord::Schema.define(version: 26) do
ActiveRecord::Schema.define(version: 27) do

create_table "admin_assignments", force: :cascade, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4" do |t|
t.integer "user_id", null: false
Expand Down Expand Up @@ -182,7 +182,7 @@
t.datetime "suspended_at"
t.datetime "created_at"
t.datetime "updated_at"
t.index ["email"], name: "email", unique: true, using: :btree
t.index ["email"], name: "email", using: :btree
t.index ["uid", "suspended_at"], name: "uid_2", using: :btree
t.index ["uid"], name: "uid", unique: true, using: :btree
end
Expand Down

0 comments on commit 0382965

Please sign in to comment.