aboutsummaryrefslogtreecommitdiff
path: root/database/db.changelog-3.2.xml
diff options
context:
space:
mode:
Diffstat (limited to 'database/db.changelog-3.2.xml')
-rw-r--r--database/db.changelog-3.2.xml15
1 files changed, 15 insertions, 0 deletions
diff --git a/database/db.changelog-3.2.xml b/database/db.changelog-3.2.xml
new file mode 100644
index 000000000..b05ec6a03
--- /dev/null
+++ b/database/db.changelog-3.2.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<databaseChangeLog
+ xmlns="http://www.liquibase.org/xml/ns/dbchangelog/1.9"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog/1.9
+ http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-1.9.xsd">
+
+ <changeSet author="authorName" id="changelog-1.0">
+ <createTable tableName="TablesAndTables">
+ <column name="COLUMN1" type="TEXT">
+ <constraints nullable="true" primaryKey="false" unique="false"/>
+ </column>
+ </createTable>
+ </changeSet>
+</databaseChangeLog>