diff options
| author | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-03-27 08:48:49 +0200 |
|---|---|---|
| committer | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-03-27 08:48:49 +0200 |
| commit | 7d5544626c21b90da0b538da83c112c0f8adec9d (patch) | |
| tree | cecc540011591ca71c4ec2b194606402ecf82265 | |
| parent | 418552fcb981443f2a89340c01efadc439f3f854 (diff) | |
| download | DevHive-7d5544626c21b90da0b538da83c112c0f8adec9d.tar DevHive-7d5544626c21b90da0b538da83c112c0f8adec9d.tar.gz DevHive-7d5544626c21b90da0b538da83c112c0f8adec9d.zip | |
Updated database name in appsettings and ConnectionString
| -rw-r--r-- | src/Data/DevHive.Data/ConnectionString.json | 4 | ||||
| -rw-r--r-- | src/Web/DevHive.Web/appsettings.json | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/Data/DevHive.Data/ConnectionString.json b/src/Data/DevHive.Data/ConnectionString.json index c8300b2..1281a1c 100644 --- a/src/Data/DevHive.Data/ConnectionString.json +++ b/src/Data/DevHive.Data/ConnectionString.json @@ -1,5 +1,5 @@ { "ConnectionStrings": { - "DEV": "Server=localhost;Port=5432;Database=API;User Id=postgres;Password=password;" + "DEV": "Server=localhost;Port=5432;Database=DevHive_API;User Id=postgres;Password=password;" } -}
\ No newline at end of file +} diff --git a/src/Web/DevHive.Web/appsettings.json b/src/Web/DevHive.Web/appsettings.json index 053007d..036af82 100644 --- a/src/Web/DevHive.Web/appsettings.json +++ b/src/Web/DevHive.Web/appsettings.json @@ -5,7 +5,7 @@ "audience": "" }, "ConnectionStrings": { - "DEV": "Server=localhost;Port=5432;Database=DevHive API;User Id=postgres;Password=;" + "DEV": "Server=localhost;Port=5432;Database=DevHive_API;User Id=postgres;Password=;" }, "Cloud": { "cloudName": "devhive", |
