项目用户添加是否教育人字段

This commit is contained in:
geh
2026-01-20 16:34:07 +08:00
parent 9555acd424
commit 96ca57977d
11 changed files with 131 additions and 27 deletions
@@ -0,0 +1,8 @@
alter table Project_ProjectUser add IsEducator bit NULL;
go
EXEC sp_addextendedproperty
'MS_Description', N'是否教育人',
'SCHEMA', N'dbo',
'TABLE', N'Project_ProjectUser',
'COLUMN', N'IsEducator'
GO