Skip to content

Commit

Permalink
made migrations and migrated
Browse files Browse the repository at this point in the history
  • Loading branch information
perennialAutodidact committed Mar 7, 2022
1 parent c6b94be commit b9c5330
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Generated by Django 4.0 on 2022-03-07 01:37

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('assistant', '0007_auto_20220306_1000'),
]

operations = [
migrations.AlterModelOptions(
name='priority',
options={'ordering': ['name'], 'verbose_name_plural': 'Priorities'},
),
migrations.AlterField(
model_name='priority',
name='name',
field=models.IntegerField(choices=[(0, 'Completed'), (1, 'Low'), (2, 'Medium'), (3, 'High')], default=2),
),
]
Binary file not shown.

0 comments on commit b9c5330

Please sign in to comment.