Too many DDL scripts generated by the service refer to a version_history table that often does not exist. If there were a portable "create table if not exists" statement, that would be ideal, but I think lacking that, we should just drop the idea of a version history table until a better idea presents itself. Perhaps rolling our own portable "create table if not exists" statements would be best.
Looks like MSSQL is the only one that doesn't support create table if not exists, and I found an alternative, so I'm pushing up a version that should fix this problem.
Too many DDL scripts generated by the service refer to a version_history table that often does not exist. If there were a portable "create table if not exists" statement, that would be ideal, but I think lacking that, we should just drop the idea of a version history table until a better idea presents itself. Perhaps rolling our own portable "create table if not exists" statements would be best.