gpt4 book ai didi

ruby-on-rails - Postgresql 与 Ruby on Rails

转载 作者:行者123 更新时间:2023-11-29 12:11:42 25 4
gpt4 key购买 nike

我想从 sqlite3 迁移到 postgresql。搜索后我发现我应该将我的 database.yml 更改为这样的东西:

  adapter: postgresql
encoding: unicode
database: [insert your dev database name]
pool: 5
username: [insert your user name]
password:

但我不知道要提供什么来代替数据库、用户名和密码。因为我不记得创建过它们中的任何一个。我刚刚创建了我的 Rails 应用程序和迁移,仅此而已。

最佳答案

使用 postgres 数据库配置你的 rails 项目执行以下步骤。在 database.yml 文件中提供您的数据库详细信息例如:

development:
username: postgres
database: ur-db-dev
password: pass
encoding: UTF8
adapter: postgresql
timeout: 500
pool: 5

在您的 Gemfile 中添加 postgres gem>

gem 'pg'

然后,

  1. 执行 bundle install 安装 postgres gem
  2. rake db:create 以创建您的数据库
  3. rake db:migrate 迁移您的迁移文件

关于ruby-on-rails - Postgresql 与 Ruby on Rails,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30858670/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com