forked from DGNum/gestioCOF
17 lines
263 B
Python
17 lines
263 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
from django.db import migrations
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('gestioncof', '0008_py3'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.DeleteModel(
|
||
|
name='CustomMail',
|
||
|
),
|
||
|
]
|