1
0
Fork 0
forked from mirrors/akkoma
akkoma/priv/repo/migrations/20190413082658_create_bookmarks.exs

15 lines
416 B
Elixir
Raw Normal View History

2019-04-14 13:45:56 +01:00
defmodule Pleroma.Repo.Migrations.CreateBookmarks do
use Ecto.Migration
def change do
2019-07-01 02:08:07 +01:00
create_if_not_exists table(:bookmarks) do
2019-04-14 13:45:56 +01: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 02:08:07 +01:00
create_if_not_exists(unique_index(:bookmarks, [:user_id, :activity_id]))
2019-04-14 13:45:56 +01:00
end
end