i imported this table into mysql using PHPMYADMIN:
CREATE TABLE `migPerson` (
`id` int(11) NOT NULL auto_increment,
`first_name` varchar(64) NOT NULL,
`last_name` varchar(64) NOT NULL,
`born_on` date default NULL,
`contact_info_id` int(11) default NULL,
`headshot` text,
`last_contacted_on` date default NULL,
`removed_on` datetime default '0000-00-00 00:00:00',
`delete_row` int(1) default '0',
PRIMARY KEY (`id`),
KEY `person_name` (`last_name`,`first_name`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
when i view the imported table's structure in phpMyAdmin, the 'Collation' column lists 'latin1_swedish_ci' for all the varchar and text fields.
What does this mean? Can I change it? Should I change it??