9 lines
136 B
Ruby
9 lines
136 B
Ruby
module Ahoy
|
|
class Event < ApplicationRecord
|
|
self.table_name = "ahoy_events"
|
|
|
|
belongs_to :visit
|
|
belongs_to :user
|
|
end
|
|
end
|