mirror of
https://github.com/bugsink/bugsink.git
synced 2025-12-21 13:00:13 -06:00
19 lines
476 B
Python
19 lines
476 B
Python
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('issues', '0007_remove_issue_events'),
|
|
('events', '0007_alter_event_issue'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='event',
|
|
name='issue',
|
|
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.SET_NULL, to='issues.issue'),
|
|
),
|
|
]
|