analytics/priv/repo/migrations/20190820140747_remove_rollup_tables.exs

10 lines
196 B
Elixir
Raw Normal View History

2019-09-02 14:29:19 +03:00
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