File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
application/CohortManager
src/Functions/Shared/Model/EFModels Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -512,7 +512,7 @@ IF NOT EXISTS
512512BEGIN
513513 CREATE TABLE [dbo].[NEMS_SUBSCRIPTION]
514514 (
515- SUBSCRIPTION_ID BIGINT NOT NULL ,
515+ SUBSCRIPTION_ID UNIQUEIDENTIFIER NOT NULL ,
516516 NHS_NUMBER BIGINT NOT NULL ,
517517 RECORD_INSERT_DATETIME DATETIME NULL DEFAULT GETDATE (),
518518 RECORD_UPDATE_DATETIME DATETIME NULL DEFAULT GETDATE (),
Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ public class NemsSubscription
77{
88 [ Key ]
99 [ DatabaseGenerated ( DatabaseGeneratedOption . None ) ]
10- [ Column ( "SUBSCRIPTION_ID" , TypeName = "bigint " ) ]
11- public long SubscriptionId { get ; set ; }
10+ [ Column ( "SUBSCRIPTION_ID" , TypeName = "uniqueidentifier " ) ]
11+ public Guid SubscriptionId { get ; set ; }
1212
1313 [ Required ]
1414 [ Column ( "NHS_NUMBER" , TypeName = "bigint" ) ]
You can’t perform that action at this time.
0 commit comments