Closed malpaso closed 1 week ago
changed it to decimal
just to run the migration and it worked fine. Not sure why I needed to do that.
database\migrations\2023_11_07_192734
change this: $table->unsignedDecimal('estimation', 6, 2)->nullable();
with this: $table->decimal('estimation', 6, 2)->unsigned()->nullable();
Fixed! Not sure why this happened but I'm guessing that the alias was removed and I didn't run migrations after Laravel update
On running
php artisan migrate
I'm receiving the following error: