LoginSignup
0
0

More than 3 years have passed since last update.

rails g scaffold で楽々下準備

Posted at

安易はcrud処理も自動で作ってくれる優れもの^^
だと思っております 笑

scaffoldとは

他のrails gコマンドは不要で、
Webアプリケーションに必要なcrud処理も一度に自動で組み立ててくれるのがscaffold。

scaffoldの使い方

$ rails g scaffold hoge title:string content:text
このコマンドだけでhogesコントローラーやhogeモデルができる。
$ rake db:create
$ rake db:migrate
$ rails s

以上で
index show new edit create update destroy
7つのアクションの準備ができます。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0