Sha256: ddd410ee02dd620e9e10faea3c308c807d652a9892eb371ddfea9f8ff49c3bb2

Contents?: true

Size: 622 Bytes

Versions: 5

Compression:

Stored size: 622 Bytes

Contents

# == Schema Information
#
# Table name: old_passwords
#
#  id                       :integer(4)      not null, primary key
#  encrypted_password       :string(128)     not null
#  password_salt            :string(255)
#  password_archivable_id   :integer(4)      not null
#  password_archivable_type :string(255)     not null
#  created_at               :datetime
#
module Protected
  class OldPassword < ActiveRecord::Base
    belongs_to :password_archivable, :polymorphic => true

    attr_accessible :encrypted_password, :password_salt, :password_archivable, :password_archivable_type, :password_archivable_id
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
protected-1.0.4 app/models/protected/old_password.rb
protected-1.0.3 app/models/protected/old_password.rb
protected-1.0.2 app/models/protected/old_password.rb
protected-1.0.1 app/models/protected/old_password.rb
protected-1.0.0 app/models/protected/old_password.rb