c2ca1f22a2
we can't change module attributes and endpoint settings in runtime
13 lines
247 B
Elixir
13 lines
247 B
Elixir
defmodule Pleroma.Repo.Migrations.CreateConfig do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
create table(:config) do
|
|
add(:key, :string)
|
|
add(:value, :binary)
|
|
timestamps()
|
|
end
|
|
|
|
create(unique_index(:config, :key))
|
|
end
|
|
end
|