mirror of
https://github.com/plausible/analytics.git
synced 2024-12-02 07:38:47 +03:00
10 lines
196 B
Elixir
10 lines
196 B
Elixir
defmodule Plausible.Repo.Migrations.RemoveRollupTables do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
drop table(:daily_stats)
|
|
drop table(:weekly_stats)
|
|
drop table(:monthly_stats)
|
|
end
|
|
end
|