mirror of
https://github.com/plausible/analytics.git
synced 2024-11-23 20:13:31 +03:00
10 lines
186 B
Elixir
10 lines
186 B
Elixir
defmodule Plausible.Repo.Migrations.RemoveScreenHeightFromPageviews do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:pageviews) do
|
|
remove :screen_height
|
|
end
|
|
end
|
|
end
|