forked from DGNum/gestioCOF
24 lines
495 B
Python
24 lines
495 B
Python
|
from django.db import migrations
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('cof', '0011_delete_clipper_and_custommail'),
|
||
|
('gestion', '0002_club_support')
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.RemoveField(
|
||
|
model_name='club',
|
||
|
name='membres',
|
||
|
),
|
||
|
migrations.RemoveField(
|
||
|
model_name='club',
|
||
|
name='respos',
|
||
|
),
|
||
|
migrations.DeleteModel(
|
||
|
name='Club',
|
||
|
),
|
||
|
]
|