mirror of
https://github.com/plausible/analytics.git
synced 2024-12-26 19:15:03 +03:00
14 lines
267 B
Elixir
14 lines
267 B
Elixir
|
defmodule Plausible.ClickhouseRepo.Migrations.AddTransferredFrom do
|
||
|
use Ecto.Migration
|
||
|
|
||
|
def change do
|
||
|
alter table(:events) do
|
||
|
add(:transferred_from, :string)
|
||
|
end
|
||
|
|
||
|
alter table(:sessions) do
|
||
|
add(:transferred_from, :string)
|
||
|
end
|
||
|
end
|
||
|
end
|