30 lines
		
	
	
		
			705 B
		
	
	
	
		
			Ruby
		
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			705 B
		
	
	
	
		
			Ruby
		
	
	
	
# == Schema Information
 | 
						|
#
 | 
						|
# Table name: open_shixuns
 | 
						|
#
 | 
						|
#  id                  :integer          not null, primary key
 | 
						|
#  name                :string(255)
 | 
						|
#  shixun_user_name    :string(255)
 | 
						|
#  shixun_user_phone   :string(255)
 | 
						|
#  shixun_user_mail    :string(255)
 | 
						|
#  shixun_identifier   :string(255)
 | 
						|
#  git_url             :string(255)
 | 
						|
#  identifier          :string(255)
 | 
						|
#  myshixun_git_url    :string(255)
 | 
						|
#  myshixun_user_name  :string(255)
 | 
						|
#  myshixun_user_phone :string(255)
 | 
						|
#  myshixun_user_mail  :string(255)
 | 
						|
#
 | 
						|
# Indexes
 | 
						|
#
 | 
						|
#  idx_email  (myshixun_user_mail)
 | 
						|
#  idx_phone  (myshixun_user_phone)
 | 
						|
#
 | 
						|
 | 
						|
 | 
						|
 | 
						|
# for oauth2 application
 | 
						|
class ImportRepo < ApplicationRecord
 | 
						|
  self.table_name = "open_shixuns"
 | 
						|
end
 |