alter table actor add(
    create_date datetime not null default '2020-10-01 00:00:00'
)

注意格式

alter table [表名] add ( 列名,数据结构,数据限制,默认值)