pleroma/priv/repo/migrations/20210818023112_add_user_id_to_apps.exs

16 lines
423 B
Elixir
Raw Normal View History

2022-02-25 22:11:42 -08:00
# Pleroma: A lightweight social networking server
# Copyright © 2017-2023 Pleroma Authors <https://pleroma.social/>
2022-02-25 22:11:42 -08:00
# SPDX-License-Identifier: AGPL-3.0-only
2021-08-25 20:01:04 -07: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 16:05:35 -08:00
create_if_not_exists(index(:apps, [:user_id]))
2021-08-25 20:01:04 -07:00
end
end