All pastes #2124552 Raw Edit

Someone

public text v1 · immutable
#2124552 ·published 2012-03-05 12:20 UTC
rendered paste body
CREATE 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. */