Hi all,
My problem is following:
I run since 4,5 years my weewx station hosted on a raspberry pi.
I start 2016 with a prober version and update it to latest 3.9 version.
Now I reinstall a new raspberry Pi with lastest raspian version and weewx 4.3 and do also all new configuration and add new skins aso...
BUT: I found out that the old version has following Databinding:
[DataBindings]
[[wx_binding]]
# The database must match one of the sections in [Databases].
# This is likely to be the only option you would want to change.
database = archive_sqlite
# The name of the table within the database
table_name = archive
# The manager handles aggregation of data for historical summaries
manager = weewx.wxmanager.WXDaySummaryManager
# The schema defines the structure of the database.
# It is *only* used when the database is created.
schema = schemas.wview.schema
And in the new config has already the new extrended schema:
[DataBindings]
[[wx_binding]]
# The database must match one of the sections in [Databases].
# This is likely to be the only option you would want to change.
database = archive_sqlite
# The name of the table within the database
table_name = archive
# The manager handles aggregation of data for historical summaries
manager = weewx.manager.DaySummaryManager
# The schema defines the structure of the database.
# It is *only* used when the database is created.
schema = schemas.wview_extended.schema
My idea would be i will shutdown the old weewx instance and copy the old database to the correct folder in the new installed weewx version.
BUT i guess that will not work and my fear is the old data are lost or not visible.
CAN anybody help me to migrate the old sqlite database to the new 4.x schema standard without lost my history data??
Thx very much!
Manfred