Skip to content

Commit

Permalink
Merge branch 'release/0.3.24' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
erikvw committed Aug 23, 2023
2 parents 30d1f3c + 815f83f commit 9c4291f
Showing 1 changed file with 45 additions and 0 deletions.
@@ -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 = [
("edc_reference", "0012_alter_reference_managers_reference_site"),
]

operations = [
migrations.AlterField(
model_name="reference",
name="device_created",
field=models.CharField(blank=True, max_length=10, verbose_name="Device created"),
),
migrations.AlterField(
model_name="reference",
name="device_modified",
field=models.CharField(blank=True, max_length=10, verbose_name="Device modified"),
),
migrations.AlterField(
model_name="reference",
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="reference",
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",
),
),
]

0 comments on commit 9c4291f

Please sign in to comment.