GET /api/v1/apps endpoint

This commit is contained in:
Sean King 2021-08-25 21:01:04 -06:00
commit 6519732045
No known key found for this signature in database
GPG key ID: 510C52BACD6E7257
6 changed files with 73 additions and 0 deletions

View file

@ -0,0 +1,9 @@
defmodule Pleroma.Repo.Migrations.AddUserIdToApps do
use Ecto.Migration
def change do
alter table(:apps) do
add(:user_id, references(:users, type: :uuid, on_delete: :delete_all))
end
end
end