Add previous_email column to users (#3406)

This commit is contained in:
Adrian Gruntkowski 2023-10-11 10:03:35 +02:00 committed by GitHub
parent 3d2f356ba7
commit 33b5e69c64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,9 @@
defmodule Plausible.Repo.Migrations.AddUserPreviousEmail do
use Ecto.Migration
def change do
alter table(:users) do
add :previous_email, :citext
end
end
end