mirror of
https://github.com/plausible/analytics.git
synced 2024-12-02 15:43:20 +03:00
10 lines
180 B
Elixir
10 lines
180 B
Elixir
|
defmodule Plausible.Repo.Migrations.RemoveSessionIdFromPageviews do
|
||
|
use Ecto.Migration
|
||
|
|
||
|
def change do
|
||
|
alter table(:pageviews) do
|
||
|
remove :session_id
|
||
|
end
|
||
|
end
|
||
|
end
|