Skip to content

Commit

Permalink
increase string size for three user properties
Browse files Browse the repository at this point in the history
  • Loading branch information
cpruijsen committed Aug 13, 2016
1 parent 2dd3a3c commit d99f9b0
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 d99f9b0

Please sign in to comment.