mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-23 14:35:24 -07:00
fix: fixed the compiler error
This commit is contained in:
parent
a51b61d869
commit
a2fe9dd346
1 changed files with 1 additions and 1 deletions
|
@ -120,7 +120,7 @@ namespace Ombi.Extensions
|
||||||
|
|
||||||
public static void ConfigureMySql(DbContextOptionsBuilder options, PerDatabaseConfiguration config)
|
public static void ConfigureMySql(DbContextOptionsBuilder options, PerDatabaseConfiguration config)
|
||||||
{
|
{
|
||||||
options.UseMySql(config.ConnectionString, b =>
|
options.UseMySql(config.ConnectionString, ServerVersion.AutoDetect(config.ConnectionString), b =>
|
||||||
{
|
{
|
||||||
//b.CharSetBehavior(Pomelo.EntityFrameworkCore.MySql.Infrastructure.CharSetBehavior.NeverAppend); // ##ISSUE, link to migrations?
|
//b.CharSetBehavior(Pomelo.EntityFrameworkCore.MySql.Infrastructure.CharSetBehavior.NeverAppend); // ##ISSUE, link to migrations?
|
||||||
b.EnableRetryOnFailure();
|
b.EnableRetryOnFailure();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue