To manually upgrade the database from Subtext 1.0 to 1.5 you will need to run two scripts.
- Installation.01.05.00.sql
- StoredProcedures.sql
The first script upgrades the schema in an idempotent manner. Running it a second time will have no effect.
The second script drops and then recreates every stored procedure.
After running the scripts, insert a record into the subtext_Version table like so.
INSERT subtext_Version
SELECT 1, 5, 0, getdate()
This lets Subtext know that it does not need to run the 1.5 upgrade wizard.
Make sure that you do this in concert with upgrading all the Subtext binaries and web files.