pleroma/priv/repo/migrations/20210818023112_add_user_id_...

16 lines
423 B
Elixir
Raw Normal View History

2022-02-26 00:11:42 -06:00
# Pleroma: A lightweight social networking server
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
2021-08-25 22:01:04 -05: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 22:01:04 -05:00
end
end