LoginSignup
0
0

More than 1 year has passed since last update.

Rails コマンドでモデルとテーブル作成・カラム追加

Last updated at Posted at 2022-06-28

モデル作成+テーブル作成

rails g model <モデル名アッパーキャメル単数形> [カラム名:型]...

rails g model HighScore game:string score:integer

カラム追加

rails g model Add<any>To<モデル名アッパーキャメル単数形>

rails g model AddColumnToTable game_add:string

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