Skip to Main Content

DevOps, CI/CD and Automation

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Using custom MigrationsHistoryTable makes UseOracleSQLCompatibility ignored?

3814212Sep 30 2019 — edited Oct 31 2019

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

Comments
Post Details
Added on Sep 30 2019
3 comments
508 views