forgeplus/app/models/diff_record_content.rb

17 lines
336 B
Ruby
Raw Normal View History

2020-11-23 15:35:03 +08:00
# == Schema Information
#
# Table name: diff_record_contents
#
# id :integer not null, primary key
# diff_record_id :integer
# content :text(65535)
#
# Indexes
#
# index_diff_record_contents_on_diff_record_id (diff_record_id)
#
2020-03-09 00:40:16 +08:00
class DiffRecordContent < ApplicationRecord
belongs_to :diff_record
2020-11-23 15:35:03 +08:00
end