We are using postgresql, and inside our database we use uuid type (which is supported by both, postgresql and laravel) but when the migrations got generated, the field was modified to guid (which is not supported by laravel but according to https://www.postgresql.org/docs/8.3/datatype-uuid.html uuid and guid are the same)
We are using postgresql, and inside our database we use
uuidtype (which is supported by both, postgresql and laravel) but when the migrations got generated, the field was modified toguid(which is not supported by laravel but according to https://www.postgresql.org/docs/8.3/datatype-uuid.html uuid and guid are the same)