Advertisement
bombillo

srvloginfo

Jan 19th, 2020
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1.  
  2. -- ----------------------------
  3. -- Table structure for [dbo].[DBG_SrvLogInfo]
  4. -- ----------------------------
  5. DROP TABLE [dbo].[DBG_SrvLogInfo]
  6. GO
  7. CREATE TABLE [dbo].[DBG_SrvLogInfo] (
  8. [RecordID] int NOT NULL IDENTITY(1,1) ,
  9. [ReportTime] datetime NULL ,
  10. [IsProcessed] int NULL ,
  11. [CustomerID] int NULL ,
  12. [CharID] int NULL DEFAULT ((0)) ,
  13. [CustomerIP] varchar(64) NULL ,
  14. [GameSessionID] bigint NULL ,
  15. [CheatID] int NULL ,
  16. [RepeatCount] int NULL ,
  17. [Gamertag] nvarchar(64) NULL DEFAULT '' ,
  18. [Msg] varchar(512) NULL ,
  19. [Data] varchar(4096) NULL
  20. )
  21.  
  22.  
  23. GO
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement