* Fix Layout/EmptyLines * Fix Rails/HasManyOrHasOneDependent for Ahoy::Visit * Fix Rails/HasManyOrHasOneDependent for Badge
8 lines
199 B
Ruby
8 lines
199 B
Ruby
module Ahoy
|
|
class Visit < ApplicationRecord
|
|
self.table_name = "ahoy_visits"
|
|
|
|
has_many :events, class_name: "Ahoy::Event", dependent: :destroy
|
|
belongs_to :user, optional: true
|
|
end
|
|
end
|