| 123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- use Illuminate\Database\Migrations\Migration;
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Support\Facades\Schema;
- return new class extends Migration
- {
- /**
- * Run the migrations.
- *
- * @return void
- */
- public function up()
- {
- Schema::table('members', function (Blueprint $table) {
- $table->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');
- });
- }
- };
|