Skip to content

Commit

Permalink
Update schema.
Browse files Browse the repository at this point in the history
  • Loading branch information
rwjblue committed Jun 14, 2013
1 parent dcf5686 commit cec572f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,26 @@
#
# It's strongly recommended to check this file into your version control system.

ActiveRecord::Schema.define(:version => 20130612205050) do
ActiveRecord::Schema.define(:version => 20130614151140) do

create_table "ppwm_matcher_codes", :force => true do |t|
t.string "value"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
end

add_index "ppwm_matcher_codes", ["value"], :name => "index_ppwm_matcher_codes_on_value", :unique => true

create_table "ppwm_matcher_users", :force => true do |t|
t.string "email"
t.integer "code_id"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
t.string "gravatar_id"
t.string "github_login"
t.string "name"
end

add_index "ppwm_matcher_users", ["github_login"], :name => "index_ppwm_matcher_users_on_github_login", :unique => true

end

0 comments on commit cec572f

Please sign in to comment.