mirror of
https://git.pleroma.social/sjw/pleroma.git
synced 2025-01-10 11:57:14 +01:00
12 lines
257 B
Elixir
12 lines
257 B
Elixir
defmodule Pleroma.Repo.Migrations.AddSuggestions do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:users) do
|
|
add(:is_suggested, :boolean, default: false, null: false)
|
|
end
|
|
|
|
create_if_not_exists(index(:users, [:is_suggested]))
|
|
end
|
|
end
|