2014-04-25 09:14:05 -04:00
|
|
|
class GroupCustomField < ActiveRecord::Base
|
|
|
|
belongs_to :group
|
|
|
|
end
|
|
|
|
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: group_custom_fields
|
|
|
|
#
|
2014-05-08 02:45:49 -04:00
|
|
|
# id :integer not null, primary key
|
|
|
|
# group_id :integer not null
|
|
|
|
# name :string(256) not null
|
|
|
|
# value :text
|
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
2014-04-25 09:14:05 -04:00
|
|
|
#
|
|
|
|
# Indexes
|
|
|
|
#
|
|
|
|
# index_group_custom_fields_on_group_id_and_name (group_id,name)
|
|
|
|
#
|