boolean('pppoe')->default(FALSE); }); DB::table('service_broadband')->update(['pppoe'=>TRUE]); } /** * Reverse the migrations. */ public function down(): void { Schema::table('service_broadband', function (Blueprint $table) { $table->dropColumn('pppoe'); }); } };