osem-fcy/app/models/ahoy/event.rb

14 lines
231 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Ahoy
class Event < ApplicationRecord
2018-03-18 10:57:39 +02:00
include Ahoy::QueryMethods
self.table_name = 'ahoy_events'
belongs_to :visit
belongs_to :user
serialize :properties, JSON
end
end