chessh/priv/repo/migrations/20230202004927_add_discord_thread_id.exs
Simponic 47d3f28f16
Discord threads (#16)
* Add initial support for discord threads

* Finish thread creation
2023-02-01 22:55:06 -07:00

10 lines
189 B
Elixir

defmodule Chessh.Repo.Migrations.AddDiscordThreadId do
use Ecto.Migration
def change do
alter table(:games) do
add(:discord_thread_id, :string, null: true)
end
end
end