cleanup, remove trailing whitespace from AR changelog

This commit is contained in:
Yves Senn 2013-06-15 14:34:55 +02:00
parent c3adb313aa
commit 7078ec3f98
1 changed files with 4 additions and 4 deletions

View File

@ -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