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
|
|
|
|
#
|
2018-07-16 02:18:07 -04:00
|
|
|
# id :bigint(8) 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
|
|
|
#
|