Last active
April 14, 2017 16:20
-
-
Save paultyng/7adfe2266832a314ddb3d1b21464dcad to your computer and use it in GitHub Desktop.
Revisions
-
paultyng revised this gist
Apr 14, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -9,5 +9,5 @@ id: type: integer email: pattern: '@' type: string -
paultyng revised this gist
Apr 14, 2017 . 1 changed file with 5 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,8 +1,13 @@ - name: update-user-email title: Update User's Email description: Update a user's email address. db: connection: users sql: update users set email = :email where id = :id schema: properties: id: type: integer email: pattern: @ type: string -
paultyng revised this gist
Apr 14, 2017 . 1 changed file with 4 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,6 +2,7 @@ title: Update User's Email description: Update a user's email address. schema: properties: email: pattern: @ type: string -
paultyng created this gist
Apr 14, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ - name: update-user-email title: Update User's Email description: Update a user's email address. schema: email: pattern: @ type: string