- 中查找“wz_mu2003”更多相关内容
- 中查找“wz_mu2003”更多相关内容
- ·上一篇文章:启动必读
- ·下一篇文章:仓库代码大放送
wz_mu2003
这是偶根据wz_mu2003_event_server.exe里的信息重建出来的,可以让 wz_mu2003_event_server 正常启动,但是否能正常使用还不清楚,大家试试看
---------------------------------------------------------------------------------
create table [dbo].[t_mu2003_event] (
[accountid] [varchar] (10) collate chinese_prc_ci_as not null ,
[eventchips] [int] not null ,
[check_code] [int] not null ,
[muttonumber] [int] not null ,
[muttoindex] [int] not null
) on [primary]
go
alter table [dbo].[t_mu2003_event] add
constraint [df_t_mu2003_event_eventchips] default (0) for [eventchips],
constraint [df_t_mu2003_event_check_code] default (0) for [check_code],
constraint [df_t_mu2003_event_muttonumber] default (0) for [muttonumber],
constraint [df_t_mu2003_event_muttoindex] default (0) for [muttoindex]
go dedecms.com
create index [muttomaxindex] on [dbo].[t_mu2003_event]([muttoindex]) on [primary]
go