mirror of
https://github.com/jazzband/django-fernet-encrypted-fields.git
synced 2026-03-16 22:40:27 +00:00
Fix version and typo
This commit is contained in:
parent
df0df57b69
commit
12fa329181
2 changed files with 2 additions and 2 deletions
|
|
@ -51,7 +51,7 @@ SECRET_KEY_FALLBACKS = ["old-key"]
|
|||
If you wish to update the existing encrypted records simply load and re-save the models to use the new key.
|
||||
|
||||
```python
|
||||
for obj in MuModel.objects.all():
|
||||
for obj in MyModel.objects.all():
|
||||
obj.save()
|
||||
```
|
||||
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -10,7 +10,7 @@ setup(
|
|||
author="jazzband",
|
||||
author_email="n.anahara@fragment.co.jp",
|
||||
packages=["encrypted_fields"],
|
||||
version="0.2.0",
|
||||
version="0.3.0",
|
||||
install_requires=[
|
||||
"Django>=3.2",
|
||||
"cryptography>=35.0.0",
|
||||
|
|
|
|||
Loading…
Reference in a new issue