ActiveRecord 将在迁移时创建数据库,但当我尝试保存某些内容或生成架构时找不到它

Posted

技术标签:

【中文标题】ActiveRecord 将在迁移时创建数据库,但当我尝试保存某些内容或生成架构时找不到它【英文标题】:ActiveRecord will create database upon migrations but can't find it when I try to save something or produce a schema 【发布时间】:2021-08-06 03:29:57 【问题描述】:

我正在尝试保存用户,但 ActiveRecord 找不到我的表。此外,“rake db:schema:dump”不会生成 schema.rb 文件,我已经完成了创建表迁移,并且在执行此操作时已经创建了默认的“development.sqlite”数据库。然后我进入:

pry(main)> User.create(username: "test", email: "foo@bar.com", password_digest: "foobar")

看看:

ActiveRecord::StatementInvalid: 找不到表“用户” 来自 /home/me/.rvm/gems/ruby-2.6.1/gems/activerecord-6.1.3.2/lib/active_record/connection_adapters/sqlite3_adapter.rb:346:in `table_structure'

在 sqlite3_adapter.rb 的第 346 行粘贴“binding.pry”后,我尝试查找“table_name”和“@config”的值,我发现这两个似乎都设置正确:

pry(#<ActiveRecord::ConnectionAdapters::SQLite3Adapter>)> table_name

=>“用户”

[2] pry(#<ActiveRecord::ConnectionAdapters::SQLite3Adapter>)> @config

=> :adapter=>"sqlite3", :database=>"db/development.sqlite"

这对我来说似乎是正确的,除非我遗漏了什么。我将迁移写为:

class CreateUsers < ActiveRecord::Migration[6.1]
  def change
    create_table :users do |t|
      t.string :username
      t.string :email
      t.string :password_digest
    end
  end
end

我看过here 并且一直在谷歌搜索。寻找可能是什么问题的线索。

【问题讨论】:

【参考方案1】:

您需要“运行”迁移:

rails db:migrate

【讨论】:

不幸的是我已经这样做了,而且运行 'rake db:rollback' 也不能解决问题。 db:migrate 任务的输出是什么?

以上是关于ActiveRecord 将在迁移时创建数据库,但当我尝试保存某些内容或生成架构时找不到它的主要内容,如果未能解决你的问题,请参考以下文章

ActiveRecord 可以在迁移之外创建表吗?

带有 UUID 主键的 ActiveRecord 迁移

ActiveRecord 迁移未填充 Postgres 物化视图

Django 迁移问题

是否有任何与 rails ActiveRecord 迁移相当的 Firestore 数据库模式迁移概念?

如何在 Ruby on Rails ActiveRecord 迁移中处理过长的索引名称?