Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我刚刚安装了 symfony2 并使用了这个语句
php app/console doctrine:schema:create
当我看到数据库表时,只有一张表,那是我的实体。我看不到任何基表。
这正常吗??
框架本身没有任何“基表”。它仅保留您的实体。
这是绝对正常的。Symfony 是一个框架,它不需要任何数据库表。它的所有设置都保存在可以在/app/config目录(应用程序配置文件)中找到的配置文件中。捆绑包的配置文件可以在bundle_dir/Resources/config
/app/config
bundle_dir/Resources/config
数据库仅适用于您的实体。请记住,如果您使用“Doctrine Migrations”,它确实会创建一个名为“doctrine_migrations”的数据库表。