├── .gitignore ├── LICENSE ├── README.rst ├── bootstrap.py ├── example └── crate_example │ ├── crate_example │ ├── __init__.py │ ├── admin.py │ ├── models.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ └── manage.py ├── setup.py ├── src └── crate │ ├── __init__.py │ └── django │ ├── __init__.py │ ├── apps.py │ ├── backend │ ├── __init__.py │ ├── base.py │ ├── client.py │ ├── compiler.py │ ├── creation.py │ ├── introspection.py │ ├── operations.py │ ├── schema.py │ └── validation.py │ ├── models │ ├── __init__.py │ ├── fields.py │ ├── manager.py │ └── model.py │ ├── testing │ ├── __init__.py │ ├── apps.py │ ├── backend.txt │ ├── models.py │ └── settings.py │ └── tests.py └── versions.cfg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelsche/crate-django/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelsche/crate-django/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelsche/crate-django/HEAD/README.rst -------------------------------------------------------------------------------- /bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelsche/crate-django/HEAD/bootstrap.py -------------------------------------------------------------------------------- /example/crate_example/crate_example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/crate_example/crate_example/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelsche/crate-django/HEAD/example/crate_example/crate_example/admin.py -------------------------------------------------------------------------------- /example/crate_example/crate_example/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelsche/crate-django/HEAD/example/crate_example/crate_example/models.py -------------------------------------------------------------------------------- /example/crate_example/crate_example/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelsche/crate-django/HEAD/example/crate_example/crate_example/settings.py -------------------------------------------------------------------------------- /example/crate_example/crate_example/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelsche/crate-django/HEAD/example/crate_example/crate_example/urls.py -------------------------------------------------------------------------------- /example/crate_example/crate_example/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelsche/crate-django/HEAD/example/crate_example/crate_example/wsgi.py -------------------------------------------------------------------------------- /example/crate_example/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelsche/crate-django/HEAD/example/crate_example/manage.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelsche/crate-django/HEAD/setup.py -------------------------------------------------------------------------------- /src/crate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelsche/crate-django/HEAD/src/crate/__init__.py -------------------------------------------------------------------------------- /src/crate/django/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelsche/crate-django/HEAD/src/crate/django/__init__.py -------------------------------------------------------------------------------- /src/crate/django/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelsche/crate-django/HEAD/src/crate/django/apps.py -------------------------------------------------------------------------------- /src/crate/django/backend/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | -------------------------------------------------------------------------------- /src/crate/django/backend/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelsche/crate-django/HEAD/src/crate/django/backend/base.py -------------------------------------------------------------------------------- /src/crate/django/backend/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelsche/crate-django/HEAD/src/crate/django/backend/client.py -------------------------------------------------------------------------------- /src/crate/django/backend/compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelsche/crate-django/HEAD/src/crate/django/backend/compiler.py -------------------------------------------------------------------------------- /src/crate/django/backend/creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelsche/crate-django/HEAD/src/crate/django/backend/creation.py -------------------------------------------------------------------------------- /src/crate/django/backend/introspection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelsche/crate-django/HEAD/src/crate/django/backend/introspection.py -------------------------------------------------------------------------------- /src/crate/django/backend/operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelsche/crate-django/HEAD/src/crate/django/backend/operations.py -------------------------------------------------------------------------------- /src/crate/django/backend/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelsche/crate-django/HEAD/src/crate/django/backend/schema.py -------------------------------------------------------------------------------- /src/crate/django/backend/validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelsche/crate-django/HEAD/src/crate/django/backend/validation.py -------------------------------------------------------------------------------- /src/crate/django/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelsche/crate-django/HEAD/src/crate/django/models/__init__.py -------------------------------------------------------------------------------- /src/crate/django/models/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelsche/crate-django/HEAD/src/crate/django/models/fields.py -------------------------------------------------------------------------------- /src/crate/django/models/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelsche/crate-django/HEAD/src/crate/django/models/manager.py -------------------------------------------------------------------------------- /src/crate/django/models/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelsche/crate-django/HEAD/src/crate/django/models/model.py -------------------------------------------------------------------------------- /src/crate/django/testing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelsche/crate-django/HEAD/src/crate/django/testing/__init__.py -------------------------------------------------------------------------------- /src/crate/django/testing/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelsche/crate-django/HEAD/src/crate/django/testing/apps.py -------------------------------------------------------------------------------- /src/crate/django/testing/backend.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelsche/crate-django/HEAD/src/crate/django/testing/backend.txt -------------------------------------------------------------------------------- /src/crate/django/testing/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelsche/crate-django/HEAD/src/crate/django/testing/models.py -------------------------------------------------------------------------------- /src/crate/django/testing/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelsche/crate-django/HEAD/src/crate/django/testing/settings.py -------------------------------------------------------------------------------- /src/crate/django/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelsche/crate-django/HEAD/src/crate/django/tests.py -------------------------------------------------------------------------------- /versions.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfelsche/crate-django/HEAD/versions.cfg --------------------------------------------------------------------------------