-
Notifications
You must be signed in to change notification settings - Fork 174
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2202dae
commit 8ca2fc6
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
--2020-7-28 | ||
/*学员组,增加该组学员在视频学习时,切换浏览器是否不暂停播放,默认为false*/ | ||
/*学员组,增加该组学员在视频学习时,切换浏览器是否不暂停播放,默认为false*/ | ||
alter table StudentSort add Sts_SwitchPlay bit NULL | ||
go | ||
UPDATE StudentSort SET Sts_SwitchPlay = 0 | ||
GO | ||
alter table StudentSort ALTER COLUMN Sts_SwitchPlay bit NOT NULL | ||
/*修改菜单名称*/ | ||
/*修改菜单名称*/ | ||
UPDATE ManageMenu | ||
SET ManageMenu.MM_Name='学员组' | ||
where ManageMenu.MM_Name='学员班级' | ||
SET ManageMenu.MM_Name='学员组' | ||
where ManageMenu.MM_Name='学员班级' |