2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-05-04 18:31:48 -04:00
|
|
|
class PushSubscription < ActiveRecord::Base
|
|
|
|
belongs_to :user
|
|
|
|
end
|
|
|
|
|
|
|
|
# == Schema Information
|
|
|
|
#
|
2018-05-08 19:49:50 -04:00
|
|
|
# Table name: push_subscriptions
|
|
|
|
#
|
2019-05-02 18:34:12 -04:00
|
|
|
# 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
|
2018-05-04 18:31:48 -04:00
|
|
|
#
|