mirror of
https://github.com/jtomchak/akkoma.git
synced 2025-03-01 16:43:05 +01:00
12 lines
219 B
Elixir
12 lines
219 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
|