summaryrefslogtreecommitdiffstats
path: root/users/migrations
diff options
context:
space:
mode:
authorAndrew Godwin2022-11-09 22:29:33 -0700
committerAndrew Godwin2022-11-09 22:29:49 -0700
commit7746abbbb7700fa918450101bbc6d29ed9b4b608 (patch)
tree8768efd8201faa2fee18e5d3b46f33785002f5d6 /users/migrations
parent61c324508e62bb640b4526183d0837fc57d742c2 (diff)
downloadtakahe-7746abbbb7700fa918450101bbc6d29ed9b4b608.tar.gz
takahe-7746abbbb7700fa918450101bbc6d29ed9b4b608.tar.bz2
takahe-7746abbbb7700fa918450101bbc6d29ed9b4b608.zip
Most of the way through the stator refactor
Diffstat (limited to 'users/migrations')
-rw-r--r--users/migrations/0005_follow_state_locked_until_follow_state_ready.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/users/migrations/0005_follow_state_locked_until_follow_state_ready.py b/users/migrations/0005_follow_state_locked_until_follow_state_ready.py
new file mode 100644
index 0000000..3aba08e
--- /dev/null
+++ b/users/migrations/0005_follow_state_locked_until_follow_state_ready.py
@@ -0,0 +1,23 @@
+# Generated by Django 4.1.3 on 2022-11-10 03:24
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ("users", "0004_remove_follow_state_locked_and_more"),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name="follow",
+ name="state_locked_until",
+ field=models.DateTimeField(blank=True, null=True),
+ ),
+ migrations.AddField(
+ model_name="follow",
+ name="state_ready",
+ field=models.BooleanField(default=False),
+ ),
+ ]