|
|
-
- --��������
- 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
|