【发布时间】:2014-10-29 10:16:29
【问题描述】:
通过提示命令,我使用 逆向工程 生成了一个带有 doctine 的数据库。效果很好:
php app/console doctrine:mapping:convert yml ./src/Gir/DatabaseBundle/Resources/config/doctrine/metadata/orm --from-database --force
之后,我创建了实体:
php app/console doctrine:mapping:import GirDatabaseBundle annotation
还有注释:
php app/console doctrine:generate:entities GirDatabaseBundle
然后,我使用 composer.phar 安装了 Symfony 的新更新。
然后,FOSUserBundle 来管理我项目中的用户。
为了生成表用户和实体等,我必须使用 doctrine 来更新我的数据库:
php app/console doctrine:schema:update --force
当我执行此命令时,学说在 windows 提示命令中向我发送此 错误:
**[Doctrine\DBAL\DBALException]**
An exception occured while executing 'ALTER TABLE agence CHANGE id id INT NOT NULL':
SQLSTATE[HY000]: General error: 1833 Cannot change colum 'id': used in a foreign key constraint 'fk_employe_agence1' of table 'gir.employe'
**[PDOException]**
SQLSTATE[HY000]: General error: 1833 Cannot change colum 'id': used in a foreign key constraint 'fk_employe_agence1' of table 'gir.employe'
这是agence表的SQL:
--
-- Base de données : `gir`
--
-- --------------------------------------------------------
--
-- Structure de la table `agence`
--
CREATE TABLE IF NOT EXISTS `agence` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`nom` varchar(150) NOT NULL,
`nomVoie` varchar(150) NOT NULL,
`numVoie` int(5) DEFAULT NULL,
`codePostal` int(5) NOT NULL,
`comune` varchar(150) NOT NULL,
`telephone` varchar(150) NOT NULL,
`fax` varchar(150) NOT NULL,
`email` varchar(150) NOT NULL,
`entreprises_id` int(11) NOT NULL,
PRIMARY KEY (`id`,`entreprises_id`),
KEY `fk_agence_entreprises1_idx` (`entreprises_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
这是employe表的SQL:
--
-- Base de données : `enexgir`
--
-- --------------------------------------------------------
--
-- Structure de la table `employe`
--
CREATE TABLE IF NOT EXISTS `employe` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`nom` varchar(45) NOT NULL,
`prenom` varchar(45) NOT NULL,
`poste` varchar(45) NOT NULL,
`portable` varchar(45) NOT NULL,
`ligneDirecte` varchar(45) NOT NULL,
`faxDirect` varchar(45) NOT NULL,
`email` varchar(150) NOT NULL,
`etat` tinyint(1) NOT NULL,
`agence_id` int(11) NOT NULL,
PRIMARY KEY (`id`,`agence_id`),
KEY `fk_employe_agence1_idx` (`agence_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Contraintes pour les tables exportées
--
--
-- Contraintes pour la table `employe`
--
ALTER TABLE `employe`
ADD CONSTRAINT `fk_employe_agence1` FOREIGN KEY (`agence_id`) REFERENCES `agence` (`id`) ON DELETE NO ACTION ON UPDATE CASCADE;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
有人应该为什么以及如何用教义来解决这个问题?
【问题讨论】:
标签: mysql symfony pdo doctrine-orm alter-table