chessh/priv/repo/migrations/20230313204047_increase_game_moves_size.exs

10 lines
188 B
Elixir
Raw Permalink Normal View History

2023-03-13 16:43:51 -04:00
defmodule Chessh.Repo.Migrations.IncreaseGameMovesSize do
use Ecto.Migration
def change do
alter table(:games) do
modify(:game_moves, :string, size: 4096)
end
end
end