summaryrefslogtreecommitdiff
path: root/lib/chessh/schema/node.ex
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chessh/schema/node.ex')
-rw-r--r--lib/chessh/schema/node.ex4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chessh/schema/node.ex b/lib/chessh/schema/node.ex
index 867a6e2..8834aef 100644
--- a/lib/chessh/schema/node.ex
+++ b/lib/chessh/schema/node.ex
@@ -5,7 +5,7 @@ defmodule Chessh.Node do
@primary_key {:id, :string, []}
schema "nodes" do
- field(:last_start, :utc_datetime)
+ field(:last_start, :utc_datetime_usec)
end
def changeset(node, attrs) do
@@ -18,7 +18,7 @@ defmodule Chessh.Node do
nil -> %Chessh.Node{id: node_id}
node -> node
end
- |> Chessh.Node.changeset(%{last_start: DateTime.utc_now()})
+ |> changeset(%{last_start: DateTime.utc_now()})
|> Repo.insert_or_update()
end
end