mirror of
https://github.com/plausible/analytics.git
synced 2024-12-24 10:02:10 +03:00
8 lines
150 B
Elixir
8 lines
150 B
Elixir
|
defmodule Plausible.Repo.Migrations.AddIndexToPageviews do
|
||
|
use Ecto.Migration
|
||
|
|
||
|
def change do
|
||
|
create index("pageviews", [:hostname])
|
||
|
end
|
||
|
end
|