v2 Suggestions: rudimentary API response
This commit is contained in:
parent
7e1caddc58
commit
b17360cd7c
8 changed files with 103 additions and 5 deletions
9
priv/repo/migrations/20211126191138_add_suggestions.exs
Normal file
9
priv/repo/migrations/20211126191138_add_suggestions.exs
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue