summaryrefslogtreecommitdiffstats
path: root/miniq/migrations/0001_initial.py
blob: dc6d42b6f74f10e8d94b91610d424b579c418af8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Generated by Django 4.1.3 on 2022-11-07 04:19

from django.db import migrations, models


class Migration(migrations.Migration):

    initial = True

    dependencies = []

    operations = [
        migrations.CreateModel(
            name="Task",
            fields=[
                (
                    "id",
                    models.BigAutoField(
                        auto_created=True,
                        primary_key=True,
                        serialize=False,
                        verbose_name="ID",
                    ),
                ),
                (
                    "type",
                    models.CharField(
                        choices=[
                            ("identity_fetch", "Identity Fetch"),
                            ("inbox_item", "Inbox Item"),
                            ("follow_request", "Follow Request"),
                            ("follow_acknowledge", "Follow Acknowledge"),
                        ],
                        max_length=500,
                    ),
                ),
                ("priority", models.IntegerField(default=0)),
                ("subject", models.TextField()),
                ("payload", models.JSONField(blank=True, null=True)),
                ("error", models.TextField(blank=True, null=True)),
                ("created", models.DateTimeField(auto_now_add=True)),
                ("completed", models.DateTimeField(blank=True, null=True)),
                ("failed", models.DateTimeField(blank=True, null=True)),
                ("locked", models.DateTimeField(blank=True, null=True)),
                ("locked_by", models.CharField(blank=True, max_length=500, null=True)),
            ],
        ),
    ]