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 5 years have passed since last update.

コマンドナレッジ

0
Last updated at Posted at 2021-04-23

railsコマンド

.railsアプリ作成
`rails _バージョン_ new アプリケーション名`

・gemインストール
`bundle install or bundle update`

・railsサーバー起動(開発環境)
`rails server or rails s`

・テスト開始
`rails test or rails t`

・コンソール起動
`rails console or rails c`

・データベースのマイグレーション
`rails db:migrate`

・マイグレーションを最初の状態に戻す
`rails db:migrate VERSION=0`

・データベースのマイグレーションファイル削除
`rails db:rollback`

・controller作成
`rails generate controller コントローラ名 アクション名` #(アクションは複数可)

・model作成
`rails generate model モデル名 引数名:型` # (引数名は複数可)

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?