can't create table ark_entity_pmb
dans Requêtes SQL
Bonjour
Après mise a jour a la version 7.4.6 j'ai eu ce message d'erreur au moment de la mise a jour du noyau de la base de données.
can't create table 'pmb_docu'.'ark_entity_pmb' (errno 150 'Foreign key constraint is incorrectly formed')
merci
Connectez-vous ou Inscrivez-vous pour répondre.
Réponses
id INT PRIMARY KEY AUTO_INCREMENT,
entity_type INT NOT NULL DEFAULT 0,
entity_id INT NOT NULL DEFAULT 0,
num_ark INT(10) UNSIGNED NOT NULL DEFAULT 0,
FOREIGN KEY (num_ark) REFERENCES ark (id)
)";
id INT PRIMARY KEY AUTO_INCREMENT,
entity_type INT NOT NULL DEFAULT 0,
entity_id INT NOT NULL DEFAULT 0,
num_ark INT UNSIGNED NOT NULL DEFAULT 0,
FOREIGN KEY (num_ark) REFERENCES ark (id)
)";
La question du nom de l'identifiant de la table ark demeure ouverte.