summaryrefslogtreecommitdiff
path: root/app/models/user.rb
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2014-03-06 22:14:58 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2014-03-06 22:14:58 -0500
commit4a91128f6fe20d95b6692abaa5e6c4dc92418b46 (patch)
tree467ae35d1ba927c734366f47339c62ac80f4bb56 /app/models/user.rb
parent9493275dbb5c59cfe571c48a8ff76d5b1a723d6a (diff)
fix the has_and_belongs_to_many relations
Diffstat (limited to 'app/models/user.rb')
-rw-r--r--app/models/user.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/models/user.rb b/app/models/user.rb
index 0a226e5..ff212e4 100644
--- a/app/models/user.rb
+++ b/app/models/user.rb
@@ -1,6 +1,6 @@
class User < ActiveRecord::Base
- has_and_belongs_to_many :tournaments_played, class_name: "Tournament", join_table: "tournaments_players"
- has_and_belongs_to_many :tournaments_hosted, class_name: "Tournament", join_table: "tournaments_hosts"
+ has_and_belongs_to_many :tournaments_played, class_name: "Tournament", foreign_key: "tournament_id", join_table: "players_tournaments"
+ has_and_belongs_to_many :tournaments_hosted, class_name: "Tournament", foreign_key: "tournament_id", join_table: "hosts_tournaments"
before_save { self.email = email.downcase }
before_save { self.user_name = user_name }