Skip to content

Commit

Permalink
add indexes on schedules
Browse files Browse the repository at this point in the history
  • Loading branch information
hanyong37 committed Nov 29, 2016
1 parent 2cb4fef commit 98b54b9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion 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: 20161118182237) do
ActiveRecord::Schema.define(version: 20161129040302) do

# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
Expand Down Expand Up @@ -74,6 +74,8 @@
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["course_id"], name: "index_schedules_on_course_id", using: :btree
t.index ["end_time"], name: "index_schedules_on_end_time", using: :btree
t.index ["start_time"], name: "index_schedules_on_start_time", using: :btree
t.index ["store_id"], name: "index_schedules_on_store_id", using: :btree
end

Expand Down

0 comments on commit 98b54b9

Please sign in to comment.