2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-07-28 12:29:40 -04:00
|
|
|
class UserFieldOption < ActiveRecord::Base
|
2021-07-30 13:50:47 -04:00
|
|
|
belongs_to :user_field
|
2015-07-28 12:29:40 -04:00
|
|
|
end
|
2015-09-17 20:41:10 -04:00
|
|
|
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: user_field_options
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# user_field_id :integer not null
|
2019-01-11 14:29:56 -05:00
|
|
|
# value :string not null
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
2015-09-17 20:41:10 -04:00
|
|
|
#
|