Setting up + routing the page

This commit is contained in:
p.sterz
2023-07-21 12:39:11 +02:00
parent dc5560aa75
commit 61050ada15
5 changed files with 46 additions and 1 deletions

View File

@@ -24,7 +24,7 @@ return new class extends Migration
$table->id();
$this->nullableMorphs($table, 'commentator', 'commentator_reactions');
$table->foreignId('comment_id')->references('id')->on('comments')->cascadeOnDelete();
$table->string('reaction')->collation('C.UTF-8');
$table->string('reaction');
$table->timestamps();
});