yulai.li f8eddf9551 Update MANIFEST | 7 years ago | |
---|---|---|
django_tidb | 7 years ago | |
.gitignore | 7 years ago | |
LICENSE | 7 years ago | |
MANIFEST | 7 years ago | |
README.md | 7 years ago | |
setup.cfg | 7 years ago | |
setup.py | 7 years ago |
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
clone and install
# git clone https://github.com/blacktear23/django_tidb.git
# cd tidb_django
# python setup.py install
install from pip
pip install django_tidb
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