Skip to content

Commit

Permalink
Merge pull request alexa-js#6 from cpruijsen/master
Browse files Browse the repository at this point in the history
increase string size for three user properties
  • Loading branch information
alexcstark authored Aug 13, 2016
2 parents d4c085d + d99f9b0 commit dd5af2d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/db/User.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ export const UserSchema = function (user) {
// data returned from lyft specific functions
user.string('firstName', 100);
user.string('lastName', 100);
user.string('picture', 100);
user.string('picture', 200);
user.string('lyftEmail', 100);
// the phone number used for lyft authentication
user.string('lyftPhoneNumber', 100);
// data lyft uses for request-ride calls
user.string('lyftPaymentInfo', 100);
user.string('lyftToken', 100)
user.string('lyftPaymentInfo', 200);
user.string('lyftToken', 200)
.unique();
// location shortcut data returned from Lyft
user.string('lyftHomeLat', 255);
Expand Down

0 comments on commit dd5af2d

Please sign in to comment.