discourse/app/models/group_custom_field.rb
2014-04-29 19:26:42 +02:00

20 lines
430 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
# updated_at :datetime
#
# Indexes
#
# index_group_custom_fields_on_group_id_and_name (group_id,name)
#