discourse/app/models/post_stat.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
556 B
Ruby
Raw Normal View History

# frozen_string_literal: true
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)
#