mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-27 06:56:35 +08:00
21 lines
600 B
Ruby
Vendored
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)
|
|
#
|