string('father_document_files')->nullable()->after('father_fiscal_code'); $table->string('mother_document_files')->nullable()->after('mother_fiscal_code'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('members', function (Blueprint $table) { $table->dropColumn('father_document_files'); $table->dropColumn(columns: 'mother_document_files'); }); } };