由于inserted_at
和updated_at
不能null
这不起作用:
def change do
alter table(:channels) do
timestamps
end
end
** (Postgrex.Error) ERROR (not_null_violation): column "inserted_at" contains null values
有没有一种简单的方法可以在不复制timestamps
'功能的情况下实现这一目标?
答案 0 :(得分:10)
timestamps/1
函数接受选项关键字列表,您可以使用它设置默认值。
def change do
alter table(:channels) do
timestamps default: "2016-01-01 00:00:01", null: false
end
end
UPDATE Ecto> = 2.1
您需要使用新类型NaiveDateTime
def change do
alter table(:channels) do
timestamps default: ~N[2017-01-01 00:00:01], null: false
end
end
如果您有更多疑问,请查看documentation
答案 1 :(得分:2)
我使用以下迁移将时间戳添加到现有表中并用当前时间填充它们:
defmodule MyApp.AddTimestampsToChannels do
use Ecto.Migration
def up do
alter table(:channels) do
timestamps null: true
end
execute """
UPDATE channels
SET updated_at=NOW(), inserted_at=NOW()
"""
alter table(:channels) do
modify :inserted_at, :utc_datetime, null: false
modify :updated_at, :utc_datetime, null: false
end
end
def down do
alter table(:channels) do
remove :inserted_at
remove :updated_at
end
end
end
还有其他方法可以做到这一点。例如,如果您有一些相关的表,则可以从中借用初始时间戳:
execute """
UPDATE channels
SET inserted_at=u.inserted_at,
updated_at=u.updated_at
FROM
(SELECT id,
inserted_at,
updated_at
FROM accounts) AS u
WHERE u.id=channels.user_id;
"""
答案 2 :(得分:0)
我想你在尝试更新记录时会得到这个,我可以想到两种可能的解决方案,你可以通过运行UPDATE查询或者像你这样将函数添加到你的ecto模型来触摸表中的inserted_at列
def create_changeset(model, attrs) do
model
|> cast(attrs, @required_fields, @optional_fields)
|> update_inserted_at
end
defp update_inserted_at(changeset) do
# check if the updated field is null set a new date
end