0
I want to launch a migration that updates only the default value of a field, I tried it as follows :
$table->string('mikrotik_rate_limit')->default('1048576/1048576');
$table->bigInteger('mikrotik_recv_limit')->default(1073741824);
$table->bigInteger('mikrotik_xmit_limit')->default(1073741824);
but it didn’t work because obviously the field already exists so he understood that I wanted to create a new one so he gave duplicate field alert. I wonder how I can fix that