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

16 lines
423 B
Elixir
Raw Normal View History

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