├── .github └── workflows │ └── main.yml ├── .gitignore ├── CHANGES.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── manage.py ├── migration-example ├── manage.py ├── src │ ├── alterfield │ │ ├── __init__.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_alter_alterfieldmodel_data.py │ │ │ └── __init__.py │ │ └── models.py │ ├── datamigration │ │ ├── __init__.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_rename_data_datamigationmodel_old_data.py │ │ │ └── __init__.py │ │ └── models.py │ └── settings.py └── tests │ ├── __init__.py │ └── test_migrated_apps.py ├── pyproject.toml ├── src └── jsonfield │ ├── __init__.py │ ├── encoder.py │ ├── fields.py │ ├── forms.py │ └── json.py ├── tests ├── __init__.py ├── models.py ├── settings.py ├── test_fields.py ├── test_forms.py └── test_jsonfield.py └── tox.ini /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpkilby/jsonfield/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpkilby/jsonfield/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpkilby/jsonfield/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpkilby/jsonfield/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpkilby/jsonfield/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpkilby/jsonfield/HEAD/README.rst -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpkilby/jsonfield/HEAD/manage.py -------------------------------------------------------------------------------- /migration-example/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpkilby/jsonfield/HEAD/migration-example/manage.py -------------------------------------------------------------------------------- /migration-example/src/alterfield/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /migration-example/src/alterfield/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpkilby/jsonfield/HEAD/migration-example/src/alterfield/migrations/0001_initial.py -------------------------------------------------------------------------------- /migration-example/src/alterfield/migrations/0002_alter_alterfieldmodel_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpkilby/jsonfield/HEAD/migration-example/src/alterfield/migrations/0002_alter_alterfieldmodel_data.py -------------------------------------------------------------------------------- /migration-example/src/alterfield/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /migration-example/src/alterfield/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpkilby/jsonfield/HEAD/migration-example/src/alterfield/models.py -------------------------------------------------------------------------------- /migration-example/src/datamigration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /migration-example/src/datamigration/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpkilby/jsonfield/HEAD/migration-example/src/datamigration/migrations/0001_initial.py -------------------------------------------------------------------------------- /migration-example/src/datamigration/migrations/0002_rename_data_datamigationmodel_old_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpkilby/jsonfield/HEAD/migration-example/src/datamigration/migrations/0002_rename_data_datamigationmodel_old_data.py -------------------------------------------------------------------------------- /migration-example/src/datamigration/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /migration-example/src/datamigration/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpkilby/jsonfield/HEAD/migration-example/src/datamigration/models.py -------------------------------------------------------------------------------- /migration-example/src/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpkilby/jsonfield/HEAD/migration-example/src/settings.py -------------------------------------------------------------------------------- /migration-example/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /migration-example/tests/test_migrated_apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpkilby/jsonfield/HEAD/migration-example/tests/test_migrated_apps.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpkilby/jsonfield/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/jsonfield/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpkilby/jsonfield/HEAD/src/jsonfield/__init__.py -------------------------------------------------------------------------------- /src/jsonfield/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpkilby/jsonfield/HEAD/src/jsonfield/encoder.py -------------------------------------------------------------------------------- /src/jsonfield/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpkilby/jsonfield/HEAD/src/jsonfield/fields.py -------------------------------------------------------------------------------- /src/jsonfield/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpkilby/jsonfield/HEAD/src/jsonfield/forms.py -------------------------------------------------------------------------------- /src/jsonfield/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpkilby/jsonfield/HEAD/src/jsonfield/json.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpkilby/jsonfield/HEAD/tests/models.py -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpkilby/jsonfield/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/test_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpkilby/jsonfield/HEAD/tests/test_fields.py -------------------------------------------------------------------------------- /tests/test_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpkilby/jsonfield/HEAD/tests/test_forms.py -------------------------------------------------------------------------------- /tests/test_jsonfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpkilby/jsonfield/HEAD/tests/test_jsonfield.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpkilby/jsonfield/HEAD/tox.ini --------------------------------------------------------------------------------