mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
cleanup, remove trailing whitespace from AR changelog
This commit is contained in:
parent
c3adb313aa
commit
7078ec3f98
1 changed files with 4 additions and 4 deletions
|
@ -5,12 +5,12 @@
|
|||
has_many :posts
|
||||
has_many :taggings, :through => :posts
|
||||
end
|
||||
|
||||
|
||||
class Post < ActiveRecord::Base
|
||||
has_one :tagging
|
||||
has_many :taggings
|
||||
end
|
||||
|
||||
|
||||
class Tagging < ActiveRecord::Base
|
||||
end
|
||||
|
||||
|
@ -20,12 +20,12 @@
|
|||
has_many :posts
|
||||
has_many :taggings, :through => :posts, :source => :tagging
|
||||
end
|
||||
|
||||
|
||||
class Post < ActiveRecord::Base
|
||||
has_one :tagging
|
||||
has_many :taggings
|
||||
end
|
||||
|
||||
|
||||
class Tagging < ActiveRecord::Base
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue