I want to launch a migration that updates only the default value of a field, I tried the following:
$table->string('mikrotik_rate_limit')->default('1048576/1048576');
$table->bigInteger('mikrotik_recv_limit')->default(1073741824);
$table->bigInteger('mikrotik_xmit_limit')->default(1073741824);
but it did not 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 would like to know how I can fix this