資料庫配置

rails 專案的資料庫配置位於檔案 config/database.yml 中。如果使用 rails new 命令建立專案並且未指定要使用的資料庫引擎,則 rails 使用 sqlite 作為預設資料庫。具有預設配置的典型 database.yml 檔案將類似於以下內容。

# SQLite version 3.x
#   gem install sqlite3
#
#   Ensure the SQLite 3 gem is defined in your Gemfile
#   gem 'sqlite3'
#
default: &default
  adapter: sqlite3
  pool: 5
  timeout: 5000

development:
  <<: *default
  database: db/development.sqlite3

# Warning: The database defined as "test" will be erased and
# re-generated from your development database when you run "rake".
# Do not set this db to the same as development or production.
test:
  <<: *default
  database: db/test.sqlite3

production:
  <<: *default
  database: db/production.sqlite3

如果要在建立新專案時更改預設資料庫,可以指定 database:rails new hello_world --database=mysql