mirror of
https://github.com/plausible/analytics.git
synced 2024-12-20 16:11:49 +03:00
492f47ba1e
* pull from master * added query generation by struct fields * ready, improved tests * fixed a naming mistake
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
|