LoginSignup
0
0

More than 3 years have passed since last update.

【ruby on rails】app名を変更する方法

Last updated at Posted at 2020-10-28

環境

Ruby 2.7.1
Rails 6.0.3.4

流れ

1.gemを入れる
2.DBを削除
3.app名を変更
4.DB作成

手順

1.gemを入れる

Gemfileに以下を追記

gem 'rename'

bundleする

$ bundle

2.DBを削除

$ rails db:drop

3.app名を変更

$ rails g rename:into {{新しいapp名}}

作成したapp名のフォルダへ移動

$ cd ../{{新しいapp名}}

4.DB作成

DBを作成して

$ rails db:create

マイグレーションする

$ 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