Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
rails generate controller UploadFile # 프로젝트/app/controllers/upload_file_controller.rb가 생성됨.


Code Block


1.4 데이터베이스 마이그레이션

Code Block
languagebash
rails generate migration AddFileToUploadFile file:string # UploadFile에 파일을 담을 'file' 필드 추가
rake db:migrate

...