2020-11-23 15:35:03 +08:00
|
|
|
# == Schema Information
|
|
|
|
|
#
|
|
|
|
|
# Table name: user_agents
|
|
|
|
|
#
|
|
|
|
|
# id :integer not null, primary key
|
|
|
|
|
# agent_type :string(255)
|
|
|
|
|
# key :string(255)
|
|
|
|
|
# ip :string(255)
|
|
|
|
|
# created_at :datetime not null
|
|
|
|
|
# updated_at :datetime not null
|
|
|
|
|
# register_status :integer default("0")
|
|
|
|
|
# action_status :integer default("0")
|
|
|
|
|
#
|
|
|
|
|
# Indexes
|
|
|
|
|
#
|
2023-08-15 00:15:10 +08:00
|
|
|
# index_user_agents_on_ip (ip) UNIQUE
|
2020-11-23 15:35:03 +08:00
|
|
|
#
|
|
|
|
|
|
2020-03-09 00:40:16 +08:00
|
|
|
class UserAgent < ApplicationRecord
|
2020-04-23 11:08:29 +08:00
|
|
|
has_many :user_actions, :foreign_key => "ip", :primary_key => "ip"
|
2020-03-09 00:40:16 +08:00
|
|
|
USER_AD = 1 # 广告宣传的引流
|
|
|
|
|
USER_REGISTER = 2 # 引流注册
|
|
|
|
|
USER_COMPETITION = 3 # 引流参加竞赛
|
|
|
|
|
end
|