mirror of
https://github.com/plausible/analytics.git
synced 2024-12-18 23:11:43 +03:00
9 lines
194 B
Elixir
9 lines
194 B
Elixir
|
defmodule Plausible.Repo.Migrations.RemoveUnusedIndices do
|
||
|
use Ecto.Migration
|
||
|
|
||
|
def change do
|
||
|
drop index(:pageviews, [:referrer])
|
||
|
drop index(:pageviews, [:referrer_source])
|
||
|
end
|
||
|
end
|