diff options
author | John Kelly Ferguson <hello@johnkellyferguson.com> | 2014-05-25 18:48:14 -0400 |
---|---|---|
committer | John Kelly Ferguson <hello@johnkellyferguson.com> | 2014-05-25 18:48:14 -0400 |
commit | 45072f34d27bda34b182f14f8b02d778d1648cce (patch) | |
tree | 66a21875edf8908997ba28f63a8d32f8cedd2a0b /guides/code/getting_started/app/models | |
parent | 6c30717f8c182dc05f63779b3a9a532fb9076b05 (diff) | |
download | rails-45072f34d27bda34b182f14f8b02d778d1648cce.tar.gz rails-45072f34d27bda34b182f14f8b02d778d1648cce.tar.bz2 rails-45072f34d27bda34b182f14f8b02d778d1648cce.zip |
Rename Posts to Articles in Guides' Getting Started App, continuation of #15215 [ci skip]
Diffstat (limited to 'guides/code/getting_started/app/models')
-rw-r--r-- | guides/code/getting_started/app/models/article.rb (renamed from guides/code/getting_started/app/models/post.rb) | 4 | ||||
-rw-r--r-- | guides/code/getting_started/app/models/comment.rb | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/guides/code/getting_started/app/models/post.rb b/guides/code/getting_started/app/models/article.rb index 64e0d721fd..6fc7888be2 100644 --- a/guides/code/getting_started/app/models/post.rb +++ b/guides/code/getting_started/app/models/article.rb @@ -1,6 +1,6 @@ -class Post < ActiveRecord::Base +class Article < ActiveRecord::Base has_many :comments, dependent: :destroy - + validates :title, presence: true, length: { minimum: 5 } diff --git a/guides/code/getting_started/app/models/comment.rb b/guides/code/getting_started/app/models/comment.rb index 4e76c5b5b0..e2646a324f 100644 --- a/guides/code/getting_started/app/models/comment.rb +++ b/guides/code/getting_started/app/models/comment.rb @@ -1,3 +1,3 @@ class Comment < ActiveRecord::Base - belongs_to :post + belongs_to :article end |