mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-16 13:14:03 +00:00
11 lines
170 B
Ruby
11 lines
170 B
Ruby
|
|
module Ahoy
|
||
|
|
class Event < ActiveRecord::Base
|
||
|
|
self.table_name = "ahoy_events"
|
||
|
|
|
||
|
|
belongs_to :visit
|
||
|
|
belongs_to :user
|
||
|
|
|
||
|
|
serialize :properties, JSON
|
||
|
|
end
|
||
|
|
end
|