From feb5d9b74fa1e8454eaaf29afae3643c6d7c81f1 Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Fri, 11 Nov 2022 22:02:43 -0700 Subject: Got up to incoming posts working --- users/migrations/0001_initial.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'users/migrations/0001_initial.py') diff --git a/users/migrations/0001_initial.py b/users/migrations/0001_initial.py index 2f64337..c4f4774 100644 --- a/users/migrations/0001_initial.py +++ b/users/migrations/0001_initial.py @@ -1,4 +1,4 @@ -# Generated by Django 4.1.3 on 2022-11-10 05:58 +# Generated by Django 4.1.3 on 2022-11-11 20:02 import functools @@ -296,11 +296,14 @@ class Migration(migrations.Migration): "state", stator.models.StateField( choices=[ - ("pending", "pending"), - ("requested", "requested"), + ("unrequested", "unrequested"), + ("local_requested", "local_requested"), + ("remote_requested", "remote_requested"), ("accepted", "accepted"), + ("undone_locally", "undone_locally"), + ("undone_remotely", "undone_remotely"), ], - default="pending", + default="unrequested", graph=users.models.follow.FollowStates, max_length=100, ), -- cgit v1.2.3