analytics/priv/repo/migrations/20200211080841_add_raw_fingerprint.exs
2020-02-11 10:10:53 +02:00

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