mirror of
https://github.com/plausible/analytics.git
synced 2024-12-24 18:12:44 +03:00
10 lines
205 B
Elixir
10 lines
205 B
Elixir
|
defmodule Plausible.Repo.Migrations.MakeInvitationEmailCaseInsensitive do
|
||
|
use Ecto.Migration
|
||
|
|
||
|
def change do
|
||
|
alter table(:invitations) do
|
||
|
modify :email, :citext, null: false
|
||
|
end
|
||
|
end
|
||
|
end
|