mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-22 07:10:59 +00:00
8f57aa5f37
Redoes the UI to remove timelines, promote domains, and a lot of other things to support the refactor.
24 lines
623 B
Python
24 lines
623 B
Python
# Generated by Django 4.2 on 2023-04-29 18:49
|
|
|
|
import django.contrib.postgres.indexes
|
|
import django.contrib.postgres.search
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("activities", "0013_postattachment_author"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddIndex(
|
|
model_name="post",
|
|
index=django.contrib.postgres.indexes.GinIndex(
|
|
django.contrib.postgres.search.SearchVector(
|
|
"content", config="english"
|
|
),
|
|
name="content_vector_gin",
|
|
),
|
|
),
|
|
]
|