Commit 7f01bcbdcf4c4fddd8d17c529280f097aefc9871

Authored by Caroline Salib
1 parent 5d0dbcfd
Exists in master

Corridigo problema ao cadastrar rede de ensino;

portabilis/ieducar#167
ieducar/misc/database/migrations/20170422005721_remove_index_asc_rede_ensino.php 0 → 100644
... ... @@ -0,0 +1,11 @@
  1 +<?php
  2 +
  3 +use Phinx\Migration\AbstractMigration;
  4 +
  5 +class RemoveIndexAscRedeEnsino extends AbstractMigration
  6 +{
  7 + public function change()
  8 + {
  9 + $this->execute("DROP INDEX pmieducar.i_escola_rede_ensino_nm_rede_asc;");
  10 + }
  11 +}
... ...