string('version')->default('4.0.0-beta.239'); }); Schema::table('shared_environment_variables', function (Blueprint $table) { $table->string('version')->default('4.0.0-beta.239'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('environment_variables', function (Blueprint $table) { $table->dropColumn('version'); }); Schema::table('shared_environment_variables', function (Blueprint $table) { $table->dropColumn('version'); }); } };