Hello,
I'm configuring my provider as follows to enable a custom migration history table while keeping compatibility with Oracle 11:
optionsBuilder.UseOracle(this.ConnectionString, x => {
x.UseOracleSQLCompatibility("11");
x.MigrationsHistoryTable("CustomEFMigrationHistory", "MY_SCHEMA");
});
The thing is UseOracleSQLCompatibility gets ignored and throws a `t.owner` syntax error. If I remove the config for the custom migration history table, it works well.
My provider version is: 2.19.30
Any help is appreciated. Thanks
Message was edited by: 3814212
adding package version