date('next_audit_date')->nullable()->default(null); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('assets', function (Blueprint $table) { $table->dropColumn('next_audit_date'); }); } }