aboutsummaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20221229225556_add_node.exs
diff options
context:
space:
mode:
authorLogan Hunt <loganhunt@simponic.xyz>2022-12-30 05:53:15 -0700
committerGitHub <noreply@github.com>2022-12-30 05:53:15 -0700
commit52fbc0b0161d2d30583d7f04eef57a29e441e1d2 (patch)
treef882037a2820973ba6dc5f64206b01dba03266d8 /priv/repo/migrations/20221229225556_add_node.exs
parentc143bb549c53f2737c41cdfce6cc2598c5489bdc (diff)
parente7d8c61487815bd90ec5834dad5e6f64dd951b53 (diff)
downloadchessh-52fbc0b0161d2d30583d7f04eef57a29e441e1d2.tar.gz
chessh-52fbc0b0161d2d30583d7f04eef57a29e441e1d2.zip
Merge pull request #2 from Simponic/erlang_ssh_server
Erlang ssh server #2
Diffstat (limited to 'priv/repo/migrations/20221229225556_add_node.exs')
-rw-r--r--priv/repo/migrations/20221229225556_add_node.exs2
1 files changed, 1 insertions, 1 deletions
diff --git a/priv/repo/migrations/20221229225556_add_node.exs b/priv/repo/migrations/20221229225556_add_node.exs
index f8eace8..11731d9 100644
--- a/priv/repo/migrations/20221229225556_add_node.exs
+++ b/priv/repo/migrations/20221229225556_add_node.exs
@@ -4,7 +4,7 @@ defmodule Chessh.Repo.Migrations.AddNode do
def change do
create table(:nodes, primary_key: false) do
add(:id, :string, primary_key: true)
- add(:last_start, :utc_datetime)
+ add(:last_start, :utc_datetime_usec)
end
end
end