mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2024-12-23 16:40:29 +00:00
11 lines
221 B
Elixir
11 lines
221 B
Elixir
defmodule Pleroma.Repo.Migrations.RevertCitextChange do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:users) do
|
|
modify(:uri, :text)
|
|
end
|
|
|
|
# create_if_not_exists(unique_index(:users, :uri))
|
|
end
|
|
end
|