5d572b3603
- Fix some issues and improve efficiency of some RunPython code in migrations. - Merge some migrations. - To simplify, any RunPython don't get a revert function.
17 lines
309 B
Python
17 lines
309 B
Python
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('cof', '0011_move_event'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.DeleteModel(
|
|
name='Clipper',
|
|
),
|
|
migrations.DeleteModel(
|
|
name='CustomMail',
|
|
),
|
|
]
|