25 lines
577 B
Python
25 lines
577 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import models, migrations
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('partitions', '0002_partitionset'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.RemoveField(
|
||
|
model_name='partitionset',
|
||
|
name='pupitres',
|
||
|
),
|
||
|
migrations.AddField(
|
||
|
model_name='partition',
|
||
|
name='morceau',
|
||
|
field=models.ForeignKey(to='partitions.PartitionSet', default='1'),
|
||
|
preserve_default=False,
|
||
|
),
|
||
|
]
|