Skip to content

Commit

Permalink
updated schema
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Butsko committed Jan 7, 2013
1 parent 5700f40 commit 08541b1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#
# It's strongly recommended to check this file into your version control system.

ActiveRecord::Schema.define(:version => 20130107074140) do
ActiveRecord::Schema.define(:version => 20130107180557) do

create_table "authentications", :force => true do |t|
t.integer "user_id"
Expand Down Expand Up @@ -127,6 +127,9 @@
t.integer "exercise_id"
end

add_index "scores", ["user_id", "complete", "count_hints"], :name => "index_scores_on_user_id_and_complete_and_count_hints"
add_index "scores", ["user_id", "complete"], :name => "index_scores_on_user_id_and_complete"

create_table "users", :force => true do |t|
t.string "name"
t.datetime "created_at", :null => false
Expand Down

0 comments on commit 08541b1

Please sign in to comment.