96da27f1f6
Co-authored-by: Pranav Raj S <pranavrajs@gmail.com>
26 lines
670 B
Ruby
26 lines
670 B
Ruby
# == Schema Information
|
|
#
|
|
# Table name: notification_subscriptions
|
|
#
|
|
# id :bigint not null, primary key
|
|
# subscription_attributes :jsonb not null
|
|
# subscription_type :integer not null
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
# user_id :bigint not null
|
|
#
|
|
# Indexes
|
|
#
|
|
# index_notification_subscriptions_on_user_id (user_id)
|
|
#
|
|
|
|
class NotificationSubscription < ApplicationRecord
|
|
belongs_to :user
|
|
|
|
SUBSCRIPTION_TYPES = {
|
|
browser_push: 1,
|
|
gcm: 2
|
|
}.freeze
|
|
|
|
enum subscription_type: SUBSCRIPTION_TYPES
|
|
end
|