1
0
Fork 0
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2025-01-25 15:09:34 +00:00
akkoma/priv/repo/migrations/20210818023112_add_user_id_to_apps.exs

12 lines
264 B
Elixir
Raw Normal View History

2021-08-25 21:01:04 -06:00
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
2021-12-27 18:05:35 -06:00
create_if_not_exists(index(:apps, [:user_id]))
2021-08-25 21:01:04 -06:00
end
end