boolean('originate')->nullable(); }); Schema::table('systems',function (Blueprint $table) { $table->boolean('pollmode')->nullable(); $table->boolean('autohold')->nullable(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('systems',function (Blueprint $table) { $table->dropColumn(['pollmode','autohold']); }); Schema::table('system_logs',function (Blueprint $table) { $table->dropColumn(['originate']); }); } };