add last_processed_at column to dim_player
ci / docker (push) Failing after 3m58s

This commit is contained in:
2024-06-27 09:30:00 +02:00
parent f0a7fc1303
commit 3993f97de1
8 changed files with 16 additions and 121 deletions
@@ -0,0 +1,9 @@
defmodule LoLAnalytics.Repo.Migrations.DimPlayerLastProcessed do
use Ecto.Migration
def change do
alter table "dim_player" do
add :last_processed_at, :utc_datetime
end
end
end