Drop events/sessions tables after V2 migration (#2908)

This commit is contained in:
hq1 2023-05-10 09:19:50 +02:00 committed by GitHub
parent 412bf1959e
commit 57af1f19ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,8 @@
defmodule Plausible.IngestRepo.Migrations.CleanUpOldTablesAfterV2Migration do
use Ecto.Migration
def change do
drop_if_exists table(:events)
drop_if_exists table(:sessions)
end
end