akkoma/priv/repo/migrations/20190622151019_add_group_key_to_config.exs

13 lines
260 B
Elixir
Raw Normal View History

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