From aad5dd77bcc3520ad87366817a6aa1ec6d74f958 Mon Sep 17 00:00:00 2001 From: Ernesto Rico Schmidt <ernesto@helsinki.at> Date: Tue, 11 Oct 2022 16:25:12 -0400 Subject: [PATCH] Migrate Profile model --- profile/migrations/0004_auto_20221011_2217.py | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 profile/migrations/0004_auto_20221011_2217.py diff --git a/profile/migrations/0004_auto_20221011_2217.py b/profile/migrations/0004_auto_20221011_2217.py new file mode 100644 index 00000000..b3d6d05b --- /dev/null +++ b/profile/migrations/0004_auto_20221011_2217.py @@ -0,0 +1,23 @@ +# Generated by Django 3.2.16 on 2022-10-11 20:17 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ("profile", "0003_auto_20220728_1807"), + ] + + operations = [ + migrations.AlterField( + model_name="profile", + name="updated_at", + field=models.DateTimeField(auto_now=True, null=True), + ), + migrations.AlterField( + model_name="profile", + name="updated_by", + field=models.CharField(blank=True, max_length=150, null=True), + ), + ] -- GitLab