discourse/app/models/push_subscription.rb

17 lines
380 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class PushSubscription < ActiveRecord::Base
belongs_to :user
end
# == Schema Information
#
2018-05-08 19:49:50 -04:00
# Table name: push_subscriptions
#
# id :bigint not null, primary key
2018-05-08 19:49:50 -04:00
# user_id :integer not null
# data :string not null
# created_at :datetime not null
# updated_at :datetime not null
#