aboutsummaryrefslogtreecommitdiff
path: root/ExamTemplate/Web/Startup.cs
diff options
context:
space:
mode:
authorSyndamia <kamen.d.mladenov@protonmail.com>2021-05-06 20:38:38 +0300
committerSyndamia <kamen.d.mladenov@protonmail.com>2021-05-06 20:38:38 +0300
commit11e86ef33e2d6c2b710e7cd9064b9a51f2f55e1e (patch)
treefa437599de4eae3b991cd953f34b144d13ee234c /ExamTemplate/Web/Startup.cs
parent6599716638f4743629eba8daf6c3c04164f5c627 (diff)
downloadit-kariera-exam-template-11e86ef33e2d6c2b710e7cd9064b9a51f2f55e1e.tar
it-kariera-exam-template-11e86ef33e2d6c2b710e7cd9064b9a51f2f55e1e.tar.gz
it-kariera-exam-template-11e86ef33e2d6c2b710e7cd9064b9a51f2f55e1e.zip
Updated README with information about changing the database you use
Diffstat (limited to 'ExamTemplate/Web/Startup.cs')
-rw-r--r--ExamTemplate/Web/Startup.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ExamTemplate/Web/Startup.cs b/ExamTemplate/Web/Startup.cs
index d6635b8..e66e40a 100644
--- a/ExamTemplate/Web/Startup.cs
+++ b/ExamTemplate/Web/Startup.cs
@@ -24,7 +24,7 @@ namespace Web
// Database configuration
services.AddDbContext<TemplateContext>(options =>
- options.UseNpgsql(this.Configuration.GetConnectionString("LocalDBConnection")));
+ options.UseNpgsql(this.Configuration.GetConnectionString("LocalDBConnection")));
}
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.