string('label', 255)->nullable()->change(); }); } /** * Reverse the downgrades */ public function down(): void { Schema::table('issue_galleys', function (Blueprint $table) { $table->string('label', 32)->nullable()->change(); }); } }