mirror of
https://github.com/bugsink/bugsink.git
synced 2025-12-20 12:29:57 -06:00
17 lines
389 B
Python
17 lines
389 B
Python
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('ingest', '0002_alter_decompressedevent_timestamp'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='decompressedevent',
|
|
name='debug_info',
|
|
field=models.CharField(blank=True, default='', max_length=255),
|
|
),
|
|
]
|