I have two mysql dump files.
dump1.sql
CREATE TABLE `designs` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`active` tinyint(1) NOT NULL,
`template` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
dump2.sql
CREATE TABLE `designs` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`act` tinyint(1) NOT NULL,
`temp` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
How to find the difference in two table structure in dump1 & dump2?