forge->addField([ 'name' => [ 'type' => 'VARCHAR', 'constraint' => 255, ], 'created_at' => [ 'type' => 'DATETIME', ], ]); $this->forge->addPrimaryKey('name'); $this->forge->createTable(config('Fediverse')->tablesPrefix . 'blocked_domains'); } public function down(): void { $this->forge->dropTable(config('Fediverse')->tablesPrefix . 'blocked_domains'); } }