Commit 16319e03d558da061aa3565ae3ec46295c30d4ca

Authored by Caroline Salib
2 parents 7e57ed96 ed012e61
Exists in master

Merge branch 'master' into 'master'

Merge: Ajustado bug ao inserir nova habilitação;

Referente a issue #47

See merge request !33
ieducar/misc/database/migrations/20170429113719_remove_index_asc_habilitacao.php 0 → 100644
... ... @@ -0,0 +1,11 @@
  1 +<?php
  2 +
  3 +use Phinx\Migration\AbstractMigration;
  4 +
  5 +class RemoveIndexAscHabilitacao extends AbstractMigration
  6 +{
  7 + public function change()
  8 + {
  9 + $this->execute("DROP INDEX pmieducar.i_habilitacaoo_nm_tipo_asc;");
  10 + }
  11 +}
... ...