19 lines
440 B
Python
19 lines
440 B
Python
# Generated by Django 2.2.1 on 2019-06-15 09:13
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("manuels", "0034_commonsupply"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="commonsupply",
|
|
name="order",
|
|
field=models.IntegerField(default=0, verbose_name="ordre"),
|
|
preserve_default=False,
|
|
),
|
|
]
|