forge->addField([ 'actor_id' => [ 'type' => 'INT', 'unsigned' => true, ], 'note_id' => [ 'type' => 'BINARY', 'constraint' => 16, ], ]); $this->forge->addField( '`created_at` timestamp NOT NULL DEFAULT current_timestamp()', ); $this->forge->addPrimaryKey(['actor_id', 'note_id']); $this->forge->addForeignKey( 'actor_id', 'activitypub_actors', 'id', false, 'CASCADE', ); $this->forge->addForeignKey( 'note_id', 'activitypub_notes', 'id', false, 'CASCADE', ); $this->forge->createTable('activitypub_favourites'); } public function down() { $this->forge->dropTable('activitypub_favourites'); } }