Sha256: 6dd7208113be1a4ce230d395d03623decf5194a0b5ce7497e21046e5e0322334

Contents?: true

Size: 1.17 KB

Versions: 1

Compression:

Stored size: 1.17 KB

Contents

class Ahoy::Visit
  include Mongoid::Document

  # associations
  has_many :events, class_name: "Ahoy::Event"
  belongs_to :user, index: true<%= rails5? ? ", optional: true" : nil %>

  # required
  field :visit_token, type: String
  field :visitor_token, type: String

  # the rest are recommended but optional
  # simply remove the columns you don't want

  # standard
  field :ip, type: String
  field :user_agent, type: String
  field :referrer, type: String
  field :referring_domain, type: String
  field :landing_page, type: String

  # technology
  field :browser, type: String
  field :os, type: String
  field :device_type, type: String

  # location
  field :country, type: String
  field :region, type: String
  field :city, type: String
  field :latitude, type: Float
  field :longitude, type: Float

  # utm parameters
  field :utm_source, type: String
  field :utm_medium, type: String
  field :utm_term, type: String
  field :utm_content, type: String
  field :utm_campaign, type: String

  # native apps
  field :app_version, type: String
  field :os_version, type: String
  field :platform, type: String

  field :started_at, type: Time

  index({visit_token: 1}, {unique: true})
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ahoy_matey-2.2.1 lib/generators/ahoy/templates/mongoid_visit_model.rb.tt