Skip to content

Commit

Permalink
add missing migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Jan 16, 2025
1 parent 4fbb240 commit f69dacc
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
5 changes: 5 additions & 0 deletions takahe/migrations/0001_initial.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ class Migration(migrations.Migration):
),
("state", models.CharField(default="outdated", max_length=100)),
("state_changed", models.DateTimeField(auto_now_add=True)),
("state_next_attempt", models.DateTimeField(blank=True, null=True)),
(
"state_locked_until",
models.DateTimeField(blank=True, db_index=True, null=True),
),
("nodeinfo", models.JSONField(blank=True, null=True)),
("local", models.BooleanField()),
("blocked", models.BooleanField(default=False)),
Expand Down
5 changes: 4 additions & 1 deletion users/migrations/0001_initial_0_10.py
Original file line number Diff line number Diff line change
Expand Up @@ -562,9 +562,12 @@ class Migration(migrations.Migration):
field=models.CharField(
choices=[
("en", "English"),
("da", "Danish"),
("de", "German"),
("fr", "French"),
("it", "Italian"),
("zh-hans", "Simplified Chinese"),
("zh-hant", "Traditional Chinese"),
("da", "Danish"),
],
default="en",
max_length=10,
Expand Down

0 comments on commit f69dacc

Please sign in to comment.