Migrations
This commit is contained in:
parent
8a587b3d56
commit
ef8c62835b
3 changed files with 16 additions and 16 deletions
|
@ -1,5 +1,5 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.11.3 on 2017-07-18 17:05
|
||||
# Generated by Django 1.11.3 on 2017-07-21 14:20
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
@ -24,8 +24,8 @@ class Migration(migrations.Migration):
|
|||
('description', models.TextField(verbose_name='description')),
|
||||
],
|
||||
options={
|
||||
'verbose_name_plural': 'matériels permanents',
|
||||
'verbose_name': 'matériel permanent',
|
||||
'verbose_name': 'matériel',
|
||||
'verbose_name_plural': 'matériels',
|
||||
},
|
||||
),
|
||||
migrations.CreateModel(
|
||||
|
@ -38,8 +38,8 @@ class Migration(migrations.Migration):
|
|||
('equipment', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='equipment.Equipment')),
|
||||
],
|
||||
options={
|
||||
'verbose_name_plural': 'attributions de matériel',
|
||||
'verbose_name': 'attribution de matériel',
|
||||
'verbose_name_plural': 'attributions de matériel',
|
||||
},
|
||||
),
|
||||
migrations.CreateModel(
|
||||
|
@ -53,8 +53,8 @@ class Migration(migrations.Migration):
|
|||
('equipment', models.ForeignKey(help_text='Matériel concerné par la remarque', on_delete=django.db.models.deletion.CASCADE, related_name='remarks', to='equipment.Equipment')),
|
||||
],
|
||||
options={
|
||||
'verbose_name_plural': 'remarques sur le matériel',
|
||||
'verbose_name': 'remarque sur matériel',
|
||||
'verbose_name_plural': 'remarques sur le matériel',
|
||||
},
|
||||
),
|
||||
migrations.AddField(
|
||||
|
@ -65,6 +65,6 @@ class Migration(migrations.Migration):
|
|||
migrations.AddField(
|
||||
model_name='equipment',
|
||||
name='event',
|
||||
field=models.ForeignKey(blank=True, help_text="Si spécifié, l'instance du modèleest spécifique à l'évènement en question", null=True, on_delete=django.db.models.deletion.CASCADE, to='event.Event', verbose_name='évènement'),
|
||||
field=models.ForeignKey(blank=True, help_text="Si spécifié, l'instance du modèle est spécifique à l'évènement en question", null=True, on_delete=django.db.models.deletion.CASCADE, to='event.Event', verbose_name='évènement'),
|
||||
),
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue