From ffd5e9c38763ad194bd25e89f2a61698d9d340f6 Mon Sep 17 00:00:00 2001 From: claudio Date: Wed, 2 May 2018 19:58:44 +0000 Subject: [PATCH] =?UTF-8?q?Foi=20criado=20o=20script=20do=20flyway=20pra?= =?UTF-8?q?=20aumentar=20o=20campo=20descri=C3=A7=C3=A3o=20no=20banco=20de?= =?UTF-8?q?=20dados=20tabela=20mensagem=5Frecusa,=20e=20alterado=20no=20fo?= =?UTF-8?q?rm=20ZK=20aumentando=20o=20length=20do=20campo.=20Pois=20o=20ca?= =?UTF-8?q?mpo=20Nome=20=C3=A9=20inserido=20pelo=20usu=C3=A1rio=20sendo=20?= =?UTF-8?q?assim=20o=20mesmo=20que=20dever=C3=A1=20ajustar=20o=20tamanho?= =?UTF-8?q?=20de=20acordo=20com=20sua=20necessidade.=20fixes=20bug#10955?= =?UTF-8?q?=20dev:willian=20qua:wallysson?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@81533 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20180502_1700__mantis10955.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/db/migration/V20180502_1700__mantis10955.sql diff --git a/src/db/migration/V20180502_1700__mantis10955.sql b/src/db/migration/V20180502_1700__mantis10955.sql new file mode 100644 index 000000000..3330292c6 --- /dev/null +++ b/src/db/migration/V20180502_1700__mantis10955.sql @@ -0,0 +1,7 @@ +declare + column_exists exception; + pragma exception_init (column_exists , -01430); +begin + execute immediate 'alter table mensagem_recusa modify (descricao varchar2(500))'; + exception when column_exists then null; +end; \ No newline at end of file