添加字段:
alter table test
add column str text(25) not null default ´none´
修改字段:
alter column str text(30) not null
删除字段:
drop column str