v2 Suggestions: rudimentary API response

This commit is contained in:
Alex Gleason 2021-11-26 14:33:27 -06:00
commit b17360cd7c
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7
8 changed files with 103 additions and 5 deletions

View file

@ -0,0 +1,9 @@
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
end
end