2017-09-11 10:15:28 -04:00
|
|
|
defmodule Pleroma.Repo.Migrations.CreateNotifications do
|
|
|
|
use Ecto.Migration
|
|
|
|
|
|
|
|
def change do
|
2019-06-30 21:08:07 -04:00
|
|
|
create_if_not_exists table(:notifications) do
|
2017-09-11 10:15:28 -04: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 21:08:07 -04:00
|
|
|
create_if_not_exists index(:notifications, [:user_id])
|
2017-09-11 10:15:28 -04:00
|
|
|
end
|
|
|
|
end
|