From d99f9b0a66985d95c21abbd9f9f1b0453e8042ec Mon Sep 17 00:00:00 2001 From: Christopher Pruijsen Date: Sat, 13 Aug 2016 10:04:19 -0700 Subject: [PATCH] increase string size for three user properties --- src/db/User.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/db/User.js b/src/db/User.js index 84ffe2b..ce05fc5 100644 --- a/src/db/User.js +++ b/src/db/User.js @@ -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);