startUP(); $this->addPrimaryKey( "public", "ci_migrations", "pk_migrations", array("version") ); $this->endUP(); } public function down() { $this->startDown(); $this->execQuery('ALTER TABLE ci_migrations DROP CONSTRAINT pk_migrations'); $this->endDown(); } }