diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2018-10-22 04:50:58 +0400 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2018-10-22 04:50:58 +0400 |
commit | e4bbd04c84dffa351e2b782df9b7bedb19c314c3 (patch) | |
tree | 42906d635d2666ef633316d28cc7d24c08fa7d7b /schema/changelog-4.0-clean.xml | |
parent | ca3f04d16c16d45d8753d6f84bf83ab8fc44446a (diff) | |
download | trackermap-server-e4bbd04c84dffa351e2b782df9b7bedb19c314c3.tar.gz trackermap-server-e4bbd04c84dffa351e2b782df9b7bedb19c314c3.tar.bz2 trackermap-server-e4bbd04c84dffa351e2b782df9b7bedb19c314c3.zip |
Avoid using Liquibase properties (fix #4113)
Diffstat (limited to 'schema/changelog-4.0-clean.xml')
-rw-r--r-- | schema/changelog-4.0-clean.xml | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/schema/changelog-4.0-clean.xml b/schema/changelog-4.0-clean.xml index cdf731c34..0bdcc41e5 100644 --- a/schema/changelog-4.0-clean.xml +++ b/schema/changelog-4.0-clean.xml @@ -6,9 +6,6 @@ http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.6.xsd" logicalFilePath="changelog-4.0-clean"> - <property name="blob.type" value="BLOB" dbms="h2,mysql,mssql,oracle" /> - <property name="blob.type" value="bytea" dbms="postgresql" /> - <changeSet author="author" id="changelog-4.0-clean"> <preConditions onFail="MARK_RAN"> @@ -42,7 +39,7 @@ <column name="name" type="VARCHAR(128)"> <constraints nullable="false" /> </column> - <column name="data" type="${blob.type}"> + <column name="data" type="MEDIUMBLOB"> <constraints nullable="false" /> </column> <column name="attributes" type="VARCHAR(4000)"> |