-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmaster.xml
executable file
·29 lines (20 loc) · 1.18 KB
/
master.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="UTF-8"?>
<databaseChangeLog
xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:n0="http://www.oracle.com/xml/ns/dbchangelog-ext"
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog
http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-latest.xsd">
<include file="/PRE_SCRIPTS/pre_scripts_order.xml"/>
<includeAll path="/DATABASE/HR/SEQUENCE/"/>
<includeAll path="/DATABASE/HR/TABLE/"/>
<includeAll path="/DATABASE/HR/VIEW/"/>
<includeAll path="/DATABASE/HR/REF_CONSTRAINT/"/>
<include file="/DATABASE/HR/PROCEDURE/procedure_order.xml"/>
<includeAll path="/DATABASE/HR/PACKAGE_SPEC/"/>
<includeAll path="/DATABASE/HR/PACKAGE_BODY/"/>
<includeAll path="/DATABASE/HR/INDEX/"/>
<includeAll path="/DATABASE/HR/TRIGGER/"/>
<includeAll path="/DATABASE/HR/COMMENT/"/>
<include file="/POST_SCRIPTS/post_scripts_order.xml"/>
</databaseChangeLog>