diff options
| author | Fuwn <[email protected]> | 2021-03-29 15:14:25 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-03-29 15:14:25 -0700 |
| commit | 9d71b87612d2a8846d898181d41aeb25f01eb7ab (patch) | |
| tree | 427906f36572f9951109b33ef9ecd13955b5e009 /src | |
| parent | etc: Annotation (diff) | |
| download | whirl-9d71b87612d2a8846d898181d41aeb25f01eb7ab.tar.xz whirl-9d71b87612d2a8846d898181d41aeb25f01eb7ab.zip | |
format: Refactor SQL snippet for consistency
Diffstat (limited to 'src')
| -rw-r--r-- | src/db/tables.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/db/tables.rs b/src/db/tables.rs index e773e9e..eb444d9 100644 --- a/src/db/tables.rs +++ b/src/db/tables.rs @@ -222,7 +222,9 @@ pub struct UserRegistration { /// /// To extract an email address for a given user: /// ```sql -/// select propertyStringValue from UserProperties where userName='John Doe' and propertyId=11; +/// select propertyStringValue +/// from UserProperties +/// where userName='John Doe' and propertyId=11; /// ``` /// /// To extract a list of all recorded email addresses: |