mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-17 20:46:11 +00:00
12 lines
264 B
Elixir
12 lines
264 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
|
|
|
|
create_if_not_exists(index(:apps, [:user_id]))
|
|
end
|
|
end
|