Thank you Gary.
I'm sorry but this doesn't work .
I did those command and after I always a bad date...
pi@raspberrypi:/var/lib/weewx $ ls -al
total 1264
drwxr-xr-x 2 root root 4096 jun 27 16:29 .
drwxr-xr-x 51 root root 4096 jun 27 13:43 ..
-rw-r--r-- 1 root root 1283072 jun 27 16:29 weewx.sdb
I stopped services weewx and apache
pi@raspberrypi:/var/lib/weewx $ sudo /etc/init.d/weewx stop
[ ok ] Stopping weewx (via systemctl): weewx.service.
pi@raspberrypi:/var/lib/weewx $ sudo /etc/init.d/apache2 stop
[ ok ] Stopping apache2 (via systemctl): apache2.service.
I made a copy of the db.
pi@raspberrypi:/var/lib/weewx $ ls -al
total 2520
drwxr-xr-x 2 root root 4096 jun 27 16:31 .
drwxr-xr-x 51 root root 4096 jun 27 13:43 ..
-rw-r--r-- 1 root root 1283072 jun 27 16:29 weewx.sdb
I modified db from sqlite3 command line
pi@raspberrypi:/var/lib/weewx $ sudo sqlite3 weewx.sdb
SQLite version 3.8.7.1 2014-10-29 13:59:56
Enter ".help" for usage hints.
sqlite> update archive set dateTime=dateTime-31536000 where dateTime>strftime('%s', 'now');
sqlite> .quit
I reindex database
pi@raspberrypi:/var/lib/weewx $ sudo wee_database /etc/weewx/weewx.conf --drop-daily
Using configuration file /etc/weewx/weewx.conf
Using database binding 'wx_binding', which is bound to database 'archive_sqlite'
Proceeding will delete all your daily summaries from database 'weewx.sdb'
Are you sure you want to proceed (y/n)? y
Dropping daily summary tables from 'weewx.sdb' ...
Dropped daily summary tables from database 'weewx.sdb'
pi@raspberrypi:/var/lib/weewx $ sudo wee_database /etc/weewx/weewx.conf --backfill-daily
Using configuration file /etc/weewx/weewx.conf
Using database binding 'wx_binding', which is bound to database 'archive_sqlite'
Backfilling daily summaries in database 'weewx.sdb' ...
Processed 3786 records to backfill 157 day summaries in 13.23 seconds
Backfill of daily summaries in database 'weewx.sdb' complete
I restarted services
pi@raspberrypi:/var/lib/weewx $ sudo /etc/init.d/weewx start
[ ok ] Starting weewx (via systemctl): weewx.service.
pi@raspberrypi:/var/lib/weewx $ sudo /etc/init.d/apache2 start
[ ok ] Starting apache2 (via systemctl): apache2.service.
pi@raspberrypi:/var/lib/weewx $