15 lines
276 B
Python
15 lines
276 B
Python
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('beesgospel', '0010_agenda_statut'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name='agenda',
|
|
name='prive',
|
|
),
|
|
]
|