You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running migrations:
No migrations to apply.
Your models in app(s): 'djangocms_link' have changes that are not yet reflected in a migration, and so won't be applied.
Run 'manage.py makemigrations' to make new migrations, and then re-run 'manage.py migrate' to apply them.
When i run makemigrations as root in my docker container
Migrations for 'djangocms_link':
/usr/local/lib/python3.12/site-packages/djangocms_link/migrations/0019_alter_link_link.py
~ Alter field link on link
root@61722fbc8c1b:/home/shopadmin/application# cat /usr/local/lib/python3.12/site-packages/djangocms_link/migrations/0019_alter_link_link.py
# Generated by Django 5.1.5 on 2025-01-27 09:06
import djangocms_link.fields
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('djangocms_link', '0018_remove_link_anchor_remove_link_external_link_and_more'),
]
operations = [
migrations.AlterField(
model_name='link',
name='link',
field=djangocms_link.fields.LinkField(default=dict, help_text='-', verbose_name='Link'),
),
]
The text was updated successfully, but these errors were encountered:
After upgrading to 5.0.0 Django is telling us
When i run makemigrations as root in my docker container
The text was updated successfully, but these errors were encountered: