Create player table, track player updates, fix match processing tracking

This commit is contained in:
2024-05-03 00:28:55 +02:00
parent f9271a5287
commit dafadcbddd
12 changed files with 128 additions and 22 deletions
@@ -0,0 +1,14 @@
defmodule LoLAnalytics.Repo.Migrations.Player do
use Ecto.Migration
def change do
create table("player") do
add :puuid, :string
add :region, :string
add :last_processed_at, :utc_datetime
timestamps()
end
create index(:player, [:puuid])
end
end