gitextract_g2cq4foq/ ├── .editorconfig ├── .github/ │ └── workflows/ │ └── main.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── docker/ │ ├── Dockerfile │ └── docker-compose.yml ├── manage.py ├── setup.cfg ├── setup.py ├── sql_server/ │ ├── __init__.py │ └── pyodbc/ │ ├── __init__.py │ ├── base.py │ ├── client.py │ ├── compiler.py │ ├── creation.py │ ├── features.py │ ├── functions.py │ ├── introspection.py │ ├── management/ │ │ ├── __init__.py │ │ └── commands/ │ │ ├── __init__.py │ │ └── install_regex_clr.py │ ├── operations.py │ └── schema.py ├── test.sh ├── testapp/ │ ├── __init__.py │ ├── migrations/ │ │ ├── 0001_initial.py │ │ ├── 0002_test_unique_nullable_part1.py │ │ ├── 0003_test_unique_nullable_part2.py │ │ ├── 0004_test_issue45_unique_type_change_part1.py │ │ ├── 0005_test_issue45_unique_type_change_part2.py │ │ ├── 0006_test_remove_onetoone_field_part1.py │ │ ├── 0007_test_remove_onetoone_field_part2.py │ │ └── __init__.py │ ├── models.py │ ├── runner.py │ ├── settings.py │ └── tests/ │ ├── __init__.py │ ├── test_constraints.py │ ├── test_expressions.py │ └── test_fields.py └── tox.ini