如何防止创建development.sqlite3文件?

时间:2015-05-01 16:56:06

标签: ruby-on-rails postgresql sqlite

我将database.yml文件更改为使用postgresql而不是sqlite3。 但是当我rake db:migrate - development.sqlite3文件被创建时。

这是我的database.yml文件:

default: &default
  adapter: postgresql
  encoding: unicode
  pool: 5
  host: localhost

development:
  <<: *default
  database: scrumban_development

test:
  <<: *default
  database: scrumban_test

production:
  <<: *default
  database: scrumban_production
  username: scrumban
  password: <%= ENV['scrumban_DATABASE_PASSWORD'] %>

1 个答案:

答案 0 :(得分:1)

不要包含sqlite3 gem,它应该停止创建它。