summaryrefslogtreecommitdiffstats
path: root/users/migrations/0002_follow_state_follow_state_attempted_and_more.py
blob: b33236a97c26a1d4243c4ad53e9937ceaec3c95d (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
# Generated by Django 4.1.3 on 2022-11-07 19:22

import django.utils.timezone
from django.db import migrations, models

import stator.models
import users.models.follow


class Migration(migrations.Migration):

    dependencies = [
        ("users", "0001_initial"),
    ]

    operations = [
        migrations.AddField(
            model_name="follow",
            name="state",
            field=stator.models.StateField(
                choices=[
                    ("pending", "pending"),
                    ("requested", "requested"),
                    ("accepted", "accepted"),
                ],
                default="pending",
                graph=users.models.follow.FollowStates,
                max_length=100,
            ),
        ),
        migrations.AddField(
            model_name="follow",
            name="state_attempted",
            field=models.DateTimeField(blank=True, null=True),
        ),
        migrations.AddField(
            model_name="follow",
            name="state_changed",
            field=models.DateTimeField(
                auto_now_add=True, default=django.utils.timezone.now
            ),
            preserve_default=False,
        ),
    ]