summaryrefslogtreecommitdiffstats
path: root/activities/migrations/0005_post_hashtags_alter_fanout_type_and_more.py
blob: 07d5ccafdd36dffb4b69a138602c486106a78b5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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,
            ),
        ),
    ]