forge->addField([ 'name' => [ 'type' => 'VARCHAR', 'constraint' => 191, ], 'created_at' => [ 'type' => 'DATETIME', ], ]); $this->forge->addPrimaryKey('name'); $this->forge->createTable('activitypub_blocked_domains'); } public function down(): void { $this->forge->dropTable('activitypub_blocked_domains'); } }