mirror of
https://github.com/plausible/analytics.git
synced 2024-12-24 10:02:10 +03:00
10 lines
180 B
Elixir
10 lines
180 B
Elixir
defmodule Plausible.ClickhouseRepo.Migrations.RemoveEntryProps do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:sessions) do
|
|
remove(:"entry.meta")
|
|
end
|
|
end
|
|
end
|