通过sql给数据库字段设置默认值
# 添加新字段 并设置默认值
alter table `user_tb` add column `user_name` varchar(20) not null DEFAULT '默认值' COMMENT '备注';
# 修改原有默认值
alter table `user_tb` alter column `user_name` set default '默认值';
alter table `user_tb` change column `user_name` `user_name` varchar(20) not null DEFAULT '默认值';
alter table `user_tb` MODIFY column `user_name` varchar(20) not null DEFAULT '默认值';
# 删除原有默认值
alter table `user_tb` alter column `user_name` drop default;
# 增加默认值(和修改类似)
alter table `user_tb` alter column `user_name` set default '默认值';