summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20221229225556_add_node.exs
diff options
context:
space:
mode:
authorSimponic <loganhunt@simponic.xyz>2022-12-30 05:46:35 -0700
committerSimponic <loganhunt@simponic.xyz>2022-12-30 05:46:35 -0700
commit42425b02260d279cd9c12fb3e625282979b9e308 (patch)
tree0412bf9f39d44266cff94082c499e44e5f6e60f5 /priv/repo/migrations/20221229225556_add_node.exs
parent60eea1b4ed65bc7cfce1e383dac6de9d004540eb (diff)
downloadchessh-42425b02260d279cd9c12fb3e625282979b9e308.tar.gz
chessh-42425b02260d279cd9c12fb3e625282979b9e308.zip
Add scalable session thresholds
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