mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 02:53:37 +08:00
a455567f9e
* add data migration to keep only unexpired or most recently expired user password * refactor to 1:1 relationship between User and UserPassword * add migration to remove redundant indexes on user passwords
31 lines
927 B
Ruby
31 lines
927 B
Ruby
# frozen_string_literal: true
|
|
|
|
class UserPassword < ActiveRecord::Base
|
|
validates :user_id, presence: true
|
|
|
|
validates :user_id, uniqueness: true
|
|
validates :password_hash, presence: true, length: { is: 64 }, uniqueness: { scope: :user_id }
|
|
validates :password_salt, presence: true, length: { is: 32 }
|
|
validates :password_algorithm, presence: true, length: { maximum: 64 }
|
|
|
|
belongs_to :user
|
|
end
|
|
|
|
# == Schema Information
|
|
#
|
|
# Table name: user_passwords
|
|
#
|
|
# id :integer not null, primary key
|
|
# user_id :integer not null
|
|
# password_hash :string(64) not null
|
|
# password_salt :string(32) not null
|
|
# password_algorithm :string(64) not null
|
|
# password_expired_at :datetime
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
#
|
|
# Indexes
|
|
#
|
|
# index_user_passwords_on_user_id (user_id) UNIQUE
|
|
#
|