forge->addField([ 'post_id' => [ 'type' => 'BINARY', 'constraint' => 16, ], 'preview_card_id' => [ 'type' => 'INT', 'unsigned' => true, ], ]); $this->forge->addPrimaryKey(['post_id', 'preview_card_id']); $this->forge->addForeignKey('post_id', 'activitypub_posts', 'id', '', 'CASCADE'); $this->forge->addForeignKey('preview_card_id', 'activitypub_preview_cards', 'id', '', 'CASCADE'); $this->forge->createTable('activitypub_posts_preview_cards'); } public function down(): void { $this->forge->dropTable('activitypub_posts_preview_cards'); } }