Greetings,
I noticed the two column tag attributes valueBlobFile and valueClobFile present in version 3, but they are not documented on the column tag page. What do they do?
What made me wonder about them is that I have a password database column into which I want to insert binary value. Its type is varbinary, and in a past project that used Liquibase 2, I made it this way:
-
…
Which now doesn’t work with version 3. When I execute the refactoring I get the value 0x00000000 inserted in the database, which seems as if valueNumeric is now treated just as 32 bit integer not as arbitrary non quoted value as in the past.
What’s the proper method to insert binary data using the insert refactoring to resolve my situation?