mirror of
https://github.com/rico-vz/HeimerdingerLoL.git
synced 2025-12-06 10:10:48 +01:00
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:
@@ -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();
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user