Comment changer MySQL définition de la colonne?

J'ai une table mySQL appelé test:

create table test(
    locationExpect varchar(120) NOT NULL;
);

Je veux changer la locationExpect colonne:

create table test(
    locationExpect varchar(120);
);

Comment peut-il être fait rapidement?

InformationsquelleAutor Mask | 2009-10-20