Skip to content

Commit

Permalink
Oops, forgot migrations and typo
Browse files Browse the repository at this point in the history
  • Loading branch information
AmauryCarrade committed Apr 7, 2021
1 parent a58a1cf commit d91e750
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions hawk_gui/migrations/0007_add_index_to_reports.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 3.2 on 2021-04-07 00:07

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('hawk_gui', '0006_store_title_in_report_model'),
]

operations = [
migrations.AlterField(
model_name='report',
name='slug',
field=models.SlugField(max_length=8, unique=True, verbose_name='Slug'),
),
]

0 comments on commit d91e750

Please sign in to comment.