Phoenix 提示运行不存在的迁移

问题描述 投票:0回答:3

我们来描述一下问题:

  • 我用
    mix phx.new
  • 创建了一个新的 Phoenix 应用程序
  • 我在
    {dev, test}.exs
    中配置了数据库连接(我正在映射现有数据库)
  • 我使用
    mix phx.gen.context
    创建了一个上下文(创建了迁移)

我第一次尝试运行服务器,但它告诉我我已取消部署迁移。

there are pending migrations for repo: Some.Repo. 
Try running `mix ecto.migrate` in the command line to migrate it

然后我意识到我不需要它们,因为我已经有了数据库,所以我删除了迁移文件(

/priv/repo/migrations/*
)并再次尝试。

现在

mix ecto.migrations
什么也不显示,但它并没有删除服务器提示。然后我发现 ecto 在数据库中创建了一个额外的表用于迁移,所以我检查了它,它是空的。

我删除了它并尝试再次运行服务器,但显示了相同的消息。


为了确保这不是 Ecto 问题,我准备了测试并且它们运行得很好,唯一的问题是我运行服务器时显示的迁移提示。


我还没有任何端点,因为我计划在验证模型正常工作后使用 GraphQL,但该消息令人困惑。

该迁移是否有任何隐藏文件,或者我是否遗漏了其他内容?

堆栈跟踪:

[error] #PID<0.451.0> running Some.Endpoint (connection #PID<0.449.0>, stream id 1) terminated
Server: localhost:4000 (http)
Request: GET /
** (exit) an exception was raised:
    ** (Phoenix.Ecto.PendingMigrationError) there are pending migrations for repo: Some.Repo. Try running `mix ecto.migrate` in the command line to migrate it
        (phoenix_ecto 4.2.1) lib/phoenix_ecto/check_repo_status.ex:67: Phoenix.Ecto.CheckRepoStatus.check_pending_migrations!/2
        (phoenix_ecto 4.2.1) lib/phoenix_ecto/check_repo_status.ex:27: anonymous fn/3 in Phoenix.Ecto.CheckRepoStatus.call/2
        ...
[error] #PID<0.454.0> running Some.Endpoint (connection #PID<0.449.0>, stream id 2) terminated
Server: localhost:4000 (http)
Request: GET /favicon.ico
** (exit) an exception was raised:
    ** (Phoenix.Ecto.PendingMigrationError) there are pending migrations for repo: Some.Repo. Try running `mix ecto.migrate` in the command line to migrate it
        (phoenix_ecto 4.2.1) lib/phoenix_ecto/check_repo_status.ex:67: Phoenix.Ecto.CheckRepoStatus.check_pending_migrations!/2
        (phoenix_ecto 4.2.1) lib/phoenix_ecto/check_repo_status.ex:27: anonymous fn/3 in Phoenix.Ecto.CheckRepoStatus.call/2
        ...

更新

经过进一步调查,该项目似乎以某种方式存储了

mix phx.new.context
生成的第一次迁移。

每当我重新创建数据库时,它都会提示迁移这个上下文。我的项目中没有任何提及该迁移的文件。

elixir phoenix-framework ecto
3个回答
11
投票

我遇到了这个问题,只能通过删除

_build
文件夹来解决,其他任何方法都不起作用,
ecto.reset
也没有删除迁移表。 Elixir 必须在项目中的某处存储一些与迁移相关的状态。

rm -rf _build/

4
投票

运行 mix ecto.migrations 这将显示您拥有的迁移。该列表(希望)与 /priv/repo/migrations 中的列表匹配。 转到 _build//priv/repo/migrations 并从此处删除不在其他两个迁移列表中的文件。 看来对我有用


0
投票

c:/Users/{USER}/Documents/folder/folder/PhoenixApp/hello/_build/dev/lib/hello/priv/repo/migrations

移民登记

© www.soinside.com 2019 - 2024. All rights reserved.