-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release/0.3.8' into main
- Loading branch information
Showing
6 changed files
with
56 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
45 changes: 45 additions & 0 deletions
45
django_crypto_fields/migrations/0004_alter_crypt_device_created_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# Generated by Django 4.2.4 on 2023-08-23 01:13 | ||
|
||
import _socket | ||
from django.db import migrations, models | ||
import django_audit_fields.fields.hostname_modification_field | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("django_crypto_fields", "0003_alter_crypt_cipher_mode"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="crypt", | ||
name="device_created", | ||
field=models.CharField(blank=True, max_length=10, verbose_name="Device created"), | ||
), | ||
migrations.AlterField( | ||
model_name="crypt", | ||
name="device_modified", | ||
field=models.CharField(blank=True, max_length=10, verbose_name="Device modified"), | ||
), | ||
migrations.AlterField( | ||
model_name="crypt", | ||
name="hostname_created", | ||
field=models.CharField( | ||
blank=True, | ||
default=_socket.gethostname, | ||
help_text="System field. (modified on create only)", | ||
max_length=60, | ||
verbose_name="Hostname created", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="crypt", | ||
name="hostname_modified", | ||
field=django_audit_fields.fields.hostname_modification_field.HostnameModificationField( | ||
blank=True, | ||
help_text="System field. (modified on every save)", | ||
max_length=50, | ||
verbose_name="Hostname modified", | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters