Files
nairobi/app/models/ahoy/event.rb
2019-04-17 17:40:56 +02:00

9 lines
136 B
Ruby

module Ahoy
class Event < ApplicationRecord
self.table_name = "ahoy_events"
belongs_to :visit
belongs_to :user
end
end