Merge branch 'admin-config' into 'develop'

Admin config

See merge request pleroma/pleroma!1328
This commit is contained in:
kaniini 2019-06-23 05:42:37 +00:00
commit 8b7860f12f
13 changed files with 404 additions and 74 deletions

View file

@ -0,0 +1,12 @@
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