mirror of
https://github.com/philomena-dev/philomena.git
synced 2025-02-23 21:54:33 +01:00
17 lines
422 B
Elixir
17 lines
422 B
Elixir
defmodule Philomena.Notifications.ChannelLiveNotification do
|
|
use Ecto.Schema
|
|
|
|
alias Philomena.Users.User
|
|
alias Philomena.Channels.Channel
|
|
|
|
@primary_key false
|
|
|
|
schema "channel_live_notifications" do
|
|
belongs_to :user, User, primary_key: true
|
|
belongs_to :channel, Channel, primary_key: true
|
|
|
|
field :read, :boolean, default: false
|
|
|
|
timestamps(inserted_at: :created_at, type: :utc_datetime)
|
|
end
|
|
end
|