问题 I'm trying to import this sql in my database name symfony CREATE TABLE IF NOT EXISTS ingredient ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; and i get #1146 - Table 'symfony.ingredient' doesn't exist This seems rather odd since i'm trying here to CREATE this table, so... why is it not working ? I've got the same problem if i try CREATE TABLE symfony.ingredient Or the feature in symfony 2 c:\Dev\Symfony>php app