summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20210818023112_add_user_id_to_apps.exs
blob: b423cfd2902fd81615b31f8bca8e67bc87c4565e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Pleroma: A lightweight social networking server
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only

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