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

6 lines
294 B
SQL

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

-- 允许 userinfo.teacher_admin 为空
-- 背景:新增学生/普通用户时 teacher_admin 不是必填业务字段,旧库 NOT NULL 约束会导致插入失败。
ALTER TABLE userinfo
MODIFY COLUMN teacher_admin TINYINT(1) NULL DEFAULT 0 COMMENT '是否管理型老师0-否 1-是';