class Entry

Schema Information

Table name: entries

id                 :integer         not null, primary key
project_id         :integer
guid               :string(36)      not null
title              :string(255)     not null
search_text        :string(255)
encrypted_username :string(255)
encrypted_password :string(255)
encrypted_url      :string(255)
encrypted_notes    :text
expiration         :datetime
attachment_uid     :string(255)
attachment_name    :string(255)
created_at         :datetime        not null
updated_at         :datetime        not null

Public Instance Methods

to_param() click to toggle source
# File app/models/entry.rb, line 47
def to_param
  self.guid
end