analytics/priv/repo/migrations/20200211090126_remove_raw_fingerprint.exs
2020-02-11 11:02:44 +02:00

10 lines
174 B
Elixir

defmodule Plausible.Repo.Migrations.RemoveRawFingerprint do
use Ecto.Migration
def change do
alter table(:events) do
remove :raw_fingerprint
end
end
end