diff options
author | Andrew Godwin | 2022-11-16 06:53:39 -0700 |
---|---|---|
committer | Andrew Godwin | 2022-11-16 13:53:40 -0700 |
commit | 495e955378d62dc439c4c210785e5d401bc77f64 (patch) | |
tree | 859813b06314f387470295e752d1f1b3828830a7 /activities/migrations | |
parent | 906ed2f27c9105dbd78f416930f1aa2b49497567 (diff) | |
download | takahe-495e955378d62dc439c4c210785e5d401bc77f64.tar.gz takahe-495e955378d62dc439c4c210785e5d401bc77f64.tar.bz2 takahe-495e955378d62dc439c4c210785e5d401bc77f64.zip |
Tag and visibility handling
Diffstat (limited to 'activities/migrations')
-rw-r--r-- | activities/migrations/0005_post_hashtags_alter_fanout_type_and_more.py | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/activities/migrations/0005_post_hashtags_alter_fanout_type_and_more.py b/activities/migrations/0005_post_hashtags_alter_fanout_type_and_more.py new file mode 100644 index 0000000..07d5cca --- /dev/null +++ b/activities/migrations/0005_post_hashtags_alter_fanout_type_and_more.py @@ -0,0 +1,48 @@ +# Generated by Django 4.1.3 on 2022-11-16 20:18 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ( + "activities", + "0004_rename_authored_post_published_alter_fanout_type_and_more", + ), + ] + + operations = [ + migrations.AddField( + model_name="post", + name="hashtags", + field=models.JSONField(default=[]), + ), + migrations.AlterField( + model_name="fanout", + name="type", + field=models.CharField( + choices=[ + ("post", "Post"), + ("interaction", "Interaction"), + ("undo_interaction", "Undo Interaction"), + ], + max_length=100, + ), + ), + migrations.AlterField( + model_name="timelineevent", + name="type", + field=models.CharField( + choices=[ + ("post", "Post"), + ("boost", "Boost"), + ("mentioned", "Mentioned"), + ("liked", "Liked"), + ("followed", "Followed"), + ("boosted", "Boosted"), + ], + max_length=100, + ), + ), + ] |