8 lines
214 B
Transact-SQL
8 lines
214 B
Transact-SQL
alter table dbo.Person_Persons
|
|
add IsInspectionBrigade bit
|
|
go
|
|
|
|
exec sp_addextendedproperty 'MS_Description', N'是否督查人员', 'SCHEMA', 'dbo', 'TABLE', 'Person_Persons', 'COLUMN',
|
|
'IsInspectionBrigade'
|
|
go
|