Add match url

This commit is contained in:
2024-05-03 00:44:55 +02:00
parent dafadcbddd
commit 080b18c6be
3 changed files with 16 additions and 3 deletions
@@ -0,0 +1,9 @@
defmodule LoLAnalytics.Repo.Migrations.MatchUrl do
use Ecto.Migration
def change do
alter table("match") do
add :match_url, :string
end
end
end