forge->addColumn('students', [ 'photo_formal_url' => [ 'type' => 'VARCHAR', 'constraint' => 255, 'null' => true, 'after' => 'face_hash', 'comment' => 'URL/path foto formal administrasi (mis. dari Drive)', ], ]); } public function down() { $this->forge->dropColumn('students', 'photo_formal_url'); } }