2019-06-22 22:16:16 -07:00
|
|
|
defmodule Pleroma.Repo.Migrations.AddGroupKeyToConfig do
|
|
|
|
use Ecto.Migration
|
|
|
|
|
|
|
|
def change do
|
|
|
|
alter table("config") do
|
|
|
|
add(:group, :string)
|
|
|
|
end
|
|
|
|
|
2019-06-30 18:08:07 -07:00
|
|
|
drop_if_exists(unique_index("config", :key))
|
|
|
|
create_if_not_exists(unique_index("config", [:group, :key]))
|
2019-06-22 22:16:16 -07:00
|
|
|
end
|
|
|
|
end
|