Configuration MySQL

When I export Bd MySql of my old server for a file .SQL, would be + / - like this:

CREATE TABLE user (
LOGIN VARCHAR(50) NOT NULL DEFAULT '',
PASSWORD VARCHAR(20) NOT NULL DEFAULT '',
PRIMARY KEY (LOGIN)
) ENGINE=MYISAM DEFAULT CHARSET=LATIN1;

But when I will recuperate that BD in my new server of the mistake in the creation of BD. Then would like to know where I configure the mysql in the new server to be "DEFAULT CHARSET=LATIN1;", because like this, when I will recuperate BD in my new Server, would not give mistake.


Thanks

 

 

 

 

Top