669129e30d
- Move the model - Add some BDS-related fields - Add an `associations` fields to be able to separate the clubs between the different associations using groups
23 lines
495 B
Python
23 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',
|
|
),
|
|
]
|