django-inspectdb

Better inspectdb.


License
BSD-3-Clause
Install
pip install django-inspectdb==0.1

Documentation

django-inspectdb

A fork of Django management command inspectdb. It was first created to get the correct max_length of MySQL inspection, see ticket #5725.

Installation

First install the package using pip:

pip install django-inspectdb

Add it to your INSTALLED_APPS:

INSTALLED_APPS = (
    ...
    'inspectdb',
    ...
)

Usage

Just use it as the normal inspectdb management command:

python manage.py inspectdb > models.py