Skip to main content

package to manage migrations on production and development environment simultaneously

Project description

Django Supermigrate is a package to manage migrations on production and development environment with no hassle.

Quick start

  1. Add “supermigrate” to your INSTALLED_APPS like this:

    ```
    INSTALLED_APPS = (
        ...
        'supermigrate',
    )
    ```
  2. Modify your DATABASE_ROUTERS to include ‘default’ router like this:

    ```
    DATABASE_ROUTERS  = [ 'supermigrate.database_routers.default.DefaultRouter', ]
    ```
  3. Add DATABASE_ROUTER_MAPPING in settings like this:

    ```
        DATABASE_ROUTER_MAPPING = {
    
            # default db
            "admin" : {
                "DB_FOR_READ": "default_slave",
                "DB_FOR_WRITE": "default",
                "DB_FOR_MIGRATE": ["default", "default_slave"]
            },
            "auth" : {
                "DB_FOR_READ": "default",
                "DB_FOR_WRITE": "default",
                "DB_FOR_MIGRATE": ["default", "default_slave"]
            }
    
            # other db here
    
        }
    ```
  4. Update settings for live with

    ```
    ALLOW_MIGRATE_FALSE = False
    
    ALLOW_DB_MIGRATE = {
        'default': True
    }
    ```

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-supermigrate-0.6.tar.gz (3.8 kB view details)

Uploaded Source

File details

Details for the file django-supermigrate-0.6.tar.gz.

File metadata

File hashes

Hashes for django-supermigrate-0.6.tar.gz
Algorithm Hash digest
SHA256 f0f58be2c662b54033c326493e5cfb2bda7afc70280647523e8785b24be5d831
MD5 bb677dffd453628f05e74153819eb21a
BLAKE2b-256 9edbb1bd724350c4cde5459052d940401d85f0b3850ca8e74f9a6e6da1485995

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page