mirror of
https://github.com/plausible/analytics.git
synced 2024-12-03 03:03:03 +03:00
10 lines
174 B
Elixir
10 lines
174 B
Elixir
|
defmodule Plausible.Repo.Migrations.AddExitPageToSession do
|
||
|
use Ecto.Migration
|
||
|
|
||
|
def change do
|
||
|
alter table(:sessions) do
|
||
|
add :exit_page, :text
|
||
|
end
|
||
|
end
|
||
|
end
|