- add delete for messages

This commit is contained in:
2023-08-04 16:45:15 +02:00
parent 2a2869e2c6
commit 252f5ee6b7
5 changed files with 63 additions and 1 deletions

View File

@@ -15,6 +15,7 @@ return new class extends Migration
$table->string('message', 500);
$table->string('email', 250);
$table->string('sender', 50);
$table->softDeletes();
$table->timestamps();
});
}