11d29d27b8
Co-authored-by: FloatingGhost <hannah@coffee-and-dreams.uk> Reviewed-on: https://akkoma.dev/AkkomaGang/akkoma/pulls/216
10 lines
191 B
Elixir
10 lines
191 B
Elixir
defmodule Pleroma.Repo.Migrations.EnsureMastofeSettings do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:users) do
|
|
add_if_not_exists(:mastofe_settings, :map)
|
|
end
|
|
end
|
|
end
|