49 lines
1.9 KiB
Python
49 lines
1.9 KiB
Python
# Generated by Django 2.2.16 on 2020-09-25 12:18
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('media', '0038_auto_20200923_2030'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='bd',
|
|
name='present',
|
|
field=models.BooleanField(default=False, help_text='Tell that the medium is present in the Mediatek.', verbose_name='present'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='cd',
|
|
name='present',
|
|
field=models.BooleanField(default=False, help_text='Tell that the medium is present in the Mediatek.', verbose_name='present'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='futuremedia',
|
|
name='present',
|
|
field=models.BooleanField(default=False, help_text='Tell that the medium is present in the Mediatek.', verbose_name='present'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='manga',
|
|
name='present',
|
|
field=models.BooleanField(default=False, help_text='Tell that the medium is present in the Mediatek.', verbose_name='present'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='revue',
|
|
name='present',
|
|
field=models.BooleanField(default=False, help_text='Tell that the medium is present in the Mediatek.', verbose_name='present'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='roman',
|
|
name='present',
|
|
field=models.BooleanField(default=False, help_text='Tell that the medium is present in the Mediatek.', verbose_name='present'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='vinyle',
|
|
name='present',
|
|
field=models.BooleanField(default=False, help_text='Tell that the medium is present in the Mediatek.', verbose_name='present'),
|
|
),
|
|
]
|