Increase game moves column size

This commit is contained in:
Lizzy Hunt 2023-03-13 14:43:51 -06:00
parent a1f01d4a2b
commit 763529e6c3
No known key found for this signature in database
GPG Key ID: 8AC6A4B840C0EC49

View File

@ -0,0 +1,9 @@
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