|  | 8 năm trước cách đây | |
|---|---|---|
| django_tidb | 8 năm trước cách đây | |
| .gitignore | 8 năm trước cách đây | |
| LICENSE | 8 năm trước cách đây | |
| README.md | 8 năm trước cách đây | |
| setup.cfg | 8 năm trước cách đây | |
| setup.py | 8 năm trước cách đây | 
This library is based on django’s mysql backend and change some logic and support features to fit TiDB.
For now this package is tested in python 2.7 and django 1.8.x
# git clone https://github.com/blacktear23/django_tidb.git
# cd tidb_django
# python setup.py install
DATABASES = {
    'default': {
        'ENGINE': 'django_tidb.tidb',
        'NAME': 'database',
        'USER': 'username',
        'PASSWORD': 'password',
        'HOST': '127.0.0.1',
        'PORT': 4000,
    }
}
CASCADE key word when drop column or drop table