app/models/ahoy/event.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Ahoy
  class Event < ActiveRecord::Base
    self.table_name = "ahoy_events"

    belongs_to :visit
    belongs_to :user
  end
end