-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
23 changed files
with
746 additions
and
0 deletions.
There are no files selected for viewing
27 changes: 27 additions & 0 deletions
27
djangocms_baseplugins/autocolumns/migrations/0004_alter_autocolumns_cmsplugin_ptr.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Generated by Django 4.2.16 on 2024-11-13 13:32 | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("cms", "0022_auto_20180620_1551"), | ||
("autocolumns", "0003_auto_20230501_1509"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="autocolumns", | ||
name="cmsplugin_ptr", | ||
field=models.OneToOneField( | ||
auto_created=True, | ||
on_delete=django.db.models.deletion.CASCADE, | ||
parent_link=True, | ||
primary_key=True, | ||
related_name="%(app_label)s_%(class)s", | ||
serialize=False, | ||
to="cms.cmsplugin", | ||
), | ||
), | ||
] |
27 changes: 27 additions & 0 deletions
27
djangocms_baseplugins/cms_form_designer/migrations/0005_alter_formdesigner_cmsplugin_ptr.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Generated by Django 4.2.16 on 2024-11-13 13:32 | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("cms", "0022_auto_20180620_1551"), | ||
("cms_form_designer", "0004_auto_20230501_1509"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="formdesigner", | ||
name="cmsplugin_ptr", | ||
field=models.OneToOneField( | ||
auto_created=True, | ||
on_delete=django.db.models.deletion.CASCADE, | ||
parent_link=True, | ||
primary_key=True, | ||
related_name="%(app_label)s_%(class)s", | ||
serialize=False, | ||
to="cms.cmsplugin", | ||
), | ||
), | ||
] |
27 changes: 27 additions & 0 deletions
27
djangocms_baseplugins/column/migrations/0008_alter_column_cmsplugin_ptr.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Generated by Django 4.2.16 on 2024-11-13 13:32 | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("cms", "0022_auto_20180620_1551"), | ||
("column", "0007_auto_20230501_1509"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="column", | ||
name="cmsplugin_ptr", | ||
field=models.OneToOneField( | ||
auto_created=True, | ||
on_delete=django.db.models.deletion.CASCADE, | ||
parent_link=True, | ||
primary_key=True, | ||
related_name="%(app_label)s_%(class)s", | ||
serialize=False, | ||
to="cms.cmsplugin", | ||
), | ||
), | ||
] |
27 changes: 27 additions & 0 deletions
27
djangocms_baseplugins/contact/migrations/0006_alter_contact_cmsplugin_ptr.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Generated by Django 4.2.16 on 2024-11-13 13:32 | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("cms", "0022_auto_20180620_1551"), | ||
("contact", "0005_auto_20230501_1509"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="contact", | ||
name="cmsplugin_ptr", | ||
field=models.OneToOneField( | ||
auto_created=True, | ||
on_delete=django.db.models.deletion.CASCADE, | ||
parent_link=True, | ||
primary_key=True, | ||
related_name="%(app_label)s_%(class)s", | ||
serialize=False, | ||
to="cms.cmsplugin", | ||
), | ||
), | ||
] |
27 changes: 27 additions & 0 deletions
27
djangocms_baseplugins/contentnav/migrations/0006_alter_contentnav_cmsplugin_ptr.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Generated by Django 4.2.16 on 2024-11-13 13:32 | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("cms", "0022_auto_20180620_1551"), | ||
("contentnav", "0005_auto_20230501_1509"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="contentnav", | ||
name="cmsplugin_ptr", | ||
field=models.OneToOneField( | ||
auto_created=True, | ||
on_delete=django.db.models.deletion.CASCADE, | ||
parent_link=True, | ||
primary_key=True, | ||
related_name="%(app_label)s_%(class)s", | ||
serialize=False, | ||
to="cms.cmsplugin", | ||
), | ||
), | ||
] |
53 changes: 53 additions & 0 deletions
53
...ins/download/migrations/0005_alter_download_cmsplugin_ptr_alter_download_file_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# Generated by Django 4.2.16 on 2024-11-13 13:32 | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
import filer_addons.filer_gui.fields | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("cms", "0022_auto_20180620_1551"), | ||
("filer", "0015_alter_file_owner_alter_file_polymorphic_ctype_and_more"), | ||
("download", "0004_auto_20230501_1509"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="download", | ||
name="cmsplugin_ptr", | ||
field=models.OneToOneField( | ||
auto_created=True, | ||
on_delete=django.db.models.deletion.CASCADE, | ||
parent_link=True, | ||
primary_key=True, | ||
related_name="%(app_label)s_%(class)s", | ||
serialize=False, | ||
to="cms.cmsplugin", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="download", | ||
name="file", | ||
field=filer_addons.filer_gui.fields.FilerFileField( | ||
null=True, | ||
on_delete=django.db.models.deletion.SET_NULL, | ||
related_name="%(app_label)s_%(class)s_download", | ||
to="filer.file", | ||
verbose_name="Download", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="downloadsection", | ||
name="cmsplugin_ptr", | ||
field=models.OneToOneField( | ||
auto_created=True, | ||
on_delete=django.db.models.deletion.CASCADE, | ||
parent_link=True, | ||
primary_key=True, | ||
related_name="%(app_label)s_%(class)s", | ||
serialize=False, | ||
to="cms.cmsplugin", | ||
), | ||
), | ||
] |
27 changes: 27 additions & 0 deletions
27
djangocms_baseplugins/gallery/migrations/0009_alter_gallery_cmsplugin_ptr.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Generated by Django 4.2.16 on 2024-11-13 13:32 | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("cms", "0022_auto_20180620_1551"), | ||
("gallery", "0008_auto_20230501_1509"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="gallery", | ||
name="cmsplugin_ptr", | ||
field=models.OneToOneField( | ||
auto_created=True, | ||
on_delete=django.db.models.deletion.CASCADE, | ||
parent_link=True, | ||
primary_key=True, | ||
related_name="%(app_label)s_%(class)s", | ||
serialize=False, | ||
to="cms.cmsplugin", | ||
), | ||
), | ||
] |
27 changes: 27 additions & 0 deletions
27
djangocms_baseplugins/htmlblock/migrations/0009_alter_htmlblock_cmsplugin_ptr.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Generated by Django 4.2.16 on 2024-11-13 13:32 | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("cms", "0022_auto_20180620_1551"), | ||
("htmlblock", "0008_auto_20230501_1509"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="htmlblock", | ||
name="cmsplugin_ptr", | ||
field=models.OneToOneField( | ||
auto_created=True, | ||
on_delete=django.db.models.deletion.CASCADE, | ||
parent_link=True, | ||
primary_key=True, | ||
related_name="%(app_label)s_%(class)s", | ||
serialize=False, | ||
to="cms.cmsplugin", | ||
), | ||
), | ||
] |
27 changes: 27 additions & 0 deletions
27
djangocms_baseplugins/iframe/migrations/0005_alter_iframe_cmsplugin_ptr.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Generated by Django 4.2.16 on 2024-11-13 13:32 | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("cms", "0022_auto_20180620_1551"), | ||
("iframe", "0004_auto_20230501_1509"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="iframe", | ||
name="cmsplugin_ptr", | ||
field=models.OneToOneField( | ||
auto_created=True, | ||
on_delete=django.db.models.deletion.CASCADE, | ||
parent_link=True, | ||
primary_key=True, | ||
related_name="%(app_label)s_%(class)s", | ||
serialize=False, | ||
to="cms.cmsplugin", | ||
), | ||
), | ||
] |
41 changes: 41 additions & 0 deletions
41
djangocms_baseplugins/image/migrations/0010_alter_image_cmsplugin_ptr_alter_image_image.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# Generated by Django 4.2.16 on 2024-11-13 13:32 | ||
|
||
from django.conf import settings | ||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
import filer_addons.filer_gui.fields | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("cms", "0022_auto_20180620_1551"), | ||
migrations.swappable_dependency(settings.FILER_IMAGE_MODEL), | ||
("image", "0009_auto_20230501_1509"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="image", | ||
name="cmsplugin_ptr", | ||
field=models.OneToOneField( | ||
auto_created=True, | ||
on_delete=django.db.models.deletion.CASCADE, | ||
parent_link=True, | ||
primary_key=True, | ||
related_name="%(app_label)s_%(class)s", | ||
serialize=False, | ||
to="cms.cmsplugin", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="image", | ||
name="image", | ||
field=filer_addons.filer_gui.fields.FilerImageField( | ||
null=True, | ||
on_delete=django.db.models.deletion.SET_NULL, | ||
related_name="%(app_label)s_%(class)s_image", | ||
to=settings.FILER_IMAGE_MODEL, | ||
verbose_name="Image", | ||
), | ||
), | ||
] |
40 changes: 40 additions & 0 deletions
40
...aseplugins/inline_download/migrations/0005_alter_inlinedownload_cmsplugin_ptr_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Generated by Django 4.2.16 on 2024-11-13 13:32 | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
import filer_addons.filer_gui.fields | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("cms", "0022_auto_20180620_1551"), | ||
("filer", "0015_alter_file_owner_alter_file_polymorphic_ctype_and_more"), | ||
("inline_download", "0004_auto_20230501_1509"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="inlinedownload", | ||
name="cmsplugin_ptr", | ||
field=models.OneToOneField( | ||
auto_created=True, | ||
on_delete=django.db.models.deletion.CASCADE, | ||
parent_link=True, | ||
primary_key=True, | ||
related_name="%(app_label)s_%(class)s", | ||
serialize=False, | ||
to="cms.cmsplugin", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="inlinedownloadentry", | ||
name="file", | ||
field=filer_addons.filer_gui.fields.FilerFileField( | ||
null=True, | ||
on_delete=django.db.models.deletion.SET_NULL, | ||
related_name="%(app_label)s_%(class)s_download", | ||
to="filer.file", | ||
verbose_name="Download", | ||
), | ||
), | ||
] |
Oops, something went wrong.