0
votes

I am using persistent-odbc, and would like to know how to get the SQL instructions to run manually the create table instructions, instead of automatically doing the migrations.

1
Not sure about ODBC, but try running printMigration instead of runMigration. That will tell you the query that you need to manually run. - Sibi
@Sibi It solved my problem, I think you should make an answer - FtheBuilder

1 Answers

2
votes

You can use printMigration to see what migrations you have to manually run. Just replace the runMigration function with printMigration and it should do the job.