mirror of
https://github.com/plausible/analytics.git
synced 2024-11-23 03:04:43 +03:00
8 lines
156 B
Elixir
8 lines
156 B
Elixir
defmodule Plausible.Repo.Migrations.RemoveFingerprintSessionsTable do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
drop table(:fingerprint_sessions)
|
|
end
|
|
end
|