|
--으커깊
|
|
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
|