discourse/plugins/discourse-post-voting/app/models/post_voting_comment_custom_field.rb
2025-07-15 16:38:05 +02:00

21 lines
600 B
Ruby
Vendored

# frozen_string_literal: true
class PostVotingCommentCustomField < ActiveRecord::Base
belongs_to :post_voting_comment
end
# == Schema Information
#
# Table name: post_voting_comment_custom_fields
#
# id :bigint not null, primary key
# post_voting_comment_id :bigint not null
# name :string(256) not null
# value :text
# created_at :datetime not null
# updated_at :datetime not null
#
# Indexes
#
# idx_post_voting_comment_custom_fields (post_voting_comment_id,name)
#