Google+ has very long User IDs
104560124403688998123
(21 characters), which is not possible to input into BIGINT field (not unsigned)
What column type would you use for such IDs ?
I do not think that varchar is good idea
|
Google+ has very long User IDs 104560124403688998123 (21 characters), which is not possible to input into BIGINT field (not unsigned) What column type would you use for such IDs ? I do not think that varchar is good idea
| |||
feedback
|
|
if the length of the google id is predictable, use a static So the schema looks like: Mapping Table:
So if you create another table like comments etc, use the primary key | |||||||
feedback
|
|
I would use the same as I do with Facebook: varchar. | |||
feedback
|