Skip to content

Commit

Permalink
Corrigido problema ao cadastrar novos cursos;
Browse files Browse the repository at this point in the history
  • Loading branch information
carolinesalib committed Apr 22, 2017
1 parent 382cff6 commit 9de3a16
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php

use Phinx\Migration\AbstractMigration;

class RemoveIndexToAscCurso extends AbstractMigration
{
public function change()
{
$this->execute("DROP INDEX pmieducar.i_curso_sgl_curso_asc;");
$this->execute("DROP INDEX pmieducar.i_curso_nm_curso_asc;");
$this->execute("DROP INDEX pmieducar.i_curso_objetivo_curso_asc;");
}
}

0 comments on commit 9de3a16

Please sign in to comment.