mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
13 lines
231 B
Ruby
13 lines
231 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Ahoy
|
|
class Event < ApplicationRecord
|
|
include Ahoy::QueryMethods
|
|
self.table_name = 'ahoy_events'
|
|
|
|
belongs_to :visit
|
|
belongs_to :user
|
|
|
|
serialize :properties, JSON
|
|
end
|
|
end
|