Added migrations for the 1.8+ change

This commit is contained in:
Griatch 2015-04-03 20:49:18 +02:00
parent ee1ec3979c
commit 6644effef8
4 changed files with 214 additions and 0 deletions

View file

@ -0,0 +1,26 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('scripts', '0006_auto_20150310_2249'),
]
operations = [
migrations.DeleteModel(
name='DefaultScript',
),
migrations.DeleteModel(
name='DoNothing',
),
migrations.DeleteModel(
name='ScriptBase',
),
migrations.DeleteModel(
name='Store',
),
]