20210908 实名制推送日志增加推送内容、返回数据字段

This commit is contained in:
2021-09-08 19:13:25 +08:00
parent 9245f516f4
commit 41dafe1113
8 changed files with 197 additions and 160 deletions
@@ -0,0 +1,16 @@
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