Table names are stored in lowercase on disk and name comparisons are not case sensitive. MySQL converts all table names to lowercase on storage and lookup
Resolution
Add the following line in /etc/my.cnf and then restart mysql: lower_case_table_names=1
where : lower_case_table_names=0 (Case Sensitive Enabled) lower_case_table_names=1 (Case Sensitive Disabled)
Additional Information
Table names are stored in lowercase on disk and name comparisons are not case sensitive. MySQL converts all table names to lowercase on storage and lookup. This behavior also applies to database names and table aliases.