ROR Lab. Season 4, 
76th Biweekly Lecture 
Getting
 Started
 (4) 
2014. 12. 9 
Lucius Choi(@luciuschoi)
MVC 
request(URI) 
routing 
response 
controller 
action 
C 
model 
M 
view 
V 
database
“Article”
 Model 
articles 
title string 
text text 
has_many :comments, dependent: :destroy
“Comment”
 Model 
comments 
commenter string 
body text 
article_id integer 
belongs_to :article
Nested