2017-05-22 09:10:50 -07:00
|
|
|
defmodule Pleroma.Repo.Migrations.CaseInsensivtivity do
|
|
|
|
use Ecto.Migration
|
|
|
|
|
2019-07-03 04:56:02 -07: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 09:10:50 -07:00
|
|
|
def up do
|
2019-07-02 15:14:40 -07:00
|
|
|
execute("create extension if not exists citext")
|
|
|
|
|
2017-05-22 09:10:50 -07:00
|
|
|
alter table(:users) do
|
2019-07-02 15:14:40 -07:00
|
|
|
modify(:email, :citext)
|
2017-05-22 09:10:50 -07:00
|
|
|
end
|
2019-07-02 15:14:40 -07:00
|
|
|
|
2019-07-03 04:56:02 -07:00
|
|
|
alter table(:users) do
|
|
|
|
modify(:nickname, :citext)
|
|
|
|
end
|
2017-05-22 09:10:50 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
def down do
|
|
|
|
alter table(:users) do
|
2019-07-02 15:14:40 -07:00
|
|
|
modify(:email, :string)
|
2019-07-03 04:56:02 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
alter table(:users) do
|
2019-07-02 15:14:40 -07:00
|
|
|
modify(:nickname, :string)
|
2017-05-22 09:10:50 -07:00
|
|
|
end
|
2019-07-02 15:14:40 -07:00
|
|
|
|
|
|
|
execute("drop extension if exists citext")
|
2017-05-22 09:10:50 -07:00
|
|
|
end
|
|
|
|
end
|