数据库配置

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