Skip to content
Snippets Groups Projects
Commit e1d899ad authored by Ernesto Rico Schmidt's avatar Ernesto Rico Schmidt
Browse files

Migrate Profile model.

parent f367d35b
Branches
Tags
No related merge requests found
# 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,
),
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment