Commit 2ea620cbbc4b41060b677c8948aee6f111867b64
1 parent
3425d92e
Exists in
master
Ajustado drop function da migração copia_notas_transf;
portabilis/ieducar#162
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
ieducar/misc/database/migrations/20161230162741_altera_funcao_copia_notas_transf.php
@@ -6,7 +6,7 @@ class AlteraFuncaoCopiaNotasTransf extends AbstractMigration | @@ -6,7 +6,7 @@ class AlteraFuncaoCopiaNotasTransf extends AbstractMigration | ||
6 | { | 6 | { |
7 | public function up() | 7 | public function up() |
8 | { | 8 | { |
9 | - $this->execute("DROP FUNCTION modules.copia_notas_transf; | 9 | + $this->execute("DROP FUNCTION modules.copia_notas_transf(old_matricula_id integer, new_matricula_id integer); |
10 | CREATE OR REPLACE FUNCTION modules.copia_notas_transf(old_matricula_id integer, new_matricula_id integer) | 10 | CREATE OR REPLACE FUNCTION modules.copia_notas_transf(old_matricula_id integer, new_matricula_id integer) |
11 | RETURNS void AS | 11 | RETURNS void AS |
12 | $$ | 12 | $$ |