Skip to content

Commit

Permalink
Update IdentityHostingStartup.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
Drofnum committed Aug 28, 2019
1 parent c6b8641 commit d348185
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ProTrack/Areas/Identity/IdentityHostingStartup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public void Configure(IWebHostBuilder builder)
var dbPassword = context.Configuration.GetValue<string>("dbPassword");

services.AddDbContext<ApplicationDbContext>(options => options
.UseMySql($"server={dbServer};port=3306;database=ProTrack;user={dbUsername};password={dbPassword}",
.UseMySql($"server={dbServer};port=3306;database=protrack;user={dbUsername};password={dbPassword}",
mySqlOptions =>
{
mySqlOptions.ServerVersion(new Version(8, 0, 17), ServerType.MySql)
Expand Down

0 comments on commit d348185

Please sign in to comment.