2019-04-14 14:45:56 +02:00
|
|
|
defmodule Pleroma.Repo.Migrations.CreateBookmarks do
|
|
|
|
use Ecto.Migration
|
|
|
|
|
|
|
|
def change do
|
2019-07-01 03:08:07 +02:00
|
|
|
create_if_not_exists table(:bookmarks) do
|
2019-04-14 14:45:56 +02:00
|
|
|
add(:user_id, references(:users, type: :uuid, on_delete: :delete_all))
|
|
|
|
add(:activity_id, references(:activities, type: :uuid, on_delete: :delete_all))
|
|
|
|
|
|
|
|
timestamps()
|
|
|
|
end
|
|
|
|
|
2019-07-01 03:08:07 +02:00
|
|
|
create_if_not_exists(unique_index(:bookmarks, [:user_id, :activity_id]))
|
2019-04-14 14:45:56 +02:00
|
|
|
end
|
|
|
|
end
|