23 lines
537 B
Python
23 lines
537 B
Python
|
# Generated by Django 2.2.17 on 2021-04-28 21:38
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
("instruments", "0001_initial"),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name="instrument",
|
||
|
name="statut",
|
||
|
field=models.CharField(
|
||
|
choices=[("Disponible", "Disponible"), ("Prêté", "Prêté·e")],
|
||
|
default="Disponible",
|
||
|
max_length=100,
|
||
|
),
|
||
|
),
|
||
|
]
|