You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
These steps confirmed working after my migration. Things are slightly more complicated now because we have upgraded the database schema since dropping support for sqlite.
be on the latest version that supports sqlite -- git checkout 4350c45bf63ce1bc6c341f3a0b921238b106f1d6
Navigate to PoracleJS/src/lib/db
5a. Fix any broken date fields sqlite3 poracle.sqlite "update humans set last_checked='2021-01-01 12:00';"
Dump existing database sqlite3 poracle.sqlite .dump | grep '^INSERT' | grep -v migrations > ~/insert.sql - this creates a file, insert.sql in your home directory
run mysql command line mysql (again, as root so either log in with root or sudo mysql)
change to poracle database use poracle;
load freshly created insert script source ~/insert.sql
I'd suggest making sure poracle runs now - change your config to use mysql and fire it up and make sure it can process some hooks
switch to latest version - git checkout develop - database should now migrate to latest schema
As a sqlite user I would like to upgrade to mysql so that I can take advantage of backups and other mysql related tools (eg poracleweb project)
The text was updated successfully, but these errors were encountered: