5 lines
98 B
Ruby
5 lines
98 B
Ruby
class Visit < ApplicationRecord
|
|
alias_attribute :created_at, :started_at
|
|
belongs_to :user
|
|
end
|