diff options
author | Anton Tananaev <anton@traccar.org> | 2022-09-13 06:50:44 -0700 |
---|---|---|
committer | Anton Tananaev <anton@traccar.org> | 2022-09-13 06:50:44 -0700 |
commit | 30e04d7209561b7ebf6055a9170794ab9496c357 (patch) | |
tree | 2596131e7cb40d84b5257a3f59cc586c5a263854 /schema/changelog-5.3.xml | |
parent | 251829fb7583c50c0bac97bc47d41bdbf63cf6c1 (diff) | |
download | trackermap-server-30e04d7209561b7ebf6055a9170794ab9496c357.tar.gz trackermap-server-30e04d7209561b7ebf6055a9170794ab9496c357.tar.bz2 trackermap-server-30e04d7209561b7ebf6055a9170794ab9496c357.zip |
Fix PostgreSQL blob (fix #4947)
Diffstat (limited to 'schema/changelog-5.3.xml')
-rw-r--r-- | schema/changelog-5.3.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/schema/changelog-5.3.xml b/schema/changelog-5.3.xml index 2021fe6c7..1e5a6005a 100644 --- a/schema/changelog-5.3.xml +++ b/schema/changelog-5.3.xml @@ -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> |