diff options
author | Andrew Godwin | 2022-11-11 23:04:43 -0700 |
---|---|---|
committer | Andrew Godwin | 2022-11-11 23:04:43 -0700 |
commit | 8fd5a9292c7d3aac352d3c0e96288bff8a79cb47 (patch) | |
tree | 3a9199c1d35a77d209cf424141fd4aa0e0694118 /users/migrations | |
parent | feb5d9b74fa1e8454eaaf29afae3643c6d7c81f1 (diff) | |
download | takahe-8fd5a9292c7d3aac352d3c0e96288bff8a79cb47.tar.gz takahe-8fd5a9292c7d3aac352d3c0e96288bff8a79cb47.tar.bz2 takahe-8fd5a9292c7d3aac352d3c0e96288bff8a79cb47.zip |
Posting and fan-out both working
Diffstat (limited to 'users/migrations')
-rw-r--r-- | users/migrations/0001_initial.py | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/users/migrations/0001_initial.py b/users/migrations/0001_initial.py index c4f4774..a51ef00 100644 --- a/users/migrations/0001_initial.py +++ b/users/migrations/0001_initial.py @@ -92,7 +92,7 @@ class Migration(migrations.Migration): verbose_name="ID", ), ), - ("state_ready", models.BooleanField(default=False)), + ("state_ready", models.BooleanField(default=True)), ("state_changed", models.DateTimeField(auto_now_add=True)), ("state_attempted", models.DateTimeField(blank=True, null=True)), ("state_locked_until", models.DateTimeField(blank=True, null=True)), @@ -158,7 +158,7 @@ class Migration(migrations.Migration): verbose_name="ID", ), ), - ("state_ready", models.BooleanField(default=False)), + ("state_ready", models.BooleanField(default=True)), ("state_changed", models.DateTimeField(auto_now_add=True)), ("state_attempted", models.DateTimeField(blank=True, null=True)), ("state_locked_until", models.DateTimeField(blank=True, null=True)), @@ -230,7 +230,9 @@ class Migration(migrations.Migration): ( "users", models.ManyToManyField( - related_name="identities", to=settings.AUTH_USER_MODEL + blank=True, + related_name="identities", + to=settings.AUTH_USER_MODEL, ), ), ], @@ -286,7 +288,7 @@ class Migration(migrations.Migration): verbose_name="ID", ), ), - ("state_ready", models.BooleanField(default=False)), + ("state_ready", models.BooleanField(default=True)), ("state_changed", models.DateTimeField(auto_now_add=True)), ("state_attempted", models.DateTimeField(blank=True, null=True)), ("state_locked_until", models.DateTimeField(blank=True, null=True)), |