From: Thomas Fillon Date: Sat, 25 Feb 2017 15:18:19 +0000 (+0100) Subject: Add migrations X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=67dcb347e318da8841d14885d1c64ff3424013c3;p=telemeta_mcm.git Add migrations --- diff --git a/mcm/migrations/0002_auto_20170201_1526.py b/mcm/migrations/0002_auto_20170201_1526.py new file mode 100644 index 0000000..4f4febd --- /dev/null +++ b/mcm/migrations/0002_auto_20170201_1526.py @@ -0,0 +1,55 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.9.2 on 2017-02-01 14:26 +from __future__ import unicode_literals + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('mcm', '0001_initial'), + ] + + operations = [ + migrations.AlterModelOptions( + name='article', + options={'verbose_name': 'Document / H - Article', 'verbose_name_plural': 'Documents - H - Articles'}, + ), + migrations.AlterModelOptions( + name='bookthesis', + options={'verbose_name': 'Document / F - Ouvrage & Th\xe8se', 'verbose_name_plural': 'Documents - F - Ouvrages & Th\xe8ses'}, + ), + migrations.AlterModelOptions( + name='disc', + options={'verbose_name': 'Document / B - Disque', 'verbose_name_plural': 'Documents - B - Disques'}, + ), + migrations.AlterModelOptions( + name='journal', + options={'verbose_name': 'Document / G - Revue', 'verbose_name_plural': 'Documents - G - Revues'}, + ), + migrations.AlterModelOptions( + name='notice', + options={'verbose_name': 'Document / A - Notice spectacle', 'verbose_name_plural': 'Documents - A - Notices spectacle'}, + ), + migrations.AlterModelOptions( + name='object', + options={'verbose_name': 'Document / L - Objet', 'verbose_name_plural': 'Documents - L-Objets'}, + ), + migrations.AlterModelOptions( + name='photo', + options={'verbose_name': 'Document / I - Photo', 'verbose_name_plural': 'Documents - I - Photos'}, + ), + migrations.AlterModelOptions( + name='posterbooklet', + options={'verbose_name': 'Document / J - Affiche-Brochure', 'verbose_name_plural': 'Documents - J - Affiches-Brochures'}, + ), + migrations.AlterModelOptions( + name='video', + options={'verbose_name': 'Document / C - Vid\xe9o DVD&VHS', 'verbose_name_plural': 'Documents - C - Vid\xe9os DVD&VHS'}, + ), + migrations.AlterModelOptions( + name='videofile', + options={'verbose_name': 'Document / D - Vid\xe9o en ligne', 'verbose_name_plural': 'Documents - D - Vid\xe9os en ligne'}, + ), + ]