Remove events and sessions table from postgres

This commit is contained in:
Uku Taht 2020-06-05 16:47:23 +03:00
parent 389f10d254
commit 6eeeb52f03

View File

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