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.
0
votes
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.
printMigrationinstead ofrunMigration. That will tell you the query that you need to manually run. - Sibi