mirror of
https://github.com/jlengrand/bugsink.git
synced 2026-03-10 08:01:17 +00:00
As discussed in #11, there are scenarios (e.g. misconfiguration) where snappea does not pick up the tasks. Events not showing up in Bugsink, w/o further indication why that may be, leaves people confused. Better to warn explicitly in that case.
23 lines
520 B
Python
23 lines
520 B
Python
# Generated by Django 4.2.16 on 2024-11-15 10:42
|
|
|
|
from django.db import migrations, models
|
|
import django.utils.timezone
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("snappea", "0002_create_models"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="task",
|
|
name="created_at",
|
|
field=models.DateTimeField(
|
|
auto_now_add=True, default=django.utils.timezone.now
|
|
),
|
|
preserve_default=False,
|
|
),
|
|
]
|