mirror of
https://github.com/plausible/analytics.git
synced 2024-12-25 10:33:01 +03:00
12 lines
224 B
Elixir
12 lines
224 B
Elixir
|
defmodule Plausible.Repo.Migrations.RemoveUnusedFields do
|
||
|
use Ecto.Migration
|
||
|
|
||
|
def change do
|
||
|
alter table(:pageviews) do
|
||
|
remove :raw_referrer
|
||
|
remove :screen_width
|
||
|
remove :user_agent
|
||
|
end
|
||
|
end
|
||
|
end
|