chessh/priv/repo/migrations/20221229225556_add_node.exs

11 lines
234 B
Elixir
Raw Permalink Normal View History

2022-12-29 19:21:20 -05:00
defmodule Chessh.Repo.Migrations.AddNode do
use Ecto.Migration
def change do
create table(:nodes, primary_key: false) do
add(:id, :string, primary_key: true)
2022-12-30 07:46:35 -05:00
add(:last_start, :utc_datetime_usec)
2022-12-29 19:21:20 -05:00
end
end
end