2017-10-26 11:06:17 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
from django.db import migrations, models
|
2017-02-11 20:36:16 +01:00
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
2017-10-26 11:06:17 +02:00
|
|
|
('cof', '0008_py3'),
|
2017-02-11 20:36:16 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
2017-02-18 13:00:21 +01:00
|
|
|
migrations.DeleteModel(
|
|
|
|
name='Clipper',
|
|
|
|
),
|
2017-02-11 20:36:16 +01:00
|
|
|
]
|