10 lines
165 B
Elixir
10 lines
165 B
Elixir
defmodule LoLAnalytics.Repo.Migrations.MatchUrl do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table("match") do
|
|
add :match_url, :string
|
|
end
|
|
end
|
|
end
|