JDBC:MySQL - Data too long for column

Hi there,

i´m currently migrating from oH2 to oH3 and just encountered a problem with my JDBC:MySQL.
The persistence service can´t store the location value of an iCloud device.

2021-04-30 23:04:06.018 [ERROR] [org.knowm.yank.Yank                 ] - Error in SQL query!!!
java.sql.SQLException: Data truncation: Data too long for column 'value' at row 1 Query: INSERT INTO ipcanon_location_0003 (TIME, VALUE) VALUES( NOW(3), ? ) ON DUPLICATE KEY UPDATE VALUE= ? Parameters: [12.123456789,1.123456789,0.0, 12.123456789,1.123456789,0.0]
	at org.apache.commons.dbutils.AbstractQueryRunner.rethrow(AbstractQueryRunner.java:392) ~[bundleFile:?]
	at org.apache.commons.dbutils.QueryRunner.update(QueryRunner.java:491) ~[bundleFile:?]
	at org.apache.commons.dbutils.QueryRunner.update(QueryRunner.java:457) ~[bundleFile:?]
	at org.knowm.yank.Yank.execute(Yank.java:194) [bundleFile:?]
	at org.knowm.yank.Yank.execute(Yank.java:177) [bundleFile:?]
	at org.openhab.persistence.jdbc.db.JdbcBaseDAO.doStoreItemValue(JdbcBaseDAO.java:329) [bundleFile:?]
	at org.openhab.persistence.jdbc.internal.JdbcMapper.storeItemValue(JdbcMapper.java:156) [bundleFile:?]
	at org.openhab.persistence.jdbc.internal.JdbcPersistenceService.store(JdbcPersistenceService.java:143) [bundleFile:?]
	at org.openhab.core.persistence.internal.PersistenceManagerImpl.handleStateEvent(PersistenceManagerImpl.java:152) [bundleFile:?]
	at org.openhab.core.persistence.internal.PersistenceManagerImpl.stateChanged(PersistenceManagerImpl.java:473) [bundleFile:?]
	at org.openhab.core.items.GenericItem.lambda$1(GenericItem.java:259) [bundleFile:?]
	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) [?:?]
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) [?:?]
	at java.lang.Thread.run(Thread.java:829) [?:?]
2021-04-30 23:04:06.017 [INFO ] [openhab.event.ItemStateChangedEvent ] - Item 'iPhone_Location' changed from 12.123456789,1.123456789,0.0 to 12.123456789,1.123456789,0.0

Please don´t take the values serious as i anonymized them.
The value is 38 characters long.

I´m running 3.0.2 - Release Build and the MySQL database was cleared before i started openHAB 3.

kind regards
Michael

Okay nevermind.
It seems to be solved with

I didn´t searched there…