discourse/app/models/group_custom_field.rb

22 lines
483 B
Ruby

# frozen_string_literal: true
class GroupCustomField < ActiveRecord::Base
belongs_to :group
end
# == Schema Information
#
# Table name: group_custom_fields
#
# id :integer not null, primary key
# group_id :integer not null
# name :string(256) not null
# value :text
# created_at :datetime not null
# updated_at :datetime not null
#
# Indexes
#
# index_group_custom_fields_on_group_id_and_name (group_id,name)
#