You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
901 B

пре 3 година
  1. --
  2. create table tb_message (
  3. id int identity, --
  4. paixu int null default 0, --
  5. title nvarchar(255) null default '', --
  6. add_time datetime null default getdate(), --
  7. constraint PK_TB_MESSAGE primary key (id)
  8. )
  9. go
  10. execute sp_addextendedproperty 'MS_Description',
  11. '��������',
  12. 'user', 'dbo', 'table', 'tb_message', 'column', 'id'
  13. go
  14. execute sp_addextendedproperty 'MS_Description',
  15. '����',
  16. 'user', 'dbo', 'table', 'tb_message', 'column', 'paixu'
  17. go
  18. execute sp_addextendedproperty 'MS_Description',
  19. '��������',
  20. 'user', 'dbo', 'table', 'tb_message', 'column', 'title'
  21. go
  22. execute sp_addextendedproperty 'MS_Description',
  23. '��������',
  24. 'user', 'dbo', 'table', 'tb_message', 'column', 'add_time'
  25. go