Someone
public text v1 · immutableCREATE TABLE `products` (
(.. snip ..)
) ENGINE=InnoDB AUTO_INCREMENT=433154 DEFAULT CHARSET=utf8;
/* SQL Error (1005): Can't create table 'legacy-vend.products' (errno: 135) */
CREATE TABLE `products` (
(.. snip ..)
) ENGINE=MyISAM AUTO_INCREMENT=433154 DEFAULT CHARSET=utf8;
/* 0 rows affected, 0 rows found. Duration for 1 query: 0.078 sec. */
ALTER TABLE `products` ENGINE=InnoDB;
/* 0 rows affected, 0 rows found. Duration for 1 query: 0.035 sec. */