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