Bundle for Symfony2 and Doctrine2 that allow prefixing yours databases tables.
Add DoctrineTablePrefixBundle in your composer.json:
{
"require": {
"th3mouk/doctrine-table-prefix-bundle": "~1.0"
}
}
Now tell composer to download the bundle by running the command:
$ php composer.phar update th3mouk/doctrine-table-prefix-bundle
Composer will install the bundle to your project's vendor/Th3mouk
directory.
$ php composer.phar require th3mouk/doctrine-table-prefix-bundle:~1.0
Enable the bundle in the kernel:
<?php
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new Th3mouk\DoctrineTablePrefixBundle\Th3moukDoctrineTablePrefixBundle(),
);
}
Default prefix is "sf2_".
You can change the prefix in your configuration:
# app/config/config.yml
th3mouk_doctrine_table_prefix:
prefix: sf2_