20 lines
388 B
Python
20 lines
388 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('cof', '0010_create_cof_group'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.DeleteModel(
|
|
name='Clipper',
|
|
),
|
|
migrations.DeleteModel(
|
|
name='CustomMail',
|
|
),
|
|
]
|