fix(migration): remove unique constraint from 'message' column

Remove the unique constraint from the 'message' column in the contact submissions table migration file.
This commit is contained in:
Rico van Zelst
2024-02-24 22:08:04 +01:00
parent 553010ad2f
commit ac21092745

View File

@@ -14,7 +14,7 @@ return new class () extends Migration {
$table->string('discord')->nullable();
$table->enum('category', ['question', 'advertising', 'bug_report', 'feedback', 'other']);
$table->string('subject');
$table->text('message')->unique();
$table->text('message');
$table->timestamps();
});
}