mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-09 16:32:39 +01:00
d39da529ca
Summary: Fixes T7159. Test Plan: Created a legalpad document that needed a signature and I was required to sign it no matter what page I hit. Signed it and things worked! Added a new legalpad document and I had to sign again! Ran unit tests and they passed! Logged out as a user who was roadblocked into signing a bunch of stuff and it worked! Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin, epriestley Maniphest Tasks: T7159 Differential Revision: https://secure.phabricator.com/D11759
5 lines
206 B
SQL
5 lines
206 B
SQL
ALTER TABLE {$NAMESPACE}_user.phabricator_session
|
|
ADD signedLegalpadDocuments BOOL NOT NULL DEFAULT 0;
|
|
|
|
ALTER TABLE {$NAMESPACE}_legalpad.legalpad_document
|
|
ADD requireSignature BOOL NOT NULL DEFAULT 0;
|