forked from DGNum/gestioCOF
9409b55df5
- Add missing migrations - Fix dependencies - rename gestioncof -> cof
16 lines
267 B
Python
16 lines
267 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('cof', '0009_delete_clipper'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.DeleteModel(
|
|
name='CustomMail',
|
|
),
|
|
]
|