Pleroma/priv/repo/migrations/20190622151019_add_group_ke...

13 lines
260 B
Elixir
Raw Normal View History

2019-06-23 07:16:16 +02:00
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