mirror of
https://github.com/plausible/analytics.git
synced 2024-12-19 23:52:26 +03:00
10 lines
183 B
Elixir
10 lines
183 B
Elixir
|
defmodule Plausible.Repo.Migrations.ChangeSessionReferrerToText do
|
||
|
use Ecto.Migration
|
||
|
|
||
|
def change do
|
||
|
alter table(:sessions) do
|
||
|
modify :referrer, :text
|
||
|
end
|
||
|
end
|
||
|
end
|