Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F17641084
D18904.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D18904.diff
View Options
diff --git a/resources/sql/autopatches/20180121.auth.05.accountnuke.sql b/resources/sql/autopatches/20180121.auth.05.accountnuke.sql
new file mode 100644
--- /dev/null
+++ b/resources/sql/autopatches/20180121.auth.05.accountnuke.sql
@@ -0,0 +1,5 @@
+ALTER TABLE {$NAMESPACE}_user.user
+ DROP passwordSalt;
+
+ALTER TABLE {$NAMESPACE}_user.user
+ DROP passwordHash;
diff --git a/src/applications/people/storage/PhabricatorUser.php b/src/applications/people/storage/PhabricatorUser.php
--- a/src/applications/people/storage/PhabricatorUser.php
+++ b/src/applications/people/storage/PhabricatorUser.php
@@ -29,8 +29,6 @@
protected $userName;
protected $realName;
- protected $passwordSalt;
- protected $passwordHash;
protected $profileImagePHID;
protected $defaultProfileImagePHID;
protected $defaultProfileImageVersion;
@@ -217,8 +215,6 @@
self::CONFIG_COLUMN_SCHEMA => array(
'userName' => 'sort64',
'realName' => 'text128',
- 'passwordSalt' => 'text32?',
- 'passwordHash' => 'text128?',
'profileImagePHID' => 'phid?',
'conduitCertificate' => 'text255',
'isSystemAgent' => 'bool',
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Jul 12, 7:14 PM (3 w, 2 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
8358397
Default Alt Text
D18904.diff (1 KB)
Attached To
Mode
D18904: Remove "passwordHash" and "passwordSalt" from User objects
Attached
Detach File
Event Timeline
Log In to Comment