2017-09-05 14:41:13 +02:00
|
|
|
from django.db import migrations
|
2017-02-11 20:36:16 +01:00
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
2017-09-05 14:41:13 +02:00
|
|
|
('cof', '0011_move_event'),
|
2017-02-11 20:36:16 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
2017-02-18 13:00:21 +01:00
|
|
|
migrations.DeleteModel(
|
|
|
|
name='Clipper',
|
|
|
|
),
|
|
|
|
migrations.DeleteModel(
|
|
|
|
name='CustomMail',
|
2017-02-11 20:36:16 +01:00
|
|
|
),
|
|
|
|
]
|