I would like to run some SQL after the schema migration has been performed.

Some points:

  1. If I execute the SQL during the Up function call, it is not executing with the latest schema version because the schema update takes effect afterwards.

  2. Calling Database.Commit() commits the changes immediately, but the connection is closed therefore cannot execute SQL.

  3. Calling my SQL in the AfterUp() function the connection is also closed.

How am I supposed to execute some SQL after the schema has been updated?

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

Immediately after asking this question it hit me ... Create another migration which just does the data. It will have an open connection and will only be performed once the schema migration has passed.

link|improve this answer
Why don't you accept your own answer then? – Robert Koritnik Jan 24 at 9:25
feedback

Your Answer

 
or
required, but never shown

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