Skip to content

Commit

Permalink
Merge pull request #542 from robertatakenaka/0006_issueproc_resumptio…
Browse files Browse the repository at this point in the history
…n_date

Adiciona proc 0006_issueproc_resumption_date
  • Loading branch information
robertatakenaka authored Sep 30, 2024
2 parents 5a4c920 + 51d9493 commit ac6415a
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions proc/migrations/0006_issueproc_resumption_date.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Generated by Django 5.0.3 on 2024-09-29 00:38

from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("proc", "0005_alter_procreport_task_name"),
]

operations = [
migrations.AddField(
model_name="issueproc",
name="resumption_date",
field=models.DateTimeField(blank=True, null=True),
),
]

0 comments on commit ac6415a

Please sign in to comment.