mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 21:10:17 +08:00
30990006a9
This reduces chances of errors where consumers of strings mutate inputs and reduces memory usage of the app. Test suite passes now, but there may be some stuff left, so we will run a few sites on a branch prior to merging
35 lines
895 B
Ruby
35 lines
895 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ReviewableHistory < ActiveRecord::Base
|
|
belongs_to :reviewable
|
|
belongs_to :created_by, class_name: 'User'
|
|
|
|
def self.types
|
|
@types ||= Enum.new(
|
|
created: 0,
|
|
transitioned: 1,
|
|
edited: 2
|
|
)
|
|
end
|
|
|
|
end
|
|
|
|
# == Schema Information
|
|
#
|
|
# Table name: reviewable_histories
|
|
#
|
|
# id :bigint not null, primary key
|
|
# reviewable_id :integer not null
|
|
# reviewable_history_type :integer not null
|
|
# status :integer not null
|
|
# created_by_id :integer not null
|
|
# edited :json
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
#
|
|
# Indexes
|
|
#
|
|
# index_reviewable_histories_on_created_by_id (created_by_id)
|
|
# index_reviewable_histories_on_reviewable_id (reviewable_id)
|
|
#
|