mirror of
https://gitlab.crans.org/mediatek/med.git
synced 2025-06-29 19:51:08 +02:00
Add present field
This commit is contained in:
48
media/migrations/0039_mark_media_present.py
Normal file
48
media/migrations/0039_mark_media_present.py
Normal file
@ -0,0 +1,48 @@
|
||||
# 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'),
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user