forked from DGNum/gestioCOF
migration
This commit is contained in:
parent
460a135fa5
commit
d4198d16d7
1 changed files with 19 additions and 0 deletions
19
bda/migrations/0007_auto_20160727_2336.py
Normal file
19
bda/migrations/0007_auto_20160727_2336.py
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('bda', '0006_revente'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='spectaclerevente',
|
||||||
|
name='interested',
|
||||||
|
field=models.ManyToManyField(related_name='wanted', to='bda.Participant', blank=True),
|
||||||
|
),
|
||||||
|
]
|
Loading…
Reference in a new issue