Files
huike-back/htyws_models/migrations/2022-09-25-154549_add_duration_to_kecheng/up.sql
T

13 lines
283 B
SQL
Raw Normal View History

-- 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 '课程时长(分钟)';