如何在Ecto的迁移中运行更新?

时间:2016-04-19 15:49:56

标签: elixir phoenix-framework ecto

我在我的一个项目中使用PhoenixEcto

我想在一个表中添加一列,我希望它是一个 NOT NULL 列。但是我已经有了一些现有的数据,所以我决定添加列,将所有行更新为某个值并将列修改为 NOT NULL

我尝试了这两个代码:

  # solution 1
  def up do
    alter table(:channels) do
      add :type, :integer
      Exchat.Repo.update_all("channels", set: [type: 1])
      modify :type, :integer, null: false
    end
  end

  # solution 2
  def up do
    alter table(:channels) do
      add :type, :integer
    end
    Exchat.Repo.update_all("channels", set: [type: 1])
    alter table(:channels) do
      modify :type, :integer, null: false
    end
  end

他们两个都没有用,我得到的错误如下:

23::40::07.514 [info]  == Running Exchat.Repo.Migrations.AddTypeToChannels.up/0 forward

23::40::07.541 [debug] UPDATE "channels" AS c0 SET "type" = $1 [1] ERROR query=12.0ms
** (Postgrex.Error) ERROR (undefined_column): column "type" of relation "channels" does not exist
    (ecto) lib/ecto/adapters/sql.ex:383: Ecto.Adapters.SQL.execute_and_cache/7

我不确定它是否与Ecto版本有关,但我的Ecto版本是2.0.0-rc.0。

有没有办法实现这个目标?或者我的示例代码中有什么问题吗?

1 个答案:

答案 0 :(得分:20)

解决方案#2是正确的方法,但您需要在第一个alter块之后添加对Ecto.Migration.flush/0的调用,以确保在数据库上立即执行所有更改而不是排队稍后执行,这是默认值。

def up do
  alter table(:channels) do
    add :type, :integer
  end
  flush()
  Exchat.Repo.update_all("channels", set: [type: 1])
  alter table(:channels) do
    modify :type, :integer, null: false
  end
end