I am really surprised that the table having two PK columns.
When I am trying to add PK on another column then those two PK columns changed as normal and only one column changed to PK.
Below is the script it was given
ALTER TABLE [dbo].[ProductionPlaning] ADD CONSTRAINT [PK_ProductionPlaning] PRIMARY KEY CLUSTERED
(
[ProductionPlaningId] ASC,
[Date] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
GO