mirror of
https://github.com/plausible/analytics.git
synced 2024-12-25 10:33:01 +03:00
10 lines
188 B
Elixir
10 lines
188 B
Elixir
|
defmodule Plausible.Repo.Migrations.AddFingerprintToEvents do
|
||
|
use Ecto.Migration
|
||
|
|
||
|
def change do
|
||
|
alter table(:events) do
|
||
|
add :fingerprint, :string, size: 64
|
||
|
end
|
||
|
end
|
||
|
end
|