From 7ffe5b9440bc2a5bce60f1a8c0513536d5a496e3 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Sun, 12 Mar 2023 16:43:06 -0700 Subject: [PATCH] Adds merge migration --- ..._0174_auto_20230222_1742_0176_hashtag_support.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 bookwyrm/migrations/0177_merge_0174_auto_20230222_1742_0176_hashtag_support.py diff --git a/bookwyrm/migrations/0177_merge_0174_auto_20230222_1742_0176_hashtag_support.py b/bookwyrm/migrations/0177_merge_0174_auto_20230222_1742_0176_hashtag_support.py new file mode 100644 index 000000000..65ace3059 --- /dev/null +++ b/bookwyrm/migrations/0177_merge_0174_auto_20230222_1742_0176_hashtag_support.py @@ -0,0 +1,13 @@ +# Generated by Django 3.2.18 on 2023-03-12 23:41 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ("bookwyrm", "0174_auto_20230222_1742"), + ("bookwyrm", "0176_hashtag_support"), + ] + + operations = []