Skip to content

Commit

Permalink
track locale on model instance
Browse files Browse the repository at this point in the history
  • Loading branch information
erikvw committed Dec 2, 2023
1 parent b22a532 commit a390615
Showing 1 changed file with 34 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Generated by Django 4.2.7 on 2023-12-01 14:47

from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("django_crypto_fields", "0004_alter_crypt_device_created_and_more"),
]

operations = [
migrations.AddField(
model_name="crypt",
name="locale_created",
field=models.CharField(
blank=True,
help_text="Auto-updated by Modeladmin",
max_length=10,
null=True,
verbose_name="Locale created",
),
),
migrations.AddField(
model_name="crypt",
name="locale_modified",
field=models.CharField(
blank=True,
help_text="Auto-updated by Modeladmin",
max_length=10,
null=True,
verbose_name="Locale modified",
),
),
]

0 comments on commit a390615

Please sign in to comment.