diff --git a/profile/migrations/0003_auto_20220728_1807.py b/profile/migrations/0003_auto_20220728_1807.py
new file mode 100644
index 0000000000000000000000000000000000000000..78009bea8471399b03d392970482fd2d4caa2d41
--- /dev/null
+++ b/profile/migrations/0003_auto_20220728_1807.py
@@ -0,0 +1,39 @@
+# Generated by Django 3.2.14 on 2022-07-28 16:07
+
+import django.utils.timezone
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ("profile", "0002_auto_20220117_1721"),
+    ]
+
+    operations = [
+        migrations.AddField(
+            model_name="profile",
+            name="created_at",
+            field=models.DateTimeField(
+                auto_now_add=True, default=django.utils.timezone.now
+            ),
+            preserve_default=False,
+        ),
+        migrations.AddField(
+            model_name="profile",
+            name="created_by",
+            field=models.CharField(default="root", max_length=150),
+            preserve_default=False,
+        ),
+        migrations.AddField(
+            model_name="profile",
+            name="updated_at",
+            field=models.DateTimeField(auto_now=True),
+        ),
+        migrations.AddField(
+            model_name="profile",
+            name="updated_by",
+            field=models.CharField(default="root", max_length=150),
+            preserve_default=False,
+        ),
+    ]