Rename field bug

The rename field generated this sql while renaming RequestId to RequestIdXXX
CREATE NONCLUSTERED INDEX [IX_RequestID] ON [dbo].[EmployeeTimeSheet] ([RequestIDXXX]) WHERE ([RequestId] IS NOT NULL) ON [PRIMARY]
In it the where clause was not updated with the new name of the field
Dan Avni

Answers

Sign In or Register to comment.