@amplication/plugin-dotnet-db-sqlserver
Advanced tools
Comparing version 0.0.2 to 0.0.3
{ | ||
"name": "@amplication/plugin-dotnet-db-sqlserver", | ||
"version": "0.0.2", | ||
"version": "0.0.3", | ||
"description": "Use an MS SQL Server database in a service generated by Amplication", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -14,3 +14,3 @@ import { CreateServerDockerComposeParams } from "@amplication/code-gen-types"; | ||
environment: { | ||
ConnectionStrings__DbContext: `sqlserver://db:1433;database=${dbName};user=${user};password=${password};TrustServerCertificate=true`, | ||
ConnectionStrings__DbContext: `Data Source=db,1433;Initial Catalog=${dbName};User Id=${user};Password=${password};TrustServerCertificate=true;`, | ||
}, | ||
@@ -25,3 +25,3 @@ depends_on: { | ||
environment: { | ||
MIGRATION_CONNECTION: `sqlserver://db:1433;database=${dbName};user=${user};password=${password};TrustServerCertificate=true`, | ||
MIGRATION_CONNECTION: `Data Source=db,1433;Initial Catalog=${dbName};User Id=${user};Password=${password};TrustServerCertificate=true;`, | ||
}, | ||
@@ -28,0 +28,0 @@ }, |
@@ -66,3 +66,3 @@ import { | ||
ConnectionStrings: { | ||
[CONNECTION_STRING]: `sqlserver://${host}:${port};database=${dbName};user=${user};password=${password};TrustServerCertificate=true`, | ||
[CONNECTION_STRING]: `Data Source=${host},${port};Initial Catalog=${dbName};User Id=${user};Password=${password};TrustServerCertificate=true;`, | ||
}, | ||
@@ -69,0 +69,0 @@ }; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
172130