diff --git a/src/db/migration/V20181205_1638_infra10374.sql b/src/db/migration/V20181205_1638_infra10374.sql new file mode 100644 index 000000000..bf6acbb61 --- /dev/null +++ b/src/db/migration/V20181205_1638_infra10374.sql @@ -0,0 +1,13 @@ +declare + + column_exists exception; + + pragma exception_init (column_exists , -01430); + +begin + + execute immediate 'alter table corrida_tramo modify (corridatramo_id number(10,0))'; + + exception when column_exists then null; + +end; \ No newline at end of file