diff options
author | Andrew Godwin | 2022-11-11 22:02:43 -0700 |
---|---|---|
committer | Andrew Godwin | 2022-11-11 22:02:43 -0700 |
commit | feb5d9b74fa1e8454eaaf29afae3643c6d7c81f1 (patch) | |
tree | 3889a826dfc2c852aa4873daff2a27cb7c1a2b01 /users/migrations | |
parent | fbfad9fbf5e061cb7c658dada3c4014c9796021c (diff) | |
download | takahe-feb5d9b74fa1e8454eaaf29afae3643c6d7c81f1.tar.gz takahe-feb5d9b74fa1e8454eaaf29afae3643c6d7c81f1.tar.bz2 takahe-feb5d9b74fa1e8454eaaf29afae3643c6d7c81f1.zip |
Got up to incoming posts working
Diffstat (limited to 'users/migrations')
-rw-r--r-- | users/migrations/0001_initial.py | 11 |
1 files changed, 7 insertions, 4 deletions
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, ), |