mirror of
https://github.com/plausible/analytics.git
synced 2024-11-27 09:16:25 +03:00
933cff6fe0
* Remove stats code related to postgres events and sessions * Use Clickhouse events in fetch tweets worker
11 lines
198 B
Elixir
11 lines
198 B
Elixir
defmodule Plausible.Repo.Migrations.AddNameToEvents do
|
|
use Ecto.Migration
|
|
use Plausible.Repo
|
|
|
|
def change do
|
|
alter table(:events) do
|
|
add :name, :string, null: false
|
|
end
|
|
end
|
|
end
|