createTable('tbl_candidatos_estados', array( 'id' => 'pk', 'descripcion' => 'string NOT NULL', )); $this->addColumn('tbl_candidatos', 'id_estado', 'integer'); $this->dropColumn('tbl_candidatos', 'estado'); } public function down() { $this->dropTable('tbl_candidatos_estados'); $this->dropColumn('tbl_candidatos', 'id_estado'); $this->addColumn('tbal_candidatos', 'estado', 'string'); return false; } }