Make email and nickname case insensitive.

This commit is contained in:
Roger Braun 2017-05-22 18:10:50 +02:00
commit 47684c2a2c
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,19 @@
defmodule Pleroma.Repo.Migrations.CaseInsensivtivity do
use Ecto.Migration
def up do
execute ("create extension if not exists citext")
alter table(:users) do
modify :email, :citext
modify :nickname, :citext
end
end
def down do
alter table(:users) do
modify :email, :string
modify :nickname, :string
end
execute ("drop extension if exists citext")
end
end