From d1aacad4b70f2d21fef3932151ccaef4e6a60c0b Mon Sep 17 00:00:00 2001 From: Iacopo Spalletti Date: Sat, 23 May 2015 18:56:13 +0200 Subject: [PATCH] Remove leftovers migration directory --- .../0003_example1_publish.py | 20 ------------------- .../0004_auto_20150415_1913.py | 18 ----------------- 2 files changed, 38 deletions(-) delete mode 100644 cms/test_utils/project/placeholderapp/migrations_django/0003_example1_publish.py delete mode 100644 cms/test_utils/project/placeholderapp/migrations_django/0004_auto_20150415_1913.py diff --git a/cms/test_utils/project/placeholderapp/migrations_django/0003_example1_publish.py b/cms/test_utils/project/placeholderapp/migrations_django/0003_example1_publish.py deleted file mode 100644 index c64b5c7f2d4..00000000000 --- a/cms/test_utils/project/placeholderapp/migrations_django/0003_example1_publish.py +++ /dev/null @@ -1,20 +0,0 @@ -# -*- coding: utf-8 -*- -from __future__ import unicode_literals - -from django.db import models, migrations - - -class Migration(migrations.Migration): - - dependencies = [ - ('placeholderapp', '0002_charpksexample'), - ] - - operations = [ - migrations.AddField( - model_name='example1', - name='publish', - field=models.BooleanField(default=True), - preserve_default=True, - ), - ] diff --git a/cms/test_utils/project/placeholderapp/migrations_django/0004_auto_20150415_1913.py b/cms/test_utils/project/placeholderapp/migrations_django/0004_auto_20150415_1913.py deleted file mode 100644 index a3507233968..00000000000 --- a/cms/test_utils/project/placeholderapp/migrations_django/0004_auto_20150415_1913.py +++ /dev/null @@ -1,18 +0,0 @@ -# -*- coding: utf-8 -*- -from __future__ import unicode_literals - -from django.db import models, migrations - - -class Migration(migrations.Migration): - - dependencies = [ - ('placeholderapp', '0003_example1_publish'), - ] - - operations = [ - migrations.AlterModelOptions( - name='multilingualexample1translation', - options={'managed': True}, - ), - ]