25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
901 B

--线
create table tb_message (
id int identity, --
paixu int null default 0, --
title nvarchar(255) null default '', --
add_time datetime null default getdate(), --
constraint PK_TB_MESSAGE primary key (id)
)
go
execute sp_addextendedproperty 'MS_Description',
'自增阿弟',
'user', 'dbo', 'table', 'tb_message', 'column', 'id'
go
execute sp_addextendedproperty 'MS_Description',
'排序',
'user', 'dbo', 'table', 'tb_message', 'column', 'paixu'
go
execute sp_addextendedproperty 'MS_Description',
'留言主题',
'user', 'dbo', 'table', 'tb_message', 'column', 'title'
go
execute sp_addextendedproperty 'MS_Description',
'添加日期',
'user', 'dbo', 'table', 'tb_message', 'column', 'add_time'
go