First time here? Check out the FAQ!

Revision history  [back]

Possibly in your case migration 106 did not succeed, most likely because your postgres does not have procedural language called plpgsql installed.

Please try logging in to the database shell and type

CREATE LANGUAGE plpgsql;

The command may still fail, because it apparently did not work for you, but will give a hint. Looks like migration is not catching some error condition.

Also you can try running this query askbot/search/postgresql/thread_and_post_models_01162012.plsql directly into the database.

The error messages should suggest something. Often it is a permission error.