mirror of
https://github.com/plausible/analytics.git
synced 2024-11-23 20:13:31 +03:00
7dbbc8ba22
* Use site id instead of hostname for events * Use site id in domain status check * Revert change to tracking module * Catch more places where link generation needed updating * Rename site_id to domain * Drop hostname index from events
8 lines
150 B
Elixir
8 lines
150 B
Elixir
defmodule Plausible.Repo.Migrations.DropEventsHostnameIndex do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
drop index("pageviews", :hostname)
|
|
end
|
|
end
|