Skip to content

Commit

Permalink
[Fixes #12250] Add missing migration (#12251) (#12252)
Browse files Browse the repository at this point in the history
(cherry picked from commit 0a76441)

Co-authored-by: mattiagiupponi <[email protected]>
  • Loading branch information
github-actions[bot] and mattiagiupponi authored May 21, 2024
1 parent eab593f commit 2117bbd
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions geonode/base/migrations/0091_alter_hierarchicalkeyword_slug.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 4.2.9 on 2024-05-21 08:23

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("base", "0090_alter_resourcebase_polymorphic_ctype"),
]

operations = [
migrations.AlterField(
model_name="hierarchicalkeyword",
name="slug",
field=models.SlugField(allow_unicode=True, max_length=100, unique=True, verbose_name="slug"),
),
]

0 comments on commit 2117bbd

Please sign in to comment.