Tag: Rails/運用
指定のデータベースだけを作成する。テーブルは作成されない。この後migrationを実行するかschemaからロードしないといけない。
bundle exec rake db:create:all
bundle exec rake db:create RAILS_ENV=test
bundle exec rake db:drop
bundle exec rake db:drop RAILS_ENV=test
bunde exec rake db:reset
bundle exec rake db:migrate:reset
bundle exec rails dbconsole
bundle exec rails dbconsole test
★以下の操作はSQLite3やMySQLの操作方法と同じ。
bundle exec rails s -e production
bundle exec rspec
bundle exec rspec spec/models/book_spec.rb