32 lines
925 B
Python
32 lines
925 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.10.7 on 2019-08-02 12:55
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('media', '0008_auto_20170704_2047'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name='auteur',
|
|
options={'verbose_name': 'author', 'verbose_name_plural': 'authors'},
|
|
),
|
|
migrations.AlterModelOptions(
|
|
name='emprunt',
|
|
options={'verbose_name': 'borrowed item', 'verbose_name_plural': 'borrowed items'},
|
|
),
|
|
migrations.AlterModelOptions(
|
|
name='jeu',
|
|
options={'verbose_name': 'game', 'verbose_name_plural': 'games'},
|
|
),
|
|
migrations.AlterModelOptions(
|
|
name='media',
|
|
options={'verbose_name': 'medium', 'verbose_name_plural': 'media'},
|
|
),
|
|
]
|