mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
ffc1b5c26a
Summary: Ref T3116. In the case of anonymous signers, there's no way to do a quick way to check if someone has signed a doc since you can't query by their (nonexistent) external account ID. Move "name" and "email" to first-class columns and let the engine search for them. Test Plan: Searched for signatures with name and email fragments. Reviewers: btrahan, chad Reviewed By: chad Subscribers: epriestley Maniphest Tasks: T3116 Differential Revision: https://secure.phabricator.com/D9776
7 lines
290 B
SQL
7 lines
290 B
SQL
ALTER TABLE {$NAMESPACE}_legalpad.legalpad_documentsignature
|
|
ADD signerName VARCHAR(255) NOT NULL COLLATE utf8_general_ci
|
|
AFTER signerPHID;
|
|
|
|
ALTER TABLE {$NAMESPACE}_legalpad.legalpad_documentsignature
|
|
ADD signerEmail VARCHAR(255) NOT NULL COLLATE utf8_general_ci
|
|
AFTER signerName;
|