Quantcast
Channel: Liquibase Forums
Viewing all articles
Browse latest Browse all 2993

Re : createProcedure attributes error

$
0
0
Thanks Nathan. I changed the XSD to 3.5, but got the same error.

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" 
  3.     xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext" 
  4.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
  5.     xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.5.xsd         http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd">
  6.    <changeSet author="liquibase-docs" id="001">
  7.       <createProcedure
  8.         comments="creating procedure test" >
  9.         create or replace procedure test
  10.         is
  11.         begin
  12.             null;
  13.         end;
  14.       </createProcedure>
  15.    </changeSet>
  16. </databaseChangeLog>

Viewing all articles
Browse latest Browse all 2993

Trending Articles