th3mouk/doctrine-table-prefix-bundle

This package is abandoned and no longer maintained. No replacement package was suggested.

Bundle for Symfony2 and Doctrine2 that allow prefixing yours databases tables.

1.0.1 2014-06-14 19:05 UTC

This package is auto-updated.

Last update: 2021-10-04 21:12:28 UTC


README

Bundle for Symfony2 and Doctrine2 that allow prefixing yours databases tables.

SensioLabsInsight Latest Stable Version Total Downloads Build Status Latest Unstable Version License

Installation

First: Download DoctrineTablePrefixBundle using composer

Using command line

composer require th3mouk/doctrine-table-prefix-bundle

Or editing composer.json :

{
    "require": {
        "th3mouk/doctrine-table-prefix-bundle": "^1.0"
    }
}

Second : Enable the bundle

Enable the bundle in the kernel:

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new Th3mouk\DoctrineTablePrefixBundle\Th3moukDoctrineTablePrefixBundle(),
        // ...
    );
}

Finally : Choose your prefix

Default prefix is "sf2_".

You can change the prefix in your configuration:

# app/config/config.yml
th3mouk_doctrine_table_prefix:
    prefix: sf2_