1
0
mirror of https://github.com/bitwarden/server synced 2026-01-19 08:53:57 +00:00

Reference id storage and signup

This commit is contained in:
Chad Scharf
2020-06-25 12:28:22 -04:00
parent f23a8edc45
commit fca7b162bf
11 changed files with 472 additions and 6 deletions

View File

@@ -23,6 +23,7 @@
@Gateway TINYINT,
@GatewayCustomerId VARCHAR(50),
@GatewaySubscriptionId VARCHAR(50),
@ReferenceId VARCHAR(50),
@LicenseKey VARCHAR(100),
@Kdf TINYINT,
@KdfIterations INT,
@@ -58,6 +59,7 @@ BEGIN
[Gateway] = @Gateway,
[GatewayCustomerId] = @GatewayCustomerId,
[GatewaySubscriptionId] = @GatewaySubscriptionId,
[ReferenceId] = @ReferenceId,
[LicenseKey] = @LicenseKey,
[Kdf] = @Kdf,
[KdfIterations] = @KdfIterations,
@@ -65,4 +67,4 @@ BEGIN
[RevisionDate] = @RevisionDate
WHERE
[Id] = @Id
END
END