Commit b9311951997808a5058b1c97213c25b463621126

Authored by Caroline Salib
1 parent 369aa14f
Exists in master

Corrigidoo problema ao cadastrar novas escolas;

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