mirror of
https://github.com/plausible/analytics.git
synced 2024-12-24 01:54:34 +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
|