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