Fix PostgreSQL blob (fix #4947)

This commit is contained in:
Anton Tananaev 2022-09-13 06:50:44 -07:00
parent 251829fb75
commit 30e04d7209

View File

@ -24,10 +24,10 @@
<column autoIncrement="true" name="id" type="INT">
<constraints primaryKey="true" />
</column>
<column name="publickey" type="BLOB">
<column name="publickey" type="MEDIUMBLOB">
<constraints nullable="false" />
</column>
<column name="privatekey" type="BLOB">
<column name="privatekey" type="MEDIUMBLOB">
<constraints nullable="false" />
</column>
</createTable>