integer('fila')->nullable()->change(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('productos', function (Blueprint $table) { $table->integer('fila')->nullable(false)->change(); }); } }