2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-08-03 00:29:04 -04:00
|
|
|
class PostStat < ActiveRecord::Base
|
|
|
|
belongs_to :post
|
|
|
|
end
|
2015-09-17 20:41:10 -04:00
|
|
|
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: post_stats
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# post_id :integer
|
|
|
|
# drafts_saved :integer
|
|
|
|
# typing_duration_msecs :integer
|
|
|
|
# composer_open_duration_msecs :integer
|
2019-01-11 14:29:56 -05:00
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
2015-09-17 20:41:10 -04:00
|
|
|
#
|
|
|
|
# Indexes
|
|
|
|
#
|
|
|
|
# index_post_stats_on_post_id (post_id)
|
|
|
|
#
|