Commit ed012e61ae680af6c2a93a0ebf7f666bc7176826

Authored by Caroline Salib
1 parent 849b3f74
Exists in master

Ajustado bug ao inserir nova habilitação;

portabilis/ieducar#184
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 +}
... ...