2017-09-11 07:15:28 -07:00
|
|
|
defmodule Pleroma.Repo.Migrations.CreateNotifications do
|
|
|
|
use Ecto.Migration
|
|
|
|
|
|
|
|
def change do
|
2019-06-30 18:08:07 -07:00
|
|
|
create_if_not_exists table(:notifications) do
|
2017-09-11 07:15:28 -07:00
|
|
|
add :user_id, references(:users, on_delete: :delete_all)
|
|
|
|
add :activity_id, references(:activities, on_delete: :delete_all)
|
|
|
|
add :seen, :boolean, default: false
|
|
|
|
|
|
|
|
timestamps()
|
|
|
|
end
|
|
|
|
|
2019-06-30 18:08:07 -07:00
|
|
|
create_if_not_exists index(:notifications, [:user_id])
|
2017-09-11 07:15:28 -07:00
|
|
|
end
|
|
|
|
end
|