I am working with Symfony2 and Doctrine ORM using MySql .

After creating an Entity, I am not able to create the table. It throws an exception.

anu@anu-bridge:/var/www/Symfony$ php app/console doctrine:schema:update --force --dump-sql

[Doctrine\DBAL\Schema\SchemaException]
The table with name 'product' already exists.  

doctrine:schema:update [--complete] [--dump-sql] [--force] [--em[="..."]]

I tried to drop it , but still it throws the error.

anu@anu-bridge:/var/www/Symfony$ php app/console doctrine:schema:drop --force
Dropping database schema...

[Doctrine\DBAL\Schema\SchemaException]         
The table with name 'product' already exists.  

doctrine:schema:drop [--dump-sql] [--force] [--full-database] [--em[="..."]]

[Doctrine\DBAL\Schema\SchemaException]         
The table with name 'product' already exists.

There is no tables in the database. Cleared all the cache for symfony and doctrine, but still the error is throwing.

Symfony2 version is 2.0.1 .

link|improve this question
1  
You might have more than one entity using the same table name. – Tjorriemorrie Sep 28 '11 at 4:59
No she doesn't have any other Entity. There is only one Product entity. – Hari K T Sep 29 '11 at 5:36
feedback

2 Answers

I've had a similar problem. Most likely you have two entities named Category inside different Bundles. For instance:

src/Acme/SomeBundle/Entity/Product.php
src/Acme/OtherBundle/Entity/Product.php

Comment one of these files and retry the console command.

link|improve this answer
1  
I had the same error and the same solution. ;) – Gp2mv3 Dec 14 '11 at 18:00
1  
I got the same. And this solution worked for me too – user1129849 May 9 at 11:27
feedback

I got this error when editing my Product.orm.yml file.

I added a new manyToMany relation with a Category entity, and made a mistake on the joinTable line :

manyToMany:
  categories:
    targetEntity: Acme\ProductBundle\Entity\Category
    inversedBy: products
    joinTable:
      name: Product  # My mistake: joinTable should be something like ProductCategory

    [...]

Indeed it's a silly error, I share anyway.

link|improve this answer
feedback

protected by Community Feb 6 at 12:50

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.