Merge branch 'admin-config' into 'develop'
Admin config See merge request pleroma/pleroma!1328
This commit is contained in:
commit
8b7860f12f
13 changed files with 404 additions and 74 deletions
|
|
@ -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
|
||||
Loading…
Add table
Add a link
Reference in a new issue