Add missing migration

This commit is contained in:
Klaas van Schelven
2024-05-17 10:14:09 +02:00
parent 769e413d28
commit d2ba9b9ddb
2 changed files with 27 additions and 0 deletions

View File

@@ -12,6 +12,7 @@ The components you'll set up are:
* Python
* Bugsink and its dependencies (including Gunicorn)
* A reverse proxy (Nginx) to handle incoming HTTP requests
* SSL certificates
* Snappea, a background process to handle longer-running tasks
Note that you will _not_ need to set up some of the "usual suspects" like a database server or a message broker. This is

View File

@@ -0,0 +1,26 @@
# Generated by Django 4.2.11 on 2024-05-17 08:13
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('issues', '0022_turningpoint'),
]
operations = [
migrations.AlterModelOptions(
name='turningpoint',
options={'ordering': ['-timestamp']},
),
migrations.AlterField(
model_name='turningpoint',
name='kind',
field=models.IntegerField(choices=[(1, 'First seen'), (2, 'Resolved'), (3, 'Muted'), (4, 'Marked as regressed'), (5, 'Unmuted'), (10, 'Release info added'), (100, 'Manual annotation')]),
),
migrations.AddIndex(
model_name='turningpoint',
index=models.Index(fields=['timestamp'], name='issues_turn_timesta_eaa375_idx'),
),
]