create table asd(name int check(name=1), age int(1) primary key);
create table qwe(mane int, gae int(1) references asd(age));
show create table qwe;
alter table asd
modify column name int;
show create table asd;
alter table asd drop constraint asd_chk_1;
show create table asd;
show create table qwe;