This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/models/group_custom_field.rb

20 lines
452 B
Ruby

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)
#