Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hkf-tech committed Oct 21, 2021
1 parent 71b9370 commit 8792966
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
CREATE TYPE [employer_financial].[AccountTransferTable] AS TABLE
(
SenderAccountId BIGINT NOT NULL,
SenderAccountName NVARCHAR(100) NOT NULL,
SenderAccountName NVARCHAR(100),
ReceiverAccountId BIGINT NOT NULL,
ReceiverAccountName NVARCHAR(100) NOT NULL,
ReceiverAccountName NVARCHAR(100),
ApprenticeshipId BIGINT NOT NULL,
CourseName VARCHAR(MAX) NOT NULL,
CourseName VARCHAR(MAX),
CourseLevel INT,
Amount DECIMAL(18,5) NOT NULL,
PeriodEnd NVARCHAR(20) NOT NULL,
Type NVARCHAR(50) NOT NULL,
RequiredPaymentId UNIQUEIDENTIFIER NOT NULL
RequiredPaymentId UNIQUEIDENTIFIER
)

0 comments on commit 8792966

Please sign in to comment.