mirror of
https://github.com/plausible/analytics.git
synced 2024-12-18 06:41:29 +03:00
9 lines
161 B
Elixir
9 lines
161 B
Elixir
|
defmodule Plausible.Repo.Migrations.RemoveEventsAndSessions do
|
||
|
use Ecto.Migration
|
||
|
|
||
|
def change do
|
||
|
drop table(:events)
|
||
|
drop table(:sessions)
|
||
|
end
|
||
|
end
|