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