0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Ruby on railsで最低限知っておくべきコマンド

Last updated at Posted at 2021-07-10
1 / 2

1.最低限これらのコマンドは使えるようにしましょう。
cloud9で開発を前提で記載します。


 新規アプリ作成
$ rails new アプリ名           新規アプリ作成

 サーバーの起動
$ rails s -b $IP -p $port   サーバーの起動

コントローラー作成
$ rails g controller コントローラー名       コントローラー作成

バージョンの確認
$ rails -v 

モデル作成コマンド
 $ rails g model モデル名 カラム名:型  モデル名は大文字から始まる
 $ rails g model  User name:string age:integer

カラム追加コマンド
$ rails  g migration   add_カラム名_to_テーブル名 カラム名:型
$ rails  g migration   add_mail_to_users mail:string

マイイグレーション実行
$ rails  db:migrate       データベースへの反映

データベース作成
$ rails db:create
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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?