/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/CreateCmReferenceTable.php (901B)
id(); $table->unsigned_big_integer('post_id'); $table->string('field_meta_key'); $table->unsigned_big_integer('ref_post_id'); $table->index('post_id'); $table->index('ref_post_id'); $table->foreign('post_id')->references('ID')->on('posts')->cascade_on_delete(); $table->foreign('ref_post_id')->references('ID')->on('posts')->cascade_on_delete(); }); } public function down() { Schema::drop_if_exists('kirki_cm_reference'); } }