This completely removes the previous DB patching mechanism.
When this is first run for an existing installation of Unwind, depending
on its version it might lead to problems because the database's schema
won't match the code.
To avoid that issue, when upgrading Unwind to this version make sure to
STOP the old application, install this new version but DON'T start it,
instead use `alembic upgrade head` to run the outstanding patches, and
only then start the application.
We used NUMBER[sic!] as column type in our SQL, which does not exist.
The way SQLite works this mapped to NUMERIC, which is not what we meant,
we really wanted INTEGER here.