Y
Y
Yura_Mart2018-12-21 10:49:54
PHP
Yura_Mart, 2018-12-21 10:49:54

"#1005 - Unable to create table" what's wrong?

-- Структура таблицы `product`
CREATE TABLE `product` (
  `id` int(10) UNSIGNED NOT NULL,
  `title` varchar(255) NOT NULL,
  `category` int(10) NOT NULL,
  `sub_category` int(11) NOT NULL,
  `old_price` varchar(255) NOT NULL DEFAULT '0',
  `new_price` varchar(255) NOT NULL DEFAULT '0',
  `image` varchar(255) NOT NULL,
  `text` text,
  `leader` tinyint(3) NOT NULL DEFAULT '0',
  `sale_id` int(11) NOT NULL DEFAULT '0',
  `stop` tinyint(1) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC

#1005 - Невозможно создать таблицу 'product' (ошибка: 1478) (Детали…)

What can be wrong?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
R
Rsa97, 2018-12-21
@Yura_Mart

1478 - InnoDB errors and warnings.
Go to the console, give a command to create a table, thenSHOW ERRORS;

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question