13 lines
260 B
Elixir
13 lines
260 B
Elixir
|
defmodule Pleroma.Repo.Migrations.AddGroupKeyToConfig do
|
||
|
use Ecto.Migration
|
||
|
|
||
|
def change do
|
||
|
alter table("config") do
|
||
|
add(:group, :string)
|
||
|
end
|
||
|
|
||
|
drop(unique_index("config", :key))
|
||
|
create(unique_index("config", [:group, :key]))
|
||
|
end
|
||
|
end
|