17 lines
604 B
Transact-SQL
17 lines
604 B
Transact-SQL
ALTER TABLE [dbo].[RealName_PushLog] ADD PushContent nvarchar(max) null
|
|
go
|
|
ALTER TABLE [dbo].[RealName_PushLog] ADD ReturnData nvarchar(max) null
|
|
go
|
|
|
|
/****** Object: Index [NonClusteredIndex-20210908-175111] Script Date: 2021/9/8 17:52:03 ******/
|
|
CREATE NONCLUSTERED INDEX [NonClusteredIndex-20210908-175111] ON [dbo].[WBS_ControlItemAndCycle]
|
|
(
|
|
[WorkPackageId] ASC,
|
|
[ProjectId] ASC,
|
|
[Weights] ASC,
|
|
[PlanCompleteDate] ASC
|
|
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
|
|
GO
|
|
|
|
|