Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

118 rindas
4.5 KiB

--
create table tb_product_class (
id int identity, --id
channel_id int not null default 0, --
title nvarchar(100) null, --
guid nvarchar(50) null, --guid
parent_id int null default 0, --id
class_list nvarchar(500) null, --
attribute_list nvarchar(500) null, --
class_layer int null default 0, --
paixu int null default 0, --
url nvarchar(255) null default '', --
path nvarchar(255) null default '', --
content ntext null, --
seo_title nvarchar(255) null default '', --seo깃痙
seo_keywords nvarchar(255) null default '', --seo밑숩俚
seo_description nvarchar(255) null default '', --seo췄甘
state int null default 0, --(0/1)
constraint PK_TB_PRODUCT_CLASS primary key (id)
)
go
declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'菱藤ID',
'user', @CurrentUser, 'table', 'tb_product_class', 'column', 'id'
go
declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'榴檄(0鞫刻/1茶꾜)',
'user', @CurrentUser, 'table', 'tb_product_class', 'column', 'state'
go
declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'틉돛각뒬',
'user', @CurrentUser, 'table', 'tb_product_class', 'column', 'channel_id'
go
declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'츰냔',
'user', @CurrentUser, 'table', 'tb_product_class', 'column', 'title'
go
declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'guid',
'user', @CurrentUser, 'table', 'tb_product_class', 'column', 'guid'
go
declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'만섬',
'user', @CurrentUser, 'table', 'tb_product_class', 'column', 'parent_id'
go
declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'으커섞',
'user', @CurrentUser, 'table', 'tb_product_class', 'column', 'class_list'
go
declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'橄昑섞',
'user', @CurrentUser, 'table', 'tb_product_class', 'column', 'attribute_list'
go
declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'�똑',
'user', @CurrentUser, 'table', 'tb_product_class', 'column', 'class_layer'
go
declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'탤埼',
'user', @CurrentUser, 'table', 'tb_product_class', 'column', 'paixu'
go
declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'졍쌈뒈囹',
'user', @CurrentUser, 'table', 'tb_product_class', 'column', 'url'
go
declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'暠튬쨌쓺',
'user', @CurrentUser, 'table', 'tb_product_class', 'column', 'path'
go
declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'코휭',
'user', @CurrentUser, 'table', 'tb_product_class', 'column', 'content'
go
declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'膽뺏깃痙',
'user', @CurrentUser, 'table', 'tb_product_class', 'column', 'seo_title'
go
declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'膽뺏밑숩俚',
'user', @CurrentUser, 'table', 'tb_product_class', 'column', 'seo_keywords'
go
declare @CurrentUser sysname
select @CurrentUser = user_name()
execute sp_addextendedproperty 'MS_Description',
'膽뺏췄甘',
'user', @CurrentUser, 'table', 'tb_product_class', 'column', 'seo_description'
go