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

Migrate Note model

parent 8b8acbec
No related branches found
No related tags found
No related merge requests found
# Generated by Django 3.2.14 on 2022-08-07 21:21
import django.utils.timezone
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("program", "0036_auto_20220807_2318"),
]
operations = [
migrations.AddField(
model_name="note",
name="created_at",
field=models.DateTimeField(
auto_now_add=True, default=django.utils.timezone.now
),
preserve_default=False,
),
migrations.AddField(
model_name="note",
name="created_by",
field=models.CharField(default="root", max_length=150),
preserve_default=False,
),
migrations.AddField(
model_name="note",
name="updated_at",
field=models.DateTimeField(auto_now=True),
),
migrations.AddField(
model_name="note",
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.
Finish editing this message first!
Please register or to comment