Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

SQL Account table

Skilled Illusionist
Joined
May 12, 2007
Messages
345
Reaction score
20
:thumbup:

USE [skdbtw]
GO

/****** Object: Table [dbo].[TBL_Member_Data] Script Date: 03/02/2011 14:09:15 ******/
SET ANSI_NULLS ON
GO

SET QUOTED_IDENTIFIER ON
GO

SET ANSI_PADDING ON
GO

CREATE TABLE [dbo].[TBL_Member_Data](
[AccountID] [varchar](50) NULL,
[passwd] [varchar](50) NULL,
[SMSFlag] [nchar](10) NULL,
[IsUseAssureCard] [nchar](10) NULL,
[Lock] [nchar](10) NULL,
[SFCheckErrCount] [nchar](10) NULL,
[LastUnLockTime] [nchar](10) NULL,
[suspended_time] [nchar](10) NULL
) ON [PRIMARY]

GO

SET ANSI_PADDING OFF
GO
 
Back
Top