mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2024-12-23 08:36:29 +00:00
11 lines
257 B
Elixir
11 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
|