mysql-workbench-export-laravel-5-migrations icon indicating copy to clipboard operation
mysql-workbench-export-laravel-5-migrations copied to clipboard

increaments field issue

Open MinaZakaria opened this issue 6 years ago • 2 comments

laravel increaments field is by default unsigned integer in my model I made it Integer (signed) however it's generated in migration as increaments field and it's datatype was unsigned

MinaZakaria avatar Apr 18 '18 13:04 MinaZakaria

Are you using it as primary key?

VeeeneX avatar Jan 23 '19 22:01 VeeeneX

I have a very similar problem. I am using UUID a char(32) field for my primary key I would expect the following.

$table->string('id', 32); $table->primary('id');

webaction avatar Oct 17 '19 05:10 webaction