ASP.NET Identity 2.0 dbo.AspNetUsers defined as a string:
Id = c.String(nullable: false, maxLength: 128)
When it could be defined as integer:
Id = c.Int(nullable: false, identity: true)
Why is that so? What are the +/- of this?
Does it makes sense to change it to integer or there's a risk of screwing everything?