aboutsummaryrefslogtreecommitdiff
path: root/schema/changelog-3.6.xml
diff options
context:
space:
mode:
Diffstat (limited to 'schema/changelog-3.6.xml')
-rw-r--r--schema/changelog-3.6.xml9
1 files changed, 8 insertions, 1 deletions
diff --git a/schema/changelog-3.6.xml b/schema/changelog-3.6.xml
index 3de7e2c0f..13d4cae60 100644
--- a/schema/changelog-3.6.xml
+++ b/schema/changelog-3.6.xml
@@ -3,10 +3,17 @@
xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog
- http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.4.xsd">
+ http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.4.xsd"
+ logicalFilePath="changelog-3.6">
<changeSet author="author" id="changelog-3.6">
+ <preConditions onFail="MARK_RAN">
+ <not>
+ <tableExists tableName="events" />
+ </not>
+ </preConditions>
+
<createTable tableName="events">
<column name="id" type="INT" autoIncrement="true">
<constraints primaryKey="true" />