diff --git a/src/SFA.DAS.EAS.Employer_Financial.Database/Types/AccountTransferTable.sql b/src/SFA.DAS.EAS.Employer_Financial.Database/Types/AccountTransferTable.sql index 303e225a41..67bac57369 100644 --- a/src/SFA.DAS.EAS.Employer_Financial.Database/Types/AccountTransferTable.sql +++ b/src/SFA.DAS.EAS.Employer_Financial.Database/Types/AccountTransferTable.sql @@ -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 ) \ No newline at end of file