Compare commits

..

No commits in common. "b0b7c4a0fee0cedc3d2f3215f27eb6ea7e4bdfbd" and "f9cac0974dfb67963aa03bd185539e04657ef26e" have entirely different histories.

3 changed files with 17 additions and 18 deletions

View file

@ -27,7 +27,7 @@ repos:
args: [--target-version, "6.0"] args: [--target-version, "6.0"]
- repo: https://github.com/astral-sh/ruff-pre-commit - repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.15.8 rev: v0.15.5
hooks: hooks:
- id: ruff-check - id: ruff-check
args: ["--fix", "--exit-non-zero-on-fix"] args: ["--fix", "--exit-non-zero-on-fix"]

View file

@ -177,9 +177,8 @@ class Migration(migrations.Migration):
"verbose_name_plural": "Entries", "verbose_name_plural": "Entries",
"indexes": [ "indexes": [
django.contrib.postgres.indexes.GinIndex( django.contrib.postgres.indexes.GinIndex(
fields=["data"], fields=["data"], name="feeds_entry_data_c87562_gin"
name="feeds_entry_data_c87562_gin", )
),
], ],
"unique_together": {("feed", "entry_id", "content_hash")}, "unique_together": {("feed", "entry_id", "content_hash")},
}, },

File diff suppressed because one or more lines are too long