给表增加新的字段 alter table 表名 add 字段名 数值类型 ,     + not null 表示不为空值, +default 数值  填入默认值
alter table actor add create_date datetime not null 
default '2020-10-01 00:00:00';