summaryrefslogtreecommitdiffstats
path: root/users/migrations/0003_remove_follow_accepted_remove_follow_requested_and_more.py
blob: 180bfdd2c170dc978bb5759ab1bd94f845db11d5 (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
# Generated by Django 4.1.3 on 2022-11-08 03:58

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ("users", "0002_follow_state_follow_state_attempted_and_more"),
    ]

    operations = [
        migrations.RemoveField(
            model_name="follow",
            name="accepted",
        ),
        migrations.RemoveField(
            model_name="follow",
            name="requested",
        ),
        migrations.AddField(
            model_name="follow",
            name="state_locked",
            field=models.DateTimeField(blank=True, null=True),
        ),
        migrations.AddField(
            model_name="follow",
            name="state_runner",
            field=models.CharField(blank=True, max_length=100, null=True),
        ),
    ]