0
0

More than 3 years have passed since last update.

rails scaffoldで最速サイト作成

Posted at

scaffold(スキャフォールド)コードを自動生成する

RubyのフレームワークのRuby on Railsには、コードを自動生成する便利なものが多く存在し、今回はその一つであるscaffold(スキャフォールド)を紹介します。

rails g scaffold モデル名 カラム名1:データ型1 カラム名2:データ型 2
rails generate scaffold Vegetable name:string image:string body:text weight:integer memo:string

そしてマイグレーションを行う

rails db:migrate

一連の流れを汲んだサイトが完成する

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