mirror of
https://github.com/plausible/analytics.git
synced 2024-11-27 09:16:25 +03:00
10 lines
175 B
Elixir
10 lines
175 B
Elixir
defmodule Plausible.Repo.Migrations.AddRawFingerprint do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:events) do
|
|
add :raw_fingerprint, :text
|
|
end
|
|
end
|
|
end
|