vote up 2 vote down star

Hello. I'm using NHibernate 2 and PostgreSQL in my project. SchemaExport class does a great job generating DDL scheme for database, but it's great until the first application.

Is there any way to generate "migration" DLL (batch of "ALTER TABLE"'s instead of DROP/CREATE pair) using NHibernate mapping files?

flag

71% accept rate
*Generate -- Please proofread. – Rich B Sep 22 '08 at 14:03
Please be more explisit – Artem Tikhomirov Sep 22 '08 at 18:58

2 Answers

vote up 5 vote down check

Look into SchemaUpdate. Very similiar API as SchemaExport but it only creates migrations.

link|flag
vote up 0 vote down

While SchemaUpdate very much answers my needs, it still has several problems. For example it refuses to put a new restriction on existing database column even if it's not gonna conflict with existing data.

I'm going froward to extend SchemaUpdate a little bit or, if fail, switch to one of that hand driven migration tools (for example Rails one).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.