json('kludges')->nullable(); }); Schema::table('echomails', function (Blueprint $table) { $table->tinyInteger('cost')->nullable(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('netmails', function (Blueprint $table) { $table->dropColumn('kludges'); }); Schema::table('echomails', function (Blueprint $table) { $table->dropColumn('cost'); }); } };