9409b55df5
- Add missing migrations - Fix dependencies - rename gestioncof -> cof
17 lines
301 B
Python
17 lines
301 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('cof', '0008_py3'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.DeleteModel(
|
|
name='Clipper',
|
|
),
|
|
]
|