mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-12-11 21:44:57 +00:00
10 lines
212 B
Elixir
10 lines
212 B
Elixir
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
|