Commit ca8c3354944e092423444644f410f3a7353233ae

Authored by Caroline Salib
1 parent 4599c3c7
Exists in master

Ajustado erro ao cadastrar calendario letivo dia;

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