Renommage des consoles en plateformes
This commit is contained in:
@ -0,0 +1,38 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.11.5 on 2017-09-16 15:05
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('games', '0007_help_text_on_console_name'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RenameModel(
|
||||
old_name='Console',
|
||||
new_name='Platform',
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='game',
|
||||
name='collection',
|
||||
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='games', to='games.Platform', verbose_name='platform'),
|
||||
),
|
||||
migrations.AlterModelOptions(
|
||||
name='Platform',
|
||||
options={
|
||||
'verbose_name': 'platform',
|
||||
'verbose_name_plural': 'platforms',
|
||||
'ordering': ('name',),
|
||||
},
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='platform',
|
||||
name='name',
|
||||
field=models.CharField(help_text='Most used platform name.', max_length=255, verbose_name='nom'),
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user