Entity Framework Core - change schema of "__EFMigrationsHistory" table -


is possible change schema of __efmigrationshistory table in entityframework core?

do in call usesqlserver.

optionsbuilder     .usesqlserver(         "...",         x => x.migrationshistorytable(             historyrepository.defaulttablename,             "myschema")); 

Comments