2017-05-22 18:10:50 +02:00
|
|
|
defmodule Pleroma.Repo.Migrations.CaseInsensivtivity do
|
|
|
|
use Ecto.Migration
|
|
|
|
|
2019-07-03 13:56:02 +02:00
|
|
|
# Two-steps alters are intentional.
|
|
|
|
# When alter of 2 columns is done in a single operation,
|
|
|
|
# inconsistent failures happen because of index on `email` column.
|
|
|
|
|
2017-05-22 18:10:50 +02:00
|
|
|
def up do
|
2019-07-03 00:14:40 +02:00
|
|
|
execute("create extension if not exists citext")
|
|
|
|
|
2017-05-22 18:10:50 +02:00
|
|
|
alter table(:users) do
|
2019-07-03 00:14:40 +02:00
|
|
|
modify(:email, :citext)
|
2017-05-22 18:10:50 +02:00
|
|
|
end
|
2019-07-03 00:14:40 +02:00
|
|
|
|
2019-07-03 13:56:02 +02:00
|
|
|
alter table(:users) do
|
|
|
|
modify(:nickname, :citext)
|
|
|
|
end
|
2017-05-22 18:10:50 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def down do
|
|
|
|
alter table(:users) do
|
2019-07-03 00:14:40 +02:00
|
|
|
modify(:email, :string)
|
2019-07-03 13:56:02 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
alter table(:users) do
|
2019-07-03 00:14:40 +02:00
|
|
|
modify(:nickname, :string)
|
2017-05-22 18:10:50 +02:00
|
|
|
end
|
2019-07-03 00:14:40 +02:00
|
|
|
|
|
|
|
execute("drop extension if exists citext")
|
2017-05-22 18:10:50 +02:00
|
|
|
end
|
|
|
|
end
|