CREATE TABLE [dbo].[MuCore_Market_IB](
[uid] [int] IDENTITY(1,1) NOT NULL,
[id] [int] NOT NULL,
[type] [int] NOT NULL,
[ex_type] [int] NOT NULL,
[name] [varchar](51) NOT NULL,
[credits] [int] NOT NULL,
[X] [int] NULL,
[Y] [int] NULL,
[str] [int] NULL,
[agi] [int] NULL,
[nrg] [int] NULL,
[cmd] [int] NULL,
[luck] [int] NULL,
[skill] [int] NULL,
[hasLevel] [int] NULL,
[default_durability] [int] NULL,
[hasOption] [int] NOT NULL,
[optionType] [int] NOT NULL,
[category] [int] NULL,
[stickLevel] [int] NULL,
[maxitop] [int] NULL,
[maxitlv] [int] NULL,
[maxitxl] [int] NULL,
[cansellitem] [int] NULL,
[class] [int] NULL,
[groupid] [int] NULL,
CONSTRAINT [PK_MuCore_Market_IB_1] PRIMARY KEY CLUSTERED
(
[uid] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO