add processing info to match

This commit is contained in:
2024-06-22 17:30:35 +02:00
parent 2768e4434a
commit 667bf76591
6 changed files with 53 additions and 14 deletions
@@ -3,9 +3,9 @@ defmodule LoLAnalytics.Repo.Migrations.DimMatchFactProcessingStatus do
def change do
alter table("dim_match") do
add :fact_champion_played_game_status, :integer
add :fact_champion_picked_item_status, :integer
add :fact_champion_picked_summoner_spell_status, :integer
add :fact_champion_played_game_status, :integer, default: 0
add :fact_champion_picked_item_status, :integer, default: 0
add :fact_champion_picked_summoner_spell_status, :integer, default: 0
end
create index("dim_match", [:fact_champion_played_game_status])