analytics/priv/repo/migrations/20200211090126_remove_raw_fingerprint.exs

10 lines
174 B
Elixir
Raw Normal View History

2020-02-11 12:02:44 +03:00
defmodule Plausible.Repo.Migrations.RemoveRawFingerprint do
use Ecto.Migration
def change do
alter table(:events) do
remove :raw_fingerprint
end
end
end