analytics/priv/repo/migrations/20200211080841_add_raw_fingerprint.exs

10 lines
175 B
Elixir
Raw Normal View History

2020-02-11 11:10:53 +03:00
defmodule Plausible.Repo.Migrations.AddRawFingerprint do
use Ecto.Migration
def change do
alter table(:events) do
add :raw_fingerprint, :text
end
end
end