formatting

This commit is contained in:
Brian Smith 2012-10-14 00:21:52 -04:00
parent a1f911086b
commit daa042630d
2 changed files with 10 additions and 10 deletions

View File

@ -1,10 +1,10 @@
module JamRuby
class FriendRequest < ActiveRecord::Base
class FriendRequest < ActiveRecord::Base
self.primary_key = 'id'
self.primary_key = 'id'
belongs_to :user
belongs_to :friend, :class_name => "JamRuby::User"
belongs_to :user
belongs_to :friend, :class_name => "JamRuby::User"
end
end
end

View File

@ -1,10 +1,10 @@
module JamRuby
class Friendship < ActiveRecord::Base
class Friendship < ActiveRecord::Base
self.primary_key = 'id'
self.primary_key = 'id'
belongs_to :user
belongs_to :friend, :class_name => "JamRuby::User"
belongs_to :user
belongs_to :friend, :class_name => "JamRuby::User"
end
end
end