2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-04-22 11:52:13 +08:00
|
|
|
class UserCustomField < ActiveRecord::Base
|
|
|
|
belongs_to :user
|
|
|
|
end
|
|
|
|
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: user_custom_fields
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# user_id :integer not null
|
|
|
|
# name :string(256) not null
|
|
|
|
# value :text
|
2014-08-27 13:19:25 +08:00
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
2014-04-22 11:52:13 +08:00
|
|
|
#
|
|
|
|
# Indexes
|
|
|
|
#
|
2020-04-28 18:29:39 +08:00
|
|
|
# index_user_custom_fields_on_user_id_and_name (user_id,name)
|
2014-04-22 11:52:13 +08:00
|
|
|
#
|