/home/techb158/public_html/wp-content/plugins/kirki/database/migrations
NameSizeModeActions
CreateCmReferenceTable.php9010644editdlrm
CreateCollaborationsConnectedTable.php7960644editdlrm
CreateCollaborationsSentTable.php7460644editdlrm
CreateCollaborationsTable.php10180644editdlrm
CreateCommentsSeenTable.php7710644editdlrm
CreateCommentsTable.php10600644editdlrm
CreateFormsDataTable.php9990644editdlrm
CreateFormsTable.php7340644editdlrm
Edit: /home/techb158/public_html/wp-content/plugins/kirki/database/migrations/CreateCommentsSeenTable.php (771B)
id(); $table->unsigned_big_integer('comment_id'); $table->unsigned_big_integer('user_id'); $table->unique(['user_id', 'comment_id'], 'user_comment_unique'); $table->foreign('comment_id')->references('id')->on('kirki_comments')->cascade_on_delete(); }); } public function down() { Schema::drop_if_exists('kirki_comments_seen'); } }