Skip to content

Commit

Permalink
add migration to support djangoCMS 3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Alec Clowes committed Apr 6, 2018
1 parent b3aa0e6 commit 0b83e55
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions djangocms_teaser/migrations/0002_auto_20180404_1122.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.11 on 2018-04-04 18:22
from __future__ import unicode_literals

from django.db import migrations, models
import django.db.models.deletion


class Migration(migrations.Migration):

dependencies = [
('djangocms_teaser', '0001_initial'),
]

operations = [
migrations.AlterField(
model_name='teaser',
name='cmsplugin_ptr',
field=models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, related_name='djangocms_teaser_teaser', serialize=False, to='cms.CMSPlugin'),
),
]

0 comments on commit 0b83e55

Please sign in to comment.