Fix recording of netmails, when they contain taglines and origin lines

This commit is contained in:
Deon George 2024-05-16 22:59:37 +10:00
parent 0457b3df25
commit 1650d07d5c

View File

@ -21,7 +21,7 @@ return new class extends Migration
*/ */
public function down(): void public function down(): void
{ {
Schema::table('netmail', function (Blueprint $table) { Schema::table('netmails', function (Blueprint $table) {
$table->dropColumn('origin'); $table->dropColumn('origin');
}); });
} }