44c320d8fa
Track required workspace crates, scripts, and historical diesel migrations so the repository contains the complete runnable backend baseline. Made-with: Cursor
13 lines
283 B
SQL
13 lines
283 B
SQL
-- Your SQL goes here
|
|
|
|
alter table kecheng_teacher
|
|
add duration integer;
|
|
|
|
comment on column kecheng_teacher.duration is '课程时长(分钟)';
|
|
|
|
alter table kecheng_student
|
|
add duration integer;
|
|
|
|
comment on column kecheng_student.duration is '课程时长(分钟)';
|
|
|