Missing semicolon (#21046)

pull/21049/head
Prakash G.R 2020-12-26 17:22:48 +05:30 committed by GitHub
parent c6455f36fc
commit 4128e8fbe7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -711,7 +711,7 @@ public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
+ app.UseMigrationsEndPoint()
+ app.UseMigrationsEndPoint();
- app.UseDatabaseErrorPage();
}
else