discourse/app/models/user_field_option.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
400 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class UserFieldOption < ActiveRecord::Base
belongs_to :user_field
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
#