forked from jointakahe/takahe
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
23 changed files
with
644 additions
and
126 deletions.
There are no files selected for viewing
44 changes: 44 additions & 0 deletions
44
activities/migrations/0022_fanout_subject_hashtag_alter_fanout_type.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# Generated by Django 4.2.11 on 2024-04-29 01:28 | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("activities", "0021_merge_20240422_1905"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="fanout", | ||
name="subject_hashtag", | ||
field=models.ForeignKey( | ||
blank=True, | ||
null=True, | ||
on_delete=django.db.models.deletion.CASCADE, | ||
related_name="fan_outs", | ||
to="activities.hashtag", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="fanout", | ||
name="type", | ||
field=models.CharField( | ||
choices=[ | ||
("post", "Post"), | ||
("post_edited", "Post Edited"), | ||
("post_deleted", "Post Deleted"), | ||
("interaction", "Interaction"), | ||
("undo_interaction", "Undo Interaction"), | ||
("identity_edited", "Identity Edited"), | ||
("identity_deleted", "Identity Deleted"), | ||
("identity_created", "Identity Created"), | ||
("identity_moved", "Identity Moved"), | ||
("tag_featured", "Tag Featured"), | ||
("tag_unfeatured", "Tag Unfeatured"), | ||
], | ||
max_length=100, | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.