memo.xight.org

日々のメモ

カテゴリ : Rails

1ページ目 / 全1ページ

Railsでカラム名の変更

Terminal

rails generate migration fix_typo


db/migrate/XXXXXXXXXXXXXXXX_fix_typo.rb

class ChangeColumnModelName < ActiveRecord::Migration[5.0]
  def change
	rename_column :modelname, :wrong, :correct
  end
end

Terminal

rake db:migrate

RubyMine + bundler + rails

環境整備

-- Terminal
bundle init
bundle install --path vendor/bundle --jobs 4
bundle exec rails new sample_app


RubyMine

RubyMineでアプリケーションのディレクトリ (sample_app) を開く
[Tools] - [Bundler] - [Install] --path vendor/bundle --jobs 4

[Run] - [Edit Configure...]
Rails, Rake, Ruby, RSpec の Bundler タブから
Run the script in context of the bundle (bundle exec) にチェックを入れる。

rails generate で error

gem install spring


[Tools] - [Run Rails Generator...] が表示されない場合

rm .idea


RubyMine を終了、再度起動