migration: add scroll_depth to events_v2 (#4827)

This commit is contained in:
RobertJoonas 2024-11-19 10:59:23 +01:00 committed by GitHub
parent 4ff2a66548
commit e93c97de1e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,9 @@
defmodule Plausible.IngestRepo.Migrations.AddScrollDepthToEvents do
use Ecto.Migration
def change do
alter table(:events_v2) do
add :scroll_depth, :UInt8
end
end
end