gitlink-forgeplus/app/models/openkylin_sign_detail.rb

25 lines
503 B
Ruby

# == Schema Information
#
# Table name: openkylin_sign_details
#
# id :integer not null, primary key
# user_id :integer
# login :string(255)
# email :string(255)
# nickname :string(255)
# phone :string(255)
# address :string(255)
# created_at :datetime not null
# updated_at :datetime not null
#
# Indexes
#
# index_openkylin_sign_details_on_user_id (user_id)
#
class OpenkylinSignDetail < ApplicationRecord
belongs_to :user
end