Metadata-Version: 1.0
Name: django-table-prefix
Version: 0.0.5
Summary: experimental application for making table prefixes fortables that django creates
Home-page: UNKNOWN
Author: Egor V. Nazarkin, Vitaliy Kucheraviy
Author-email: nimnull@gmail.com
License: BSD
Description: ===========
        django-table-prefix
        ===========
        
        django-table-prefix provides experimental ability to set your own
        database table prefixes for django project this app is included in
        Include this app into your project's settings.py, provide table prefix
        name and list of models (optional) for ommiting prefix usage::
        
            INSTALLED_APPS = (
                ... # your regular stuff
                'table_prefix',
            )
        
            # table prefix name
            DB_PREFIX = 'nifty_prefix'
        
            # omit prefixing tables for these models
            OMIT_MODELS = (
                '<app_name>.<model class name>',
            )
        
Platform: UNKNOWN
