forked from portabilis/i-educar
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Corrigido problema ao cadastrar novos cursos;
- Loading branch information
1 parent
382cff6
commit 9de3a16
Showing
1 changed file
with
13 additions
and
0 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
ieducar/misc/database/migrations/20170422004818_remove_index_to_asc_curso.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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;"); | ||
} | ||
} |