|
|
--在线留言
|
|
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
|