Comparing the database: “ employees_1” with: “ employees_2”
Using configuration file: “/examples/local_mysql_diff_test.ini”
DB: employees_1 | DB: employees_2 |
CREATE TABLE `employees` (
`emp_no` int(11) NOT NULL, `birth_date` date NOT NULL, `first_name` varchar(14) NOT NULL, `last_name` varchar(16) NOT NULL, `gender` enum('M','F') NOT NULL, `hire_date` date NOT NULL, |
CREATE TABLE `employees` (
`emp_no` int(11) NOT NULL, `birth_date` date NOT NULL, `first_name` varchar(14) NOT NULL, `last_name` varchar(16) NOT NULL, `gender` enum('M','F') NOT NULL, `hire_date` date NOT NULL, |
||||||||
KEY `hire_date` (`hire_date`)
|
|||||||||
) ENGINE=InnoDB DEFAULT CHARSET=latin1
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1
|